@openduo/duoduo 0.5.0 → 0.5.2
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/bootstrap/meta-prompt.md +124 -40
- package/bootstrap/subconscious/CLAUDE.md +7 -6
- package/bootstrap/subconscious/cadence-executor/CLAUDE.md +2 -2
- package/bootstrap/subconscious/memory-committer/CLAUDE.md +10 -7
- package/bootstrap/subconscious/memory-weaver/.claude/agents/entity-crystallizer.md +124 -24
- package/bootstrap/subconscious/memory-weaver/.claude/agents/intuition-updater.md +4 -8
- package/bootstrap/subconscious/memory-weaver/.claude/agents/spine-scanner.md +6 -1
- package/bootstrap/subconscious/memory-weaver/CLAUDE.md +44 -52
- package/bootstrap/subconscious/opportunity-scout/CLAUDE.md +54 -12
- package/bootstrap/subconscious/pattern-tracker/CLAUDE.md +260 -118
- package/bootstrap/subconscious/working-memory/CLAUDE.md +115 -18
- package/dist/release/channel-acp.js +54 -29
- package/dist/release/cli.js +751 -624
- package/dist/release/daemon.js +489 -362
- package/dist/release/feishu-gateway.js +101 -48
- package/dist/release/stdio.js +97 -97
- package/package.json +16 -14
- package/bootstrap/memory/index.md +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openduo/duoduo",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -26,35 +26,37 @@
|
|
|
26
26
|
]
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@eslint/js": "^9.39.
|
|
30
|
-
"@types/node": "^20.
|
|
31
|
-
"@types/react": "^18.3.
|
|
29
|
+
"@eslint/js": "^9.39.4",
|
|
30
|
+
"@types/node": "^20.19.41",
|
|
31
|
+
"@types/react": "^18.3.28",
|
|
32
32
|
"@types/ws": "^8.18.1",
|
|
33
33
|
"esbuild": "^0.25.12",
|
|
34
34
|
"eslint": "^9.39.4",
|
|
35
35
|
"eslint-config-prettier": "^10.1.8",
|
|
36
36
|
"husky": "^9.1.7",
|
|
37
37
|
"lint-staged": "^16.4.0",
|
|
38
|
-
"prettier": "^3.8.
|
|
39
|
-
"tsx": "^4.
|
|
40
|
-
"typescript": "^5.
|
|
41
|
-
"typescript-eslint": "^8.
|
|
42
|
-
"
|
|
43
|
-
"
|
|
38
|
+
"prettier": "^3.8.3",
|
|
39
|
+
"tsx": "^4.21.0",
|
|
40
|
+
"typescript": "^5.9.3",
|
|
41
|
+
"typescript-eslint": "^8.59.3",
|
|
42
|
+
"vite": "^6.4.2",
|
|
43
|
+
"vitest": "^4.1.6",
|
|
44
|
+
"ws": "^8.20.1"
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|
|
46
|
-
"@anthropic-ai/claude-agent-sdk": "^0.2.
|
|
47
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.140",
|
|
47
48
|
"@fastify/websocket": "^11.2.0",
|
|
48
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
49
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
49
50
|
"chalk": "^4.1.2",
|
|
50
51
|
"cli-highlight": "^2.1.11",
|
|
51
52
|
"cron-parser": "^5.5.0",
|
|
52
|
-
"fastify": "^5.8.
|
|
53
|
+
"fastify": "^5.8.5",
|
|
53
54
|
"gray-matter": "^4.0.3",
|
|
54
55
|
"ink": "^4.4.1",
|
|
55
56
|
"ink-text-input": "^5.0.1",
|
|
57
|
+
"marked": "^15.0.12",
|
|
56
58
|
"react": "^18.3.1",
|
|
57
|
-
"zod": "^4.3
|
|
59
|
+
"zod": "^4.4.3",
|
|
58
60
|
"@openduo/protocol": "0.5.0"
|
|
59
61
|
},
|
|
60
62
|
"scripts": {
|