mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
# Conflicts: # docs/architecture.md # docs/config-catalog.md # docs/cordis-catalog/events.md # docs/event-producer-consumer.md # docs/module-graph.md # examples/coding-agent/cordis.yml # examples/echo-agent/cordis.yml # knip.json # packages/core/agent-loop/README.md # packages/core/agent-loop/tests/config-session-id.spec.ts # packages/examples/README.md # packages/examples/stdio-demo/README.md # packages/examples/stdio-demo/tests/stdio-agent.spec.ts
44 lines
1.6 KiB
YAML
44 lines
1.6 KiB
YAML
# Stdio agent with the network-free `mock-echo` adapter and example-local `echo`
|
|
# tool. The app bundle supplies the spine; this leaf selects backends, HMR, and app config.
|
|
# No API key: the `mock-echo` adapter never touches the network.
|
|
|
|
# Hot-module reload for the dev/demo loop (a leaf entry, not baked into
|
|
# dsh-stdio-demo — it needs `node --expose-internals`, which `demo:echo` passes).
|
|
- id: hmr
|
|
name: '@cordisjs/plugin-hmr'
|
|
config:
|
|
root: ['.']
|
|
|
|
# Example-local model and tool plugins resolve relative to this file.
|
|
- id: mock-llm
|
|
name: './src/mock-llm.ts'
|
|
|
|
- id: echo-tool
|
|
name: './src/echo-tool.ts'
|
|
|
|
# Local bash executor: agent-spine-demo ships the `tool-bash` consumer schema, so the
|
|
# leaf provides the executor it runs on (the echo demo doesn't drive bash, but
|
|
# the tool is part of the shared spine).
|
|
- id: bash
|
|
name: '@deepseek-ai/dsh-bash-local'
|
|
|
|
# Local filesystem provider for agent-spine-demo's workspace-context loader. This
|
|
# does not expose model-facing read/write/edit tools in the echo demo.
|
|
- id: fs-local
|
|
name: '@deepseek-ai/dsh-fs-local'
|
|
config:
|
|
cwd: !!js process.cwd()
|
|
|
|
# The app pre-creates `main` on the mock model and supplies persistence plus
|
|
# TTY-selected `dsh-tui`/`dsh-stdio` front doors; readline mode also owns logging.
|
|
- id: stdio-agent
|
|
name: '@deepseek-ai/dsh-stdio-demo'
|
|
config:
|
|
provider: mock
|
|
model: mock-echo
|
|
persona: 'You are echo-agent, a demo agent.'
|
|
welcome: 'echo-agent ready. Type a message ("echo <text>" triggers the tool).'
|
|
persistenceRoot: './.sessions'
|
|
workspaceContext:
|
|
maxBytes: 65536
|