StableAdapters
Continue Adapter
Continue is an open-source AI coding assistant that works in VS Code and JetBrains. The FORG Continue adapter uses Continue's context provider API to emit signals after each AI interaction.
Prerequisites
- Continue extension v0.9.0 or later
- FORG CLI installed and activated
Installation
Add the FORG context provider to your Continue config at ~/.continue/config.json:
{
"models": [
{
"title": "Claude Opus",
"provider": "anthropic",
"model": "claude-opus-4-5",
"apiKey": "sk-ant-..."
}
],
"contextProviders": [
{
"name": "forg",
"params": {
"agentPort": 6247,
"projectId": "proj_my-continue-work"
}
}
]
}The FORG context provider is built into Continue v0.9.0+. If you're on an older version, install it manually:
npm install -g @forg-pro/continue-providerWhat gets captured
- All Continue chat interactions
- Edit and refactor requests
- Model used, token counts, latency, and cost
- Session boundaries (new session after 30 min inactivity)
Supported model providers
The FORG adapter captures signals regardless of which model provider Continue is configured to use: Anthropic, OpenAI, Ollama, Azure OpenAI, Mistral, Cohere, etc. Token counts for locally-hosted models (Ollama) are estimated.
Verification
# In Continue, open the chat panel and ask something.
# Then check:
forg status --adapter
# Last signal: 5s ago
# Model: claude-opus-4-5Troubleshooting
| Issue | Resolution |
|---|---|
| Context provider not loading | Check Continue logs at ~/.continue/logs/core.log. Ensure Continue version is 0.9.0+. |
| Signals missing for some models | Local/Ollama models may not report tokens. Signals will have tokens_in: 0 and estimated cost. |
© 2026 UpgradIQ, Inc.Edit this page on GitHub