@carljia/omd-dsh 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -6
- package/lib/cli.js +132 -24
- package/lib/index.d.ts +22 -3
- package/lib/index.js +129 -28
- package/lib/mode.d.ts +33 -0
- package/lib/mode.js +145 -0
- package/lib/plan.d.ts +22 -0
- package/lib/plan.js +146 -0
- package/lib/startwork.d.ts +17 -0
- package/lib/startwork.js +147 -0
- package/lib/task.js +8 -1
- package/lib/vendor/omd-mode-switch.mjs +145 -0
- package/lib/vendor/omd-mode.mjs +129 -28
- package/lib/vendor/omd-plan.mjs +146 -0
- package/lib/vendor/omd-start-work.mjs +147 -0
- package/lib/vendor/omd-task.mjs +8 -1
- package/{omd-matrix.json → omd-matrix.default.json} +3 -9
- package/package.json +2 -2
- package/presets/omd-chat/agent.cordis.yml +2 -0
- package/presets/omd-executor/agent.cordis.yml +28 -1
- package/presets/omd-explorer/agent.cordis.yml +2 -0
- package/presets/omd-librarian/agent.cordis.yml +2 -0
- package/presets/omd-planner/agent.cordis.yml +8 -1
- package/presets/omd-reviewer/agent.cordis.yml +2 -0
- package/presets/{omd-architect → omd-ultraworker}/agent.cordis.yml +16 -2
- package/presets/omd-ultraworker/preset.yml +3 -0
- package/presets/omd-architect/preset.yml +0 -3
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
# omd-
|
|
1
|
+
# omd-ultraworker preset (OMD ultraworker mode). Generated by omd-dsh — see README for the mode matrix.
|
|
2
2
|
|
|
3
3
|
- id: persona
|
|
4
4
|
name: '@deepseek-ai/dsh-persona'
|
|
5
5
|
config:
|
|
6
6
|
text: >-
|
|
7
|
-
You are in
|
|
7
|
+
You are in ULTRAWORKER mode (OMD · 超能工作者): a deep, high-throughput builder on DeepSeek Harness with PTC (Code Mode) tool presentation. Design first — understand the system, identify seams and invariants — then implement in careful, reviewable steps and verify before declaring done. Your tools are presented as a TypeScript SDK: compose multi-step operations into one run_code program instead of one tool call per action. Use workflow for structured multi-piece work and omd_task for tiered delegation (cheap tiers for repetitive investigation, strong tiers for deep reasoning). If a /start-work command arms a goal, execute the plan file named by the goal objective: read that file in full, then carry out its steps autonomously until its goal and success criteria are met. 本模式路由模型:{{model}}(provider: {{provider}})。
|
|
8
8
|
|
|
9
9
|
# [omd-dsh:mode:start]
|
|
10
10
|
# [omd-dsh:mode:end]
|
|
11
|
+
- id: omd-start-work
|
|
12
|
+
name: '../.omd-vendor/omd-start-work.mjs'
|
|
13
|
+
|
|
14
|
+
- id: omd-mode-switch
|
|
15
|
+
name: '../.omd-vendor/omd-mode-switch.mjs'
|
|
11
16
|
- id: agent-instructions
|
|
12
17
|
name: '@deepseek-ai/dsh-agent-instructions'
|
|
13
18
|
config:
|
|
@@ -110,3 +115,12 @@
|
|
|
110
115
|
config:
|
|
111
116
|
fetch: false
|
|
112
117
|
searchTimeoutMs: 60000
|
|
118
|
+
|
|
119
|
+
# PTC (Code Mode) presentation for this agent alone: the model writes a
|
|
120
|
+
# TypeScript program against a generated SDK and run_code executes it, so a
|
|
121
|
+
# sequence that would be five round trips becomes one. The row waits for the
|
|
122
|
+
# host's codeRuntime rather than assuming it.
|
|
123
|
+
- id: tool-presentation
|
|
124
|
+
name: '@deepseek-ai/dsh-agent-tool-presentation'
|
|
125
|
+
config:
|
|
126
|
+
mode: code
|