forked from UditAkhourii/adhd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.71 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
{
"name": "adhd-agent",
"version": "0.1.4",
"description": "ADHD — a skill for coding agents. Fans out many divergent thoughts in parallel under different cognitive frames, scores them, prunes traps, and deepens the survivors. Tree-of-thought with pruning, built on the Claude Agent SDK. The no-brainer skill for creative and interdisciplinary work.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"adhd": "dist/cli.js"
},
"files": [
"dist",
"skills",
"SOURCE-SPEC.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "node --import tsx --test tests/*.test.ts",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.bench.json",
"prepublishOnly": "npm run build",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"evals": "tsx bench/run-evals.ts",
"evals:quick": "tsx bench/run-evals.ts --quick"
},
"keywords": [
"adhd",
"ideation",
"tree-of-thought",
"chain-of-thought",
"divergent-thinking",
"brainstorm",
"claude",
"claude-agent-sdk",
"agent",
"agents",
"creative",
"interdisciplinary",
"ai",
"llm",
"skill"
],
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/UditAkhourii/adhd.git"
},
"homepage": "https://github.com/UditAkhourii/adhd#readme",
"bugs": {
"url": "https://github.com/UditAkhourii/adhd/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"p-limit": "^5.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}