-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.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
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
107
108
{
"name": "godpowers",
"version": "5.5.1",
"description": "AI-powered development system: 122 slash commands and 40 specialist agents that take a project from raw idea to hardened production, then run it as an autonomous loop. Runs inside Claude Code, Codex, Cursor, Windsurf, Gemini, and 10+ other AI coding tools.",
"bin": {
"godpowers": "./bin/install.js"
},
"scripts": {
"test": "node scripts/run-tests.js",
"prepublishOnly": "npm run release:check && npm run release:prepublication:check",
"validate-skills": "node scripts/validate-skills.js",
"test:surface": "node scripts/test-doc-surface-counts.js",
"test:self-truth": "node scripts/check-self-project-truth.js",
"test:quick-proof": "node scripts/test-quick-proof.js",
"canary:adoption": "node scripts/run-adoption-canary.js",
"verify:published-install": "node scripts/verify-published-install.js",
"smoke": "bash scripts/smoke.sh",
"test:runtime": "node scripts/test-runtime.js",
"test:router": "node scripts/test-router.js",
"test:product-routing": "node scripts/test-product-routing.js",
"test:prepublication": "node scripts/test-prepublication-gate.js",
"test:recipes": "node scripts/test-recipes.js",
"test:context": "node scripts/test-context-writer.js",
"test:pillars": "node scripts/test-pillars.js",
"test:pillars-conformance": "node scripts/test-pillars-conformance.js",
"validate:official-skill": "node scripts/validate-official-skill.js",
"release:standards": "npm run validate:official-skill && npm run test:pillars && npm run test:pillars-conformance",
"test:linter": "node scripts/test-artifact-linter.js",
"test:diff": "node scripts/test-artifact-diff.js",
"test:e2e": "node tests/integration/full-arc.test.js",
"test:mcp": "npm --workspace @godpowers/mcp test",
"coverage": "c8 --reporter=text --reporter=lcov node scripts/run-tests.js",
"coverage:lib": "c8 --all --include=lib/**/*.js --exclude=lib/agent-browser-driver.js --exclude=lib/browser-bridge.js --exclude=!lib/runtime-test.js --check-coverage --lines 90 --branches 75 --reporter=text --reporter=json-summary node scripts/run-tests.js",
"test:audit": "npm audit --omit=dev && git diff --check && npm run test:surface",
"pack:check": "node scripts/check-package-contents.js",
"pack:mcp:check": "npm --workspace @godpowers/mcp run pack:check",
"release:prepublication:record": "node lib/prepublication-gate.js --record --project=.",
"release:prepublication:check": "node lib/prepublication-gate.js --check --project=.",
"release:check": "npm run release:standards && npm run coverage:lib && node scripts/check-per-file-coverage.js && npm run test:audit && npm run test:self-truth && npm run pack:check && npm run pack:mcp:check",
"lint": "node scripts/static-check.js"
},
"workspaces": [
"packages/mcp"
],
"keywords": [
"ai",
"ai-agent",
"ai-agents",
"ai-development",
"ai-coding",
"ai-orchestration",
"agent",
"agents",
"claude",
"claude-code",
"codex",
"cursor",
"windsurf",
"gemini",
"copilot",
"tdd",
"orchestration",
"godmode",
"slash-commands",
"skills",
"prd",
"architecture",
"roadmap",
"specialist-agents",
"developer-tools"
],
"author": "Godpowers",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hannsxpeter/godpowers.git"
},
"homepage": "https://github.com/hannsxpeter/godpowers#readme",
"bugs": {
"url": "https://github.com/hannsxpeter/godpowers/issues"
},
"files": [
"bin/",
"skills/",
"specialists/",
"hooks/",
"templates/",
"references/",
"routing/",
"workflows/",
"schema/",
"lib/",
"fixtures/",
"extensions/",
"INSPIRATION.md",
"RELEASE.md",
"SKILL.md",
"AGENTS.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"c8": "^11.0.0"
}
}