Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
38 lines
1023 B
YAML
38 lines
1023 B
YAML
# Keyless real-Loader composition for workspace-instruction resume
|
|
# reconciliation. The test seeds one persisted baseline, changes AGENTS.md
|
|
# while the session is offline, then resumes through the public agent service.
|
|
|
|
- id: persistence
|
|
name: '@deepseek-ai/dsh-session-persistence-jsonl'
|
|
config:
|
|
root: './.sessions'
|
|
compression: none
|
|
|
|
- id: replay
|
|
name: '@deepseek-ai/dsh-llm-replay'
|
|
config:
|
|
file: !!js process.env.DSH_SNAPSHOT_FILE
|
|
overrideFile: !!js process.env.DSH_SNAPSHOT_OVERRIDE
|
|
|
|
- id: fs-local
|
|
name: '@deepseek-ai/dsh-fs-local'
|
|
config:
|
|
cwd: !!js process.cwd()
|
|
|
|
- id: agent
|
|
name: '@deepseek-ai/dsh-agent-spine-demo'
|
|
config:
|
|
agents: []
|
|
workspaceContext:
|
|
maxBytes: 65536
|
|
dshHome: !!js process.cwd() + '/.dsh'
|
|
skills:
|
|
enabled: false
|
|
toolBash: false
|
|
toolJobs: false
|
|
goals: false
|
|
|
|
# Await the persisted resume before the headless driver inspects root agents.
|
|
- id: resumed-agent
|
|
name: './tests/fixtures/workspace-context-resume-agent.ts'
|