godpowers 1.6.14 → 1.6.16
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 +64 -0
- package/README.md +34 -13
- package/RELEASE.md +47 -58
- package/SKILL.md +19 -1
- package/lib/README.md +3 -0
- package/lib/context-writer.js +3 -4
- package/lib/feature-awareness.js +220 -0
- package/lib/planning-systems.js +479 -0
- package/lib/reverse-sync.js +7 -1
- package/lib/source-sync.js +220 -0
- package/package.json +3 -3
- package/routing/god-migrate.yaml +61 -0
- package/schema/state.v1.json +83 -0
- package/skills/god-context.md +15 -5
- package/skills/god-doctor.md +21 -1
- package/skills/god-init.md +10 -0
- package/skills/god-migrate.md +146 -0
- package/skills/god-mode.md +7 -0
- package/skills/god-sync.md +12 -3
- package/skills/god-version.md +3 -2
package/skills/god-mode.md
CHANGED
|
@@ -304,6 +304,7 @@ Sync status:
|
|
|
304
304
|
Trigger: /god-mode final sync
|
|
305
305
|
Agent: god-updater spawned
|
|
306
306
|
Local syncs:
|
|
307
|
+
+ feature-awareness: <recorded runtime features, refreshed context, or no-op>
|
|
307
308
|
+ reverse-sync: <counts and result>
|
|
308
309
|
+ pillars-sync: <counts and result>
|
|
309
310
|
+ checkpoint-sync: <created, updated, no-op, or skipped>
|
|
@@ -318,6 +319,11 @@ to relevant pillar files through `lib/pillars.planArtifactSync`. Default mode
|
|
|
318
319
|
proposes pillar updates for review. `--yolo` applies them immediately and logs
|
|
319
320
|
the action to `.godpowers/YOLO-DECISIONS.md`.
|
|
320
321
|
|
|
322
|
+
When `/god-mode` resumes an existing `.godpowers` project, it auto-invokes
|
|
323
|
+
`lib/feature-awareness.run(projectRoot)` before the final sync report. This
|
|
324
|
+
keeps upgraded projects aware of new runtime features, current context fences,
|
|
325
|
+
and migration routes without rewriting user artifacts.
|
|
326
|
+
|
|
321
327
|
If `/god-mode` resumes an existing `.godpowers` project that lacks Pillars,
|
|
322
328
|
it Pillar-izes the project before continuing. Existing `.godpowers` artifacts
|
|
323
329
|
become managed source references in the relevant `agents/*.md` files.
|
|
@@ -337,6 +343,7 @@ Sync status:
|
|
|
337
343
|
Trigger: /god-mode final sync
|
|
338
344
|
Agent: god-updater spawned
|
|
339
345
|
Local syncs:
|
|
346
|
+
+ feature-awareness: <recorded runtime features, refreshed context, or no-op>
|
|
340
347
|
+ reverse-sync: <counts and result>
|
|
341
348
|
+ pillars-sync: <counts and result>
|
|
342
349
|
+ checkpoint-sync: <created, updated, no-op, or skipped>
|
package/skills/god-sync.md
CHANGED
|
@@ -29,10 +29,17 @@ 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. If `state.json` contains enabled `source-systems`, auto-invoke
|
|
39
|
+
`lib/source-sync.run(projectRoot)` so current Godpowers progress is written
|
|
40
|
+
back to imported GSD, BMAD, or Superpowers companion files. Report this as
|
|
41
|
+
`Agent: none, local runtime only`.
|
|
42
|
+
5. Spawn god-updater in fresh context with:
|
|
36
43
|
- The reconciliation verdict (if available from a prior /god-reconcile)
|
|
37
44
|
- Or: re-run reconciliation against current state to detect what changed
|
|
38
45
|
- Recent commits for context
|
|
@@ -44,7 +51,7 @@ Auto-invoked:
|
|
|
44
51
|
Trigger: <manual /god-sync, recipe closeout, /god-mode final sync, or other source>
|
|
45
52
|
Agent: god-updater
|
|
46
53
|
Local syncs:
|
|
47
|
-
- pending: reverse-sync, pillars-sync, checkpoint-sync, context-refresh
|
|
54
|
+
- pending: feature-awareness, reverse-sync, source-sync, pillars-sync, checkpoint-sync, context-refresh
|
|
48
55
|
Artifacts: pending
|
|
49
56
|
Log: .godpowers/SYNC-LOG.md
|
|
50
57
|
```
|
|
@@ -69,6 +76,8 @@ Sync status:
|
|
|
69
76
|
Agent: god-updater spawned
|
|
70
77
|
Local syncs:
|
|
71
78
|
+ reverse-sync: <scanned N files, updated M footers, populated K review items>
|
|
79
|
+
+ feature-awareness: <recorded runtime features, refreshed context, or no-op>
|
|
80
|
+
+ source-sync: <written GSD/BMAD/Superpowers companion files, no-op, or skipped>
|
|
72
81
|
+ pillars-sync: <updated N pillar files, no-op, or proposed>
|
|
73
82
|
+ checkpoint-sync: <CHECKPOINT.md updated or skipped>
|
|
74
83
|
+ context-refresh: <updated AGENTS.md/tool pointers, no-op, or skipped by setting>
|
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
|
-
Surface:
|
|
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
|