dsh-context-imports
Inject the files referenced from AGENTS.md into model context at session start.
DeepSeek Harness injects AGENTS.md itself, but the @path references inside it stay as plain text and the model never sees them. This plugin expands those references the way Claude Code does: it reads each referenced file and adds the content to the session context.
English | 中文
Why
| Without this plugin | With it | |
|---|---|---|
| AGENTS.md itself | Injected by the stock agent-instructions plugin | Still injected by it, no duplication |
@docs/architecture.md references |
Plain text, ignored | Full file content in context |
| Nested imports | Nobody handles them | Expanded recursively, depth limited |
| After compaction | Referenced files are gone with the history | Re-injected automatically |
| Resumed sessions | May stack a second copy | Skipped when one is already present |
How it works
agent/session-start (startup / resume / clear / compact) records the scene
agent/pre-step (every step) decides whether to inject
├─ scan the instruction files (default AGENTS.md, CLAUDE.md) for @path imports
│ ├─ fenced code blocks are skipped; the path must have a file extension
│ ├─ relative paths resolve against the importing file's directory
│ └─ duplicates collapse by resolved path, so import cycles are harmless
├─ merge the explicit files list (injected in full; instruction files are
│ scanned but never re-injected)
├─ budgets: 64 KB per file (truncated with a note), 128 KB total (skipped
│ with a note); a missing file becomes a one-line note instead of an error
├─ at most one injection stays in the active history: the full event log is
│ fingerprint-scanned, and compaction that removes the block re-enables it
└─ the bundle is appended to the end of the step messages, after AGENTS.md
and every other context injection
The injected message is a <system-reminder> containing <file path="..."> blocks and nothing else. Set template if you want your own framing around it.
Features
- Expands
@pathimports recursively. Default depth is 3; import cycles and duplicates are collapsed. - Triggers on new sessions, resume, clear, and after compaction. Each scene can be turned off.
- Keeps exactly one injection in the active history. After compaction removes it, the next session start injects again.
- Six-language settings card (zh, en, ja, fr, ru, ko) under Settings, Plugins, Plugin configuration. Every option is editable there and applies without a reload.
- Byte budgets per file and in total. Missing files are reported, never fatal.
- Uses the official API surface only: cordis events,
createUserMessagefrom dsh-llm, a schemastery config, and the optional dsh-settings namespace. No feature-plugin dependencies.
Configuration
| Field | Default | Description |
|---|---|---|
files |
[] |
Extra files to inject, relative to the session working directory or absolute |
scanImports |
true |
Scan AGENTS.md and the other instruction files for @imports |
instructionFiles |
["AGENTS.md", "CLAUDE.md"] |
Files to scan. They are never re-injected themselves |
maxDepth |
3 |
How many levels of nested imports to follow |
maxFileBytes |
65536 |
Per-file cap in bytes; larger files are truncated |
maxTotalBytes |
131072 |
Total budget; files beyond it are skipped with a note |
injectOn |
all four | Which session-start scenes trigger injection |
template |
"" |
Custom wrapper text. {{content}} marks where the files go; empty uses the plain wrapper |
Install
dsh plugin --profile web add dsh-context-imports
It works with no configuration: AGENTS.md and CLAUDE.md are scanned and their imports injected. To build from source instead:
git clone https://github.com/ciskonc/dsh-context-imports.git
cd dsh-context-imports
npm install
DSH_CHECKOUT=<path-to-your-dsh-installation> npm run build
npm run build:client
Compatibility: tested against DeepSeek Harness 0.1.5-rc.2 (plugin v0.1.1). The package declares engines: dsh >= 0.1.5-rc.1; any build that supports dsh.bundle manifests should work. Check each release's notes for the version it was tested against.
Development
| File | Role |
|---|---|
src/index.ts |
Host side: session-start ledger, import expansion, budgets, pre-step injection, settings namespace |
src/client/index.ts |
Browser side: six-language dictionaries and the settings card slot |
src/client/form.ts |
Staged form model behind the card |
src/client/ContextImportsCard.tsx |
The card component |
No comments yet. Be the first to write one.