godpowers 1.6.19 → 1.6.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +29 -6
- package/CHANGELOG.md +60 -0
- package/README.md +11 -8
- package/RELEASE.md +39 -29
- package/SKILL.md +7 -1
- package/lib/README.md +3 -0
- package/lib/dashboard.js +43 -2
- package/lib/feature-awareness.js +18 -0
- package/lib/recipe-coverage-sync.js +149 -0
- package/lib/release-surface-sync.js +177 -0
- package/lib/repo-surface-sync.js +86 -4
- package/lib/route-quality-sync.js +313 -0
- package/lib/router.js +4 -1
- package/package.json +2 -2
- package/routing/god-init.yaml +1 -1
- package/routing/god-party.yaml +4 -2
- package/routing/god-roadmap-update.yaml +1 -1
- package/routing/god-story-build.yaml +11 -2
- package/routing/god-sync.yaml +1 -1
- package/routing/recipes/automation-setup.yaml +25 -0
- package/routing/recipes/context-refresh.yaml +26 -0
- package/routing/recipes/release-maintenance.yaml +27 -0
- package/routing/recipes/story-work.yaml +29 -0
- package/skills/god-doctor.md +8 -1
- package/skills/god-sync.md +8 -4
- package/skills/god-version.md +1 -1
|
@@ -10,9 +10,18 @@ prerequisites:
|
|
|
10
10
|
- .godpowers/stories/STORY-*.md
|
|
11
11
|
|
|
12
12
|
execution:
|
|
13
|
-
spawns: [god-planner
|
|
13
|
+
spawns: [god-planner]
|
|
14
14
|
context: fresh
|
|
15
|
-
|
|
15
|
+
secondary-spawns: [god-executor, god-spec-reviewer, god-quality-reviewer]
|
|
16
|
+
writes:
|
|
17
|
+
- .godpowers/stories/STORY-*.md
|
|
18
|
+
- source code
|
|
19
|
+
|
|
20
|
+
standards:
|
|
21
|
+
substitution-test: true
|
|
22
|
+
three-label-test: true
|
|
23
|
+
have-nots: [B-01, B-02, B-03, B-04, B-05, B-06, B-07, B-08, B-09, B-10, B-11, B-12]
|
|
24
|
+
gate-on-failure: pause-for-user
|
|
16
25
|
|
|
17
26
|
success-path:
|
|
18
27
|
next-recommended: /god-story-verify
|
package/routing/god-sync.yaml
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: Recipe
|
|
3
|
+
metadata:
|
|
4
|
+
name: automation-setup
|
|
5
|
+
category: maintaining
|
|
6
|
+
description: "Set up and verify native Godpowers automations"
|
|
7
|
+
|
|
8
|
+
triggers:
|
|
9
|
+
intent-keywords:
|
|
10
|
+
- "create automation"
|
|
11
|
+
- "set up automation"
|
|
12
|
+
- "recurring godpowers"
|
|
13
|
+
- "weekly automation"
|
|
14
|
+
- "automation status"
|
|
15
|
+
|
|
16
|
+
sequences:
|
|
17
|
+
default:
|
|
18
|
+
description: "Set up and verify native Godpowers automations"
|
|
19
|
+
steps:
|
|
20
|
+
- command: "/god-automation-setup"
|
|
21
|
+
why: "Create approved host-native automation"
|
|
22
|
+
- command: "/god-automation-status"
|
|
23
|
+
why: "Confirm configured providers and active templates"
|
|
24
|
+
|
|
25
|
+
default-sequence: default
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: Recipe
|
|
3
|
+
metadata:
|
|
4
|
+
name: context-refresh
|
|
5
|
+
category: knowledge
|
|
6
|
+
description: "Refresh agent context after repo, docs, or workflow changes"
|
|
7
|
+
|
|
8
|
+
triggers:
|
|
9
|
+
intent-keywords:
|
|
10
|
+
- "context refresh"
|
|
11
|
+
- "update agent context"
|
|
12
|
+
- "make agents aware"
|
|
13
|
+
- "new godpowers features"
|
|
14
|
+
|
|
15
|
+
sequences:
|
|
16
|
+
default:
|
|
17
|
+
description: "Refresh agent context after repo, docs, or workflow changes"
|
|
18
|
+
steps:
|
|
19
|
+
- command: "/god-context"
|
|
20
|
+
why: "Refresh portable agent context files"
|
|
21
|
+
- command: "/god-sync"
|
|
22
|
+
why: "Apply feature-awareness and Pillars sync checks"
|
|
23
|
+
- command: "/god-status"
|
|
24
|
+
why: "Confirm proactive checks are fresh"
|
|
25
|
+
|
|
26
|
+
default-sequence: default
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: Recipe
|
|
3
|
+
metadata:
|
|
4
|
+
name: release-maintenance
|
|
5
|
+
category: maintaining
|
|
6
|
+
description: "Release closeout, package, docs, and published-surface maintenance"
|
|
7
|
+
|
|
8
|
+
triggers:
|
|
9
|
+
intent-keywords:
|
|
10
|
+
- "create release"
|
|
11
|
+
- "publish npm"
|
|
12
|
+
- "update readme badge"
|
|
13
|
+
- "release notes"
|
|
14
|
+
- "package release"
|
|
15
|
+
|
|
16
|
+
sequences:
|
|
17
|
+
default:
|
|
18
|
+
description: "Release closeout, package, docs, and published-surface maintenance"
|
|
19
|
+
steps:
|
|
20
|
+
- command: "/god-sync"
|
|
21
|
+
why: "Refresh project artifacts and repo surface checks before release work"
|
|
22
|
+
- command: "/god-docs"
|
|
23
|
+
why: "Verify README, release notes, badges, and public docs against code"
|
|
24
|
+
- command: "/god-version"
|
|
25
|
+
why: "Confirm installed runtime and package version visibility"
|
|
26
|
+
|
|
27
|
+
default-sequence: default
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: Recipe
|
|
3
|
+
metadata:
|
|
4
|
+
name: story-work
|
|
5
|
+
category: feature-addition
|
|
6
|
+
description: "Create, build, verify, and close a scoped story"
|
|
7
|
+
|
|
8
|
+
triggers:
|
|
9
|
+
intent-keywords:
|
|
10
|
+
- "create story"
|
|
11
|
+
- "build story"
|
|
12
|
+
- "implement story"
|
|
13
|
+
- "verify story"
|
|
14
|
+
- "close story"
|
|
15
|
+
|
|
16
|
+
sequences:
|
|
17
|
+
default:
|
|
18
|
+
description: "Create, build, verify, and close a scoped story"
|
|
19
|
+
steps:
|
|
20
|
+
- command: "/god-story"
|
|
21
|
+
why: "Create or select a runtime-testable story"
|
|
22
|
+
- command: "/god-story-build"
|
|
23
|
+
why: "Plan and implement the selected story with reviewers"
|
|
24
|
+
- command: "/god-story-verify"
|
|
25
|
+
why: "Runtime-test the story acceptance criteria"
|
|
26
|
+
- command: "/god-story-close"
|
|
27
|
+
why: "Close the story only after verification passes"
|
|
28
|
+
|
|
29
|
+
default-sequence: default
|
package/skills/god-doctor.md
CHANGED
|
@@ -131,7 +131,8 @@ security prose needs judgment.
|
|
|
131
131
|
For initialized projects, `/god-doctor` calls `lib/repo-surface-sync.detect`
|
|
132
132
|
as a read-only diagnostic. It reports structural drift across command routing,
|
|
133
133
|
package payload rules, agent spawn targets, workflow metadata, recipe command
|
|
134
|
-
routes, extension packs,
|
|
134
|
+
routes, extension packs, route quality, recipe coverage, release surfaces, and
|
|
135
|
+
release policy checks.
|
|
135
136
|
|
|
136
137
|
`/god-doctor --fix` may call
|
|
137
138
|
`lib/repo-surface-sync.run(projectRoot, { fixRouting: true })` to create
|
|
@@ -149,6 +150,12 @@ Built-in, no spawned agent. Reads:
|
|
|
149
150
|
- `lib/repo-doc-sync.detect(projectRoot)` for repo documentation freshness
|
|
150
151
|
- `lib/repo-surface-sync.detect(projectRoot)` for structural repo surface
|
|
151
152
|
freshness
|
|
153
|
+
- `lib/route-quality-sync.detect(projectRoot)` through repo surface sync for
|
|
154
|
+
atomic spawn and contextual route exit freshness
|
|
155
|
+
- `lib/recipe-coverage-sync.detect(projectRoot)` through repo surface sync for
|
|
156
|
+
high-frequency intent recipe coverage freshness
|
|
157
|
+
- `lib/release-surface-sync.detect(projectRoot)` through repo surface sync for
|
|
158
|
+
release-facing surface freshness
|
|
152
159
|
- `bin/install.js` VERSION constant
|
|
153
160
|
|
|
154
161
|
## Exit codes
|
package/skills/god-sync.md
CHANGED
|
@@ -41,9 +41,10 @@ User runs `/god-sync` after manual changes. Useful for:
|
|
|
41
41
|
Narrative drift should recommend or spawn `god-docs-writer`.
|
|
42
42
|
5. Call `lib/repo-surface-sync.run(projectRoot)` so command routing, package
|
|
43
43
|
payload, agent handoffs, workflow metadata, recipe routes, extension packs,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
`god-coordinator
|
|
44
|
+
route quality, recipe coverage, release surfaces, and release policy are
|
|
45
|
+
checked before sync closes. Structural drift should recommend scoped agents
|
|
46
|
+
such as `god-auditor`, `god-roadmap-reconciler`, `god-coordinator`, or
|
|
47
|
+
`god-docs-writer`.
|
|
47
48
|
6. If repo documentation changed durable project truth, plan or apply Pillars
|
|
48
49
|
updates through `lib/pillars.planArtifactSync` or
|
|
49
50
|
`lib/pillars.applyArtifactSync` under the active Pillars policy.
|
|
@@ -63,7 +64,7 @@ Auto-invoked:
|
|
|
63
64
|
Trigger: <manual /god-sync, recipe closeout, /god-mode final sync, or other source>
|
|
64
65
|
Agent: god-updater
|
|
65
66
|
Local syncs:
|
|
66
|
-
- pending: feature-awareness, reverse-sync, source-sync, repo-doc-sync, repo-surface-sync, pillars-sync, checkpoint-sync, context-refresh
|
|
67
|
+
- pending: feature-awareness, reverse-sync, source-sync, repo-doc-sync, repo-surface-sync, route-quality-sync, recipe-coverage-sync, release-surface-sync, pillars-sync, checkpoint-sync, context-refresh
|
|
67
68
|
Artifacts: pending
|
|
68
69
|
Log: .godpowers/SYNC-LOG.md
|
|
69
70
|
```
|
|
@@ -92,6 +93,9 @@ Sync status:
|
|
|
92
93
|
+ source-sync: <written GSD/BMAD/Superpowers companion files, no-op, or skipped>
|
|
93
94
|
+ repo-doc-sync: <refreshed README badges/counts, recommended god-docs-writer, or no-op>
|
|
94
95
|
+ repo-surface-sync: <checked routes/package/agents/workflows/extensions, recommended scoped agents, or no-op>
|
|
96
|
+
+ route-quality-sync: <checked atomic spawns and contextual exits, no-op, or recommended god-auditor>
|
|
97
|
+
+ recipe-coverage-sync: <checked high-frequency intent recipes, no-op, or recommended god-roadmap-reconciler>
|
|
98
|
+
+ release-surface-sync: <checked badges/changelog/release/package guards, no-op, or recommended god-docs-writer>
|
|
95
99
|
+ pillars-sync: <updated N pillar files, no-op, or proposed>
|
|
96
100
|
+ checkpoint-sync: <CHECKPOINT.md updated or skipped>
|
|
97
101
|
+ context-refresh: <updated AGENTS.md/tool pointers, no-op, or skipped by setting>
|
package/skills/god-version.md
CHANGED
|
@@ -16,7 +16,7 @@ Print version and a short capability summary.
|
|
|
16
16
|
```
|
|
17
17
|
Godpowers v1.6.19
|
|
18
18
|
Install: /Users/.../.claude/ (matches package.json)
|
|
19
|
-
Surface: 109 skills, 40 agents, 13 workflows,
|
|
19
|
+
Surface: 109 skills, 40 agents, 13 workflows, 40 recipes
|
|
20
20
|
Schema: intent.v1, state.v1, events.v1, workflow.v1, routing.v1, recipe.v1
|
|
21
21
|
External integrations available: impeccable, agent-browser (others lazy)
|
|
22
22
|
Feature awareness: planning-system migration, source-system sync-back, context refresh, dashboard status labels, repo documentation sync, repo surface sync
|