Tianyi Cui 81d434896d feat(acp-example): snapshot harness, normalizers, wiring, and handshake scenario 2 месяцев назад
..
acp-agent 81d434896d feat(acp-example): snapshot harness, normalizers, wiring, and handshake scenario 2 месяцев назад
coding-agent c2f8af30da Merge branch 'feat/acp-1-max-tokens-turn-end' into feat/acp-2-bridge 2 месяцев назад
echo-agent 2bae18f811 fix(session): synthesize tool results for interrupted tool calls on crash recovery (review #33) 2 месяцев назад
README.md dabc2ff411 feat: migrate to pnpm 2 месяцев назад
base.yml fb9636db44 feat(acp): ACP bridge — drive the coding agent from an editor over JSON-RPC stdio 2 месяцев назад

README.md

Examples

Runnable demos (not workspaces) that showcase how the harness is wired.

echo-agent

A mock model + echo tool + stdio UI + JSONL persistence demo. Demonstrates:

  • Loading plugins from a cordis.yml via @cordisjs/plugin-loader + @cordisjs/plugin-include
  • Registering a mock LlmAdapter (streaming scripted responses)
  • Registering a tool via ctx.tools.register()
  • Persisting session events to JSONL via the session/event + session/flush pattern
  • A minimal stdio UI consuming agent/stream-chunk and session events

Run with: pnpm run demo:echo

When prompted, type "echo " to trigger a tool call round-trip.

coding-agent

The real thing: DeepSeek V4 + the bash tool suite + stdio chat + JSONL persistence, wired from cordis.yml. Where echo-agent proves the skeleton with mocks, this is a usable coding assistant.

Run with: pnpm run demo:coding (needs DEEPSEEK_API_KEY in the environment or a gitignored repo-root .env). See coding-agent/README.md for details.