Step 1 — Install the extension
- Download the latest VSIX using the button above.
- Open VS Code.
- Open Extensions (⇧⌘X), click ⋯, then Install from VSIX….
- Select the downloaded
.vsixfile. - Reload VS Code when prompted.
VS Code
The extension connects to the macOS menu bar bridge on http://127.0.0.1:8765 for inline completion, explain, refactor, and chat commands.
curl http://127.0.0.1:8765/v1/status returns running before continuing.View VS Code extension version history
Step 1 — Install the extension
.vsix file.Step 2 — Configure settings
http://127.0.0.1:8765.devops for DevOps Central / platform prompts, or general for everyday coding.settings.json:{
"officelessCodeIntelligence.apiBaseUrl": "http://127.0.0.1:8765",
"officelessCodeIntelligence.enableInlineCompletion": true,
"officelessCodeIntelligence.contextLines": 50,
"officelessCodeIntelligence.chatProfile": "general"
}Step 3 — Verify bridge and inline completion
Step 4 — Open integrated terminal chat
Officeless: Open Terminal Chat launches the bundled Codex-style CLI inside a VS Code integrated terminal — no separate Terminal.app window needed.
terminal chat).Officeless Code Intelligence · terminal chat and a prompt waiting for input.general or devops).Tip: open the integrated terminal panel with ⌃` (Control + backtick) if it is hidden. For a standalone terminal outside VS Code, see the Codex integration guide.
Step 5 — Test coding
Use these quick checks to confirm inline completion, terminal chat, and selection commands are working against the local bridge.
A — Inline completion
test.ts.function add(a: number, b: number) and pause — ghost-text completion should suggest the function body.B — Terminal chat (in Officeless Chat terminal)
After opening terminal chat (Step 4), type prompts and press Enter:
/status Write a TypeScript function that checks if a string is a valid IPv4 address Explain how Express middleware works for error handling /file package.json Summarize the npm scripts in this repo
REPL helpers: /help, /clear, /file path, /exit. With chatProfile: devops, try platform prompts like "Which make target deploys secret-broker on prod-vas?"
C — Ask about selected code
D — Direct API check (optional)
curl -X POST http://127.0.0.1:8765/v1/chat \
-H 'Content-Type: application/json' \
-d '{
"message": "Write a bash one-liner to list Kubernetes pods in all namespaces",
"language": "bash",
"filePath": "",
"context": "",
"profile": "general",
"history": []
}'Developer install (optional)
git clone https://bitbucket.org/jojocoders/officeless-intelligence-runtime.git cd officeless-intelligence-runtime npm run extension:install # Open extension/ in VS Code and press F5