-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "mini-agent",
"version": "0.1.0",
"description": "Minimal Personal AI Agent - Memory + Proactivity",
"type": "module",
"main": "dist/index.js",
"bin": {
"mini-agent": "dist/cli.js"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify:brain-context": "pnpm build && node scripts/verify-brain-context.mjs",
"self-research:plan": "pnpm build && node scripts/self-research-plan.mjs",
"sync:github-issues": "pnpm build && node dist/issue-autopilot-cli.js",
"janitor:workspaces": "tsx scripts/workspace-janitor.ts",
"janitor:workspaces:apply": "tsx scripts/workspace-janitor.ts --apply",
"janitor:stash": "tsx scripts/stash-governance.ts",
"janitor:stash:apply": "tsx scripts/stash-governance.ts --apply",
"check:runtime-workspace": "tsx scripts/check-runtime-workspace.ts",
"autocorrect:runtime-workspace": "tsx scripts/runtime-workspace-autocorrect.ts",
"setup:external-memory": "tsx scripts/setup-external-memory.ts",
"memory:repo:setup": "tsx scripts/setup-memory-repo.ts --init",
"memory:repo:check": "tsx scripts/setup-memory-repo.ts --check",
"memory:kg:promote": "tsx scripts/kg-promote-memory.ts",
"guard:issue-evidence": "tsx scripts/guard-issue-evidence.ts",
"check:design-governance": "tsx scripts/check-design-governance.ts",
"skill-promotion:autopilot": "tsx scripts/skill-promotion-autopilot.ts",
"check:autonomy-closure": "tsx scripts/autonomy-closure-health.ts",
"check:test-health": "tsx scripts/test-health-autopilot.ts",
"error-patterns:resolve": "tsx scripts/error-patterns-resolve.ts",
"setup": "pnpm install && pnpm build && npm link",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"check:pr-lifecycle": "tsx scripts/check-pr-lifecycle.ts",
"llm:token-usage": "tsx scripts/llm-token-usage.ts",
"rotate:logs": "node scripts/rotate-decision-logs.mjs",
"rotate:logs:dry": "node scripts/rotate-decision-logs.mjs --dry-run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.112",
"@anthropic-ai/sdk": "^0.74.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@mozilla/readability": "^0.6.0",
"better-sqlite3": "^12.6.2",
"cron-parser": "^5.5.0",
"express": "^4.18.2",
"htmlparser2": "^10.1.0",
"jsdom": "^28.1.0",
"myelinate": "git+https://github.com/miles990/myelin.git#5b39742fcff4df7731852e7a877a051d2eb5e0b6",
"turndown": "^7.2.2",
"uuid": "^13.0.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/uuid": "^11.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}