-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.05 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
{
"name": "godpowers",
"version": "3.14.0",
"description": "AI-powered development system: 120 slash commands and 40 specialist agents that take a project from raw idea to hardened production. 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",
"validate-skills": "node scripts/validate-skills.js",
"test:surface": "node scripts/test-doc-surface-counts.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:recipes": "node scripts/test-recipes.js",
"test:context": "node scripts/test-context-writer.js",
"test:pillars": "node scripts/test-pillars.js",
"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 --include=lib/**/*.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:check": "npm run coverage:lib && node scripts/check-per-file-coverage.js && npm run test:audit && 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/aihxp/godpowers.git"
},
"homepage": "https://github.com/aihxp/godpowers#readme",
"bugs": {
"url": "https://github.com/aihxp/godpowers/issues"
},
"files": [
"bin/",
"skills/",
"agents/god-*.md",
"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"
}
}