godpowers 1.6.15 → 1.6.17
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/CHANGELOG.md +55 -0
- package/README.md +19 -9
- package/RELEASE.md +41 -53
- package/SKILL.md +19 -2
- package/lib/README.md +4 -0
- package/lib/context-writer.js +3 -4
- package/lib/dashboard.js +6 -1
- package/lib/feature-awareness.js +226 -0
- package/lib/pillars.js +9 -0
- package/lib/repo-doc-sync.js +392 -0
- package/package.json +2 -2
- package/routing/god-export-otel.yaml +24 -0
- package/schema/state.v1.json +26 -0
- package/skills/god-context.md +15 -5
- package/skills/god-docs.md +7 -0
- package/skills/god-doctor.md +33 -0
- package/skills/god-mode.md +14 -0
- package/skills/god-status.md +2 -2
- package/skills/god-sync.md +17 -4
- package/skills/god-version.md +2 -1
package/skills/god-sync.md
CHANGED
|
@@ -29,14 +29,24 @@ User runs `/god-sync` after manual changes. Useful for:
|
|
|
29
29
|
## Setup
|
|
30
30
|
|
|
31
31
|
1. Verify `.godpowers/` exists
|
|
32
|
-
2. Call `lib/
|
|
32
|
+
2. Call `lib/feature-awareness.run(projectRoot)` so existing projects learn
|
|
33
|
+
about newly installed Godpowers runtime capabilities before sync closes.
|
|
34
|
+
Report this as `Agent: none, local runtime only`.
|
|
35
|
+
3. Call `lib/pillars.pillarizeExisting(projectRoot)` if Pillars is absent or
|
|
33
36
|
partial, because every Godpowers project must also carry native Pillars
|
|
34
37
|
context.
|
|
35
|
-
|
|
38
|
+
4. Call `lib/repo-doc-sync.run(projectRoot)` so README badges, public surface
|
|
39
|
+
counts, release references, contribution docs, and security policy are
|
|
40
|
+
checked before sync closes. Safe mechanical updates are local runtime work.
|
|
41
|
+
Narrative drift should recommend or spawn `god-docs-writer`.
|
|
42
|
+
5. If repo documentation changed durable project truth, plan or apply Pillars
|
|
43
|
+
updates through `lib/pillars.planArtifactSync` or
|
|
44
|
+
`lib/pillars.applyArtifactSync` under the active Pillars policy.
|
|
45
|
+
6. If `state.json` contains enabled `source-systems`, auto-invoke
|
|
36
46
|
`lib/source-sync.run(projectRoot)` so current Godpowers progress is written
|
|
37
47
|
back to imported GSD, BMAD, or Superpowers companion files. Report this as
|
|
38
48
|
`Agent: none, local runtime only`.
|
|
39
|
-
|
|
49
|
+
7. Spawn god-updater in fresh context with:
|
|
40
50
|
- The reconciliation verdict (if available from a prior /god-reconcile)
|
|
41
51
|
- Or: re-run reconciliation against current state to detect what changed
|
|
42
52
|
- Recent commits for context
|
|
@@ -48,7 +58,7 @@ Auto-invoked:
|
|
|
48
58
|
Trigger: <manual /god-sync, recipe closeout, /god-mode final sync, or other source>
|
|
49
59
|
Agent: god-updater
|
|
50
60
|
Local syncs:
|
|
51
|
-
- pending: reverse-sync, source-sync, pillars-sync, checkpoint-sync, context-refresh
|
|
61
|
+
- pending: feature-awareness, reverse-sync, source-sync, repo-doc-sync, pillars-sync, checkpoint-sync, context-refresh
|
|
52
62
|
Artifacts: pending
|
|
53
63
|
Log: .godpowers/SYNC-LOG.md
|
|
54
64
|
```
|
|
@@ -73,7 +83,9 @@ Sync status:
|
|
|
73
83
|
Agent: god-updater spawned
|
|
74
84
|
Local syncs:
|
|
75
85
|
+ reverse-sync: <scanned N files, updated M footers, populated K review items>
|
|
86
|
+
+ feature-awareness: <recorded runtime features, refreshed context, or no-op>
|
|
76
87
|
+ source-sync: <written GSD/BMAD/Superpowers companion files, no-op, or skipped>
|
|
88
|
+
+ repo-doc-sync: <refreshed README badges/counts, recommended god-docs-writer, or no-op>
|
|
77
89
|
+ pillars-sync: <updated N pillar files, no-op, or proposed>
|
|
78
90
|
+ checkpoint-sync: <CHECKPOINT.md updated or skipped>
|
|
79
91
|
+ context-refresh: <updated AGENTS.md/tool pointers, no-op, or skipped by setting>
|
|
@@ -118,6 +130,7 @@ Next:
|
|
|
118
130
|
| Orphan todos | Closes superseded todos |
|
|
119
131
|
| Lost threads | Active threads get progress notes |
|
|
120
132
|
| Pillars drift | Keeps `agents/*.md` aligned with current `.godpowers` artifacts |
|
|
133
|
+
| Repo docs drift | Keeps README badges, repo docs, and release surfaces aligned |
|
|
121
134
|
|
|
122
135
|
The loop:
|
|
123
136
|
|
package/skills/god-version.md
CHANGED
|
@@ -14,11 +14,12 @@ Print version and a short capability summary.
|
|
|
14
14
|
## Output
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
Godpowers v1.6.
|
|
17
|
+
Godpowers v1.6.16
|
|
18
18
|
Install: /Users/.../.claude/ (matches package.json)
|
|
19
19
|
Surface: 109 skills, 40 agents, 13 workflows, 36 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
|
+
Feature awareness: planning-system migration, source-system sync-back, context refresh
|
|
22
23
|
```
|
|
23
24
|
|
|
24
25
|
## Subcommands
|