-
Notifications
You must be signed in to change notification settings - Fork 3
Tool Adapters
JRS1986 edited this page May 6, 2026
·
7 revisions
CodingScaffold stays tool-neutral while generating useful native files for current coding agents.
Adapters are where the scaffold hands off to tools that actually call models. Generating adapter files does not require an LLM; running an adapter session does.
OpenCode is the recommended first adapter.
curl -fsSL https://opencode.ai/install | bash
coding-scaffold adapt --target ~/dev/my-project --tool opencodeGenerated files include:
opencode.json.opencode/agents/reviewer.md.opencode/agents/explorer.md.opencode/agents/implementer.md.opencode/commands/first-session.md.opencode/commands/agentic-change.md.opencode/commands/review.md.opencode/commands/recheck-route.md
Before running /first-session, make sure OpenCode can reach at least one model through its own
provider setup, a local OpenAI-compatible endpoint, GitHub Copilot sign-in, or cloud credentials.
OpenClaude support is intentionally lightweight because the project moves quickly:
npm install -g @gitlawb/openclaude
coding-scaffold adapt --target ~/dev/my-project --tool openclaudeGenerated guidance lives in .coding-scaffold/OPENCLAUDE.md.
When adding a new adapter, document:
- install command
- credential source
- local endpoint format
- project-rule support
- read-only mode
- edit mode
- verification flow
- how to share skills and agents