Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 75 additions & 102 deletions README.md

Large diffs are not rendered by default.

175 changes: 67 additions & 108 deletions README.zh.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions cordis.patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
# port: 8788 # listen port
# maxPayloadBytes: 262144 # request body cap
# rateLimitPerMinute: 60 # per-hook accepted-request budget
# busyDelivery: followup # or 'inject' (busy-target delivery mode)
# coldWake: false # resume a cold target session for delivery
# defaultCwd: <absolute-workspace> # required for hooks without an explicit cwd
# reconcilePollMs: 1000 # durable Automation event-feed polling interval
# hooks: [] # static hooks; see README
# callbacks: [] # global callback rules; see README

Expand Down
57 changes: 40 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dsh-webhook",
"description": "Inbound webhooks for DeepSeek Harness: signed HTTP events become executed agent tasks with delivery receipts",
"version": "0.5.1",
"description": "Durable inbound webhook Trigger adapter for DSH Automation with verified receipt-first submission",
"version": "0.6.0-alpha.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.7.0",
Expand Down Expand Up @@ -40,39 +40,27 @@
"license": "MIT",
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.1-rc.1 <5.0.0",
"@deepseek-ai/dsh-agent": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-agent-default-model": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-agent-presets": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-commands": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-credentials": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-home-paths": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-llm": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-session": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-session-persistence": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/dsh-tools": ">=0.1.1-rc.2 <0.1.2 || >=0.1.2-alpha.1 <0.2.0",
"@deepseek-ai/schemastery": ">=3.18.1-rc.1 <4.0.0"
"@deepseek-ai/schemastery": ">=3.18.1-rc.1 <4.0.0",
"dsh-automation": ">=0.2.0-alpha.0 <0.3.0"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": { "optional": true },
"@deepseek-ai/dsh-agent": { "optional": true },
"@deepseek-ai/dsh-agent-default-model": { "optional": true },
"@deepseek-ai/dsh-agent-presets": { "optional": true },
"@deepseek-ai/dsh-commands": { "optional": true },
"@deepseek-ai/dsh-credentials": { "optional": true },
"@deepseek-ai/dsh-home-paths": { "optional": true },
"@deepseek-ai/dsh-llm": { "optional": true },
"@deepseek-ai/dsh-session": { "optional": true },
"@deepseek-ai/dsh-session-persistence": { "optional": true },
"@deepseek-ai/dsh-tools": { "optional": true },
"@deepseek-ai/schemastery": { "optional": true }
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/cordis-plugin-include": "1.0.6",
"@deepseek-ai/cordis-plugin-loader": "1.0.2",
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2",
"@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
"@deepseek-ai/dsh-atomic-write": "0.1.1-rc.2",
"@deepseek-ai/dsh-attachment": "0.1.1-rc.2",
"@deepseek-ai/dsh-brand": "0.1.1-rc.2",
Expand All @@ -84,7 +72,6 @@
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
"@deepseek-ai/dsh-scope": "0.1.1-rc.2",
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
"@deepseek-ai/dsh-session-persistence": "0.1.1-rc.2",
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
"@deepseek-ai/dsh-system-prompt": "0.1.1-rc.2",
"@deepseek-ai/dsh-timeout": "0.1.1-rc.2",
Expand All @@ -102,5 +89,41 @@
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"dshSmoke": {
"peerSources": {
"dsh-automation": "github:cofy-x/dsh-automation#69dccc14c4e0f5140752e9494eeb3c26abb8f0a6"
},
"profileOverrides": {
"@deepseek-ai/cordis": "4.0.2",
"@deepseek-ai/cordis-plugin-include": "1.0.7",
"@deepseek-ai/cordis-plugin-loader": "1.0.3",
"@deepseek-ai/dsh-agent": "0.1.2-alpha.2",
"@deepseek-ai/dsh-agent-default-model": "0.1.2-alpha.2",
"@deepseek-ai/dsh-agent-presets": "0.1.2-alpha.2",
"@deepseek-ai/dsh-atomic-write": "0.1.2-alpha.2",
"@deepseek-ai/dsh-brand": "0.1.2-alpha.2",
"@deepseek-ai/dsh-cmdline": "0.1.2-alpha.2",
"@deepseek-ai/dsh-commands": "0.1.2-alpha.2",
"@deepseek-ai/dsh-home-paths": "0.1.2-alpha.2",
"@deepseek-ai/dsh-invariants": "0.1.2-alpha.2",
"@deepseek-ai/dsh-llm": "0.1.2-alpha.2",
"@deepseek-ai/dsh-permission-presets": "0.1.2-alpha.2",
"@deepseek-ai/dsh-sandbox": "0.1.2-alpha.2",
"@deepseek-ai/dsh-sandbox-policy": "0.1.2-alpha.2",
"@deepseek-ai/dsh-scope": "0.1.2-alpha.2",
"@deepseek-ai/dsh-session": "0.1.2-alpha.2",
"@deepseek-ai/dsh-session-persistence": "0.1.2-alpha.2",
"@deepseek-ai/dsh-session-projection": "0.1.2-alpha.2",
"@deepseek-ai/dsh-settings": "0.1.2-alpha.2",
"@deepseek-ai/dsh-shell": "0.1.2-alpha.2",
"@deepseek-ai/dsh-system-prompt": "0.1.2-alpha.2",
"@deepseek-ai/dsh-timeout": "0.1.2-alpha.2",
"@deepseek-ai/dsh-tools": "0.1.2-alpha.2",
"@deepseek-ai/dsh-typert-protocol": "0.1.2-alpha.2",
"@deepseek-ai/dsh-user-approval": "0.1.2-alpha.2",
"@deepseek-ai/schemastery": "3.18.2",
"commander": "15.0.0"
}
}
}
Loading