-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 5.53 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 5.53 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@tdwhere/do-it",
"version": "0.17.0",
"description": "Professional coding judgment, independent specialists, compact context, and deterministic checks across agent hosts.",
"type": "module",
"license": "MIT",
"author": "tdwhere123",
"repository": {
"type": "git",
"url": "git+https://github.com/tdwhere123/do-it.git"
},
"bugs": {
"url": "https://github.com/tdwhere123/do-it/issues"
},
"homepage": "https://github.com/tdwhere123/do-it#readme",
"keywords": [
"agentic-workflow",
"ai-agents",
"codex-cli",
"codex",
"do-it",
"kimi-code",
"pi-coding-agent",
"workflow",
"skills",
"agents",
"subagents",
"developer-tools"
],
"publishConfig": {
"access": "public"
},
"files": [
".agents/plugins/",
".claude-plugin/",
".cursor-plugin/",
"agents/",
"bin/",
"commands/",
"dist/claude/",
"docs/",
"hooks/",
"index.json",
"install/",
"kimi.plugin.json",
"manifest.json",
"plugins/do-it/",
"plugins/do-it-opencode/",
"!plugins/do-it-opencode/node_modules/**",
"plugins/do-it-cursor/",
"README.zh-CN.md",
"scripts/",
"skills/custom/README.md",
"skills/do-it/"
],
"bin": {
"do-it": "bin/do-it.mjs"
},
"scripts": {
"setup": "node bin/do-it.mjs setup",
"install:do-it": "node install/manage.mjs install",
"install:claude": "node install/manage.mjs install --target=claude",
"install:cursor": "node install/manage.mjs install --target=cursor",
"doctor": "node install/manage.mjs doctor",
"doctor:claude": "node install/manage.mjs doctor --target=claude",
"doctor:cursor": "node install/manage.mjs doctor --target=cursor",
"validate:agents": "node scripts/validate-agent-bundle.mjs",
"validate:cursor-plugin": "node scripts/validate-cursor-plugin.mjs",
"check:skill-links": "node scripts/check-skill-links.mjs",
"build:generated": "node scripts/build-claude-agents.mjs && node scripts/build-skills-index.mjs && node scripts/build-index-json.mjs",
"build:claude-agents": "npm run build:generated && node scripts/validate-agent-bundle.mjs",
"build:codex-plugin": "npm run build:generated && node scripts/build-codex-plugin.mjs && node scripts/validate-agent-bundle.mjs",
"build:opencode-plugin": "npm run build:generated && node scripts/build-opencode-plugin.mjs",
"build:pi-plugin": "npm run build:generated && node scripts/build-pi-plugin.mjs",
"build:cursor-plugin": "npm run build:generated && node scripts/build-cursor-plugin.mjs && node scripts/validate-cursor-plugin.mjs && node scripts/validate-harness-matrix.mjs",
"install:cursor-local": "npm run build:cursor-plugin && node scripts/install-cursor-local.mjs",
"install:opencode-global": "npm run build:opencode-plugin && node scripts/install-opencode-global.mjs",
"install:pi-global": "npm run build:pi-plugin && node scripts/install-pi-global.mjs",
"validate:harness-matrix": "node scripts/validate-harness-matrix.mjs",
"validate:kimi-plugin": "node scripts/validate-kimi-plugin.mjs",
"validate:quality-families": "node scripts/validate-quality-families.mjs",
"validate:core-consistency": "node scripts/validate-core-consistency.mjs",
"eval:behavior:validate": "node evals/behavior/validate.mjs",
"eval:behavior": "node evals/behavior/runner.mjs --dry-run --scenario D01",
"validate:legacy-names": "node scripts/validate-legacy-names.mjs",
"validate:release": "node scripts/validate-release.mjs",
"smoke:package": "node scripts/smoke-package.mjs",
"smoke:pi-package": "npm run build:pi-plugin && node scripts/smoke-pi-package.mjs",
"prepack": "npm run build:generated && node scripts/build-codex-plugin.mjs && node scripts/build-cursor-plugin.mjs && node scripts/build-opencode-plugin.mjs && node scripts/build-pi-plugin.mjs && node scripts/validate-agent-bundle.mjs && node scripts/validate-cursor-plugin.mjs && node scripts/validate-harness-matrix.mjs && node scripts/validate-kimi-plugin.mjs && node scripts/validate-core-consistency.mjs",
"do-it": "node bin/do-it.mjs",
"lint": "bash scripts/lint-hooks.sh",
"lint-hooks": "bash scripts/lint-hooks.sh",
"test-hooks": "bash scripts/test-hooks.sh",
"test-agent-bundle": "node --test tests/agent-bundle.test.mjs",
"test-core-consistency": "node --test tests/core-consistency.test.mjs",
"test-install": "node --test tests/install/*.test.mjs",
"test-release": "node --test tests/release/*.test.mjs",
"test-opencode": "npm run build:opencode-plugin && node --test tests/opencode/*.test.mjs",
"test-pi": "npm run build:pi-plugin && npm --prefix plugins/do-it-pi test",
"pack:pi-plugin": "npm run build:pi-plugin && npm --prefix plugins/do-it-pi run pack:check",
"test": "npm run build:generated && node scripts/build-codex-plugin.mjs && node scripts/build-opencode-plugin.mjs && node scripts/build-pi-plugin.mjs && npm run build:cursor-plugin && npm run validate:agents && npm run validate:cursor-plugin && npm run validate:kimi-plugin && npm run check:skill-links && npm run validate:quality-families && npm run validate:core-consistency && npm run eval:behavior:validate && npm run validate:legacy-names && npm run lint-hooks && npm run test-hooks && npm run test-agent-bundle && npm run test-core-consistency && npm run test-install && npm run test-release && npm run test-opencode && npm run test-pi && node --test tests/behavior-eval-validate.test.mjs tests/behavior-eval-runner.test.mjs tests/behavior-eval-live.test.mjs tests/behavior-eval-judge.test.mjs"
},
"engines": {
"node": ">=18"
}
}