godpowers 0.15.18 → 1.0.0
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 +27 -0
- package/README.md +6 -1
- package/RELEASE.md +61 -0
- package/lib/pillars.js +9 -3
- package/package.json +2 -1
- package/skills/god-doctor.md +1 -1
- package/skills/god-extension-info.md +1 -1
- package/skills/god-version.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ All notable changes to Godpowers will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.0] - 2026-05-14
|
|
9
|
+
|
|
10
|
+
Public adoption freeze release. Promotes the shipped Godpowers surface to the
|
|
11
|
+
stable 1.0 line so real users can adopt it without the project moving under
|
|
12
|
+
them.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Added 1.0 release notes and public adoption language.
|
|
16
|
+
- Added greenfield Pillars seeding so new Godpowers projects write the project
|
|
17
|
+
name into `agents/context.md` during initialization.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Bumped the package and public documentation version to 1.0.0.
|
|
21
|
+
- Generated `AGENTS.md` now names Godpowers first, then explains that Pillars is
|
|
22
|
+
the native project context layer and `.godpowers/` remains the workflow state
|
|
23
|
+
and artifact layer.
|
|
24
|
+
- Release documentation now frames the project as stable for public adoption
|
|
25
|
+
freeze rather than pre-launch expansion.
|
|
26
|
+
- The release script now checks the installer version through `package.json`,
|
|
27
|
+
matching the dynamic installer implementation.
|
|
28
|
+
|
|
29
|
+
### Frozen
|
|
30
|
+
- Public slash-command, agent, workflow, routing, recipe, and schema surfaces are
|
|
31
|
+
frozen except for critical fixes and adoption feedback.
|
|
32
|
+
- New command families, schema churn, and Pillars format changes are deferred
|
|
33
|
+
until adoption produces evidence.
|
|
34
|
+
|
|
8
35
|
## [0.15.18] - 2026-05-14
|
|
9
36
|
|
|
10
37
|
Native Pillars context release. Makes Pillars the default project context
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/aihxp/godpowers/actions/workflows/ci.yml)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-
[](CHANGELOG.md)
|
|
6
6
|
[](https://www.npmjs.com/package/godpowers)
|
|
7
7
|
|
|
8
8
|
**Ship fast. Ship right. Ship everything. Ship accountably.**
|
|
@@ -12,6 +12,10 @@ idea to hardened production. It runs as **slash commands inside your AI coding
|
|
|
12
12
|
tool** (Claude Code, Codex, Cursor, etc.) that orchestrate **specialist agents**
|
|
13
13
|
in fresh contexts to do the work.
|
|
14
14
|
|
|
15
|
+
Version 1.0.0 is the public adoption freeze: the command, agent, workflow,
|
|
16
|
+
schema, artifact, and native Pillars context surfaces are stable while real
|
|
17
|
+
projects shape the next release train.
|
|
18
|
+
|
|
15
19
|
It fuses four disciplines into one unified workflow:
|
|
16
20
|
|
|
17
21
|
- **Native project context** - every Godpowers project is a Pillars project:
|
|
@@ -286,6 +290,7 @@ Pi. T3 Code inherits from the underlying agent (Codex / Claude / OpenCode).
|
|
|
286
290
|
- [Concepts](docs/concepts.md)
|
|
287
291
|
- [Command reference (all 105 skills + 39 agents)](docs/reference.md)
|
|
288
292
|
- [Roadmap](docs/ROADMAP.md)
|
|
293
|
+
- [1.0 Release Notes](RELEASE.md)
|
|
289
294
|
- [Changelog](CHANGELOG.md)
|
|
290
295
|
- [Inspiration](INSPIRATION.md)
|
|
291
296
|
|
package/RELEASE.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Godpowers 1.0.0 Release
|
|
2
|
+
|
|
3
|
+
Date: 2026-05-14
|
|
4
|
+
|
|
5
|
+
Godpowers 1.0.0 is the public adoption freeze. The goal of this release is not
|
|
6
|
+
to add another layer of capability, but to stop the ground from moving so real
|
|
7
|
+
projects can try the system, report friction, and shape the next cycle from
|
|
8
|
+
evidence.
|
|
9
|
+
|
|
10
|
+
## What is stable
|
|
11
|
+
|
|
12
|
+
- 105 slash commands
|
|
13
|
+
- 39 specialist agents
|
|
14
|
+
- 13 executable workflows
|
|
15
|
+
- 36 intent recipes
|
|
16
|
+
- 15-runtime installer
|
|
17
|
+
- Native Pillars project context through `AGENTS.md` and `agents/*.md`
|
|
18
|
+
- `.godpowers/` workflow state and artifact layout
|
|
19
|
+
- Core schemas: intent, state, events, workflow, routing, recipes, extension
|
|
20
|
+
manifests
|
|
21
|
+
- Extension pack compatibility range for the 1.x line
|
|
22
|
+
|
|
23
|
+
## What 1.0 means
|
|
24
|
+
|
|
25
|
+
Godpowers is the product users invoke. Pillars is the native project context
|
|
26
|
+
layer Godpowers installs, reads, and keeps current.
|
|
27
|
+
|
|
28
|
+
New projects get Godpowers-branded `AGENTS.md` protocol text, always-loaded
|
|
29
|
+
`agents/context.md` and `agents/repo.md`, and routed pillar files for stack,
|
|
30
|
+
architecture, data, API, UI, auth, quality, deploy, and observe concerns.
|
|
31
|
+
|
|
32
|
+
Existing `.godpowers` projects are Pillar-ized on resume or sync. Durable
|
|
33
|
+
signals from PRD, architecture, stack, roadmap, build, deploy, observe, harden,
|
|
34
|
+
design, and product artifacts are linked back into relevant pillars.
|
|
35
|
+
|
|
36
|
+
## Freeze policy
|
|
37
|
+
|
|
38
|
+
During the adoption freeze, do not add new command families, change schema
|
|
39
|
+
formats, or rename public artifacts without evidence from real use.
|
|
40
|
+
|
|
41
|
+
Allowed changes:
|
|
42
|
+
|
|
43
|
+
- Critical bug fixes
|
|
44
|
+
- Documentation clarity
|
|
45
|
+
- Test coverage for frozen behavior
|
|
46
|
+
- Compatibility fixes for supported AI coding tools
|
|
47
|
+
- Small fixes that make existing 1.0 behavior work as documented
|
|
48
|
+
|
|
49
|
+
Deferred changes:
|
|
50
|
+
|
|
51
|
+
- New lifecycle phases
|
|
52
|
+
- New schema versions
|
|
53
|
+
- Pillars format changes
|
|
54
|
+
- Major routing semantics
|
|
55
|
+
- Large extension API changes
|
|
56
|
+
|
|
57
|
+
## Adoption ask
|
|
58
|
+
|
|
59
|
+
Use Godpowers on real projects and report what breaks, what feels too heavy,
|
|
60
|
+
what feels magical, and what needs sharper defaults. The next release train
|
|
61
|
+
should be shaped by those reports rather than by more speculative surface area.
|
package/lib/pillars.js
CHANGED
|
@@ -375,9 +375,10 @@ function dedupeMissing(missing) {
|
|
|
375
375
|
|
|
376
376
|
function buildProtocolContent(exclusions = []) {
|
|
377
377
|
const lines = [];
|
|
378
|
-
lines.push('#
|
|
378
|
+
lines.push('# Godpowers Project Context');
|
|
379
379
|
lines.push('');
|
|
380
|
-
lines.push('This project
|
|
380
|
+
lines.push('This is a Godpowers project. Godpowers uses the Pillars standard as its native project context layer.');
|
|
381
|
+
lines.push('Coding agents read project context from `./agents/*.md` before changing code, while `.godpowers/` remains the Godpowers workflow state and artifact layer.');
|
|
381
382
|
lines.push('');
|
|
382
383
|
lines.push('## At the start of any task');
|
|
383
384
|
lines.push('');
|
|
@@ -516,6 +517,9 @@ function pillarStub(name, meta, opts = {}) {
|
|
|
516
517
|
lines.push('## Context');
|
|
517
518
|
lines.push('');
|
|
518
519
|
lines.push('(stub) Fill with facts an agent cannot reliably infer from code alone.');
|
|
520
|
+
for (const line of opts.context || []) {
|
|
521
|
+
lines.push(`- ${sanitizeSignal(line)}`);
|
|
522
|
+
}
|
|
519
523
|
lines.push('');
|
|
520
524
|
lines.push('## Decisions');
|
|
521
525
|
lines.push('');
|
|
@@ -559,7 +563,9 @@ function init(projectRoot, opts = {}) {
|
|
|
559
563
|
writeFenced(agentsFile, PILLARS_FENCE_BEGIN, PILLARS_FENCE_END, buildProtocolContent(exclusions));
|
|
560
564
|
|
|
561
565
|
const results = [];
|
|
562
|
-
|
|
566
|
+
const context = [];
|
|
567
|
+
if (opts.projectName) context.push(`[HYPOTHESIS] Project name: ${opts.projectName}`);
|
|
568
|
+
results.push(ensurePillar(projectRoot, 'context', ALWAYS_PILLARS.context, { always: true, context }));
|
|
563
569
|
results.push(ensurePillar(projectRoot, 'repo', ALWAYS_PILLARS.repo, { always: true }));
|
|
564
570
|
|
|
565
571
|
const coreNames = opts.corePillars || Object.keys(CORE_PILLARS);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "godpowers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "AI-powered development system: 105 slash commands and 39 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.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"godpowers": "./bin/install.js"
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"lib/",
|
|
73
73
|
"extensions/",
|
|
74
74
|
"INSPIRATION.md",
|
|
75
|
+
"RELEASE.md",
|
|
75
76
|
"SKILL.md",
|
|
76
77
|
"AGENTS.md",
|
|
77
78
|
"CHANGELOG.md",
|
package/skills/god-doctor.md
CHANGED
|
@@ -48,7 +48,7 @@ GODPOWERS DOCTOR
|
|
|
48
48
|
Install: claude (~/.claude/)
|
|
49
49
|
[OK] 105 skills installed
|
|
50
50
|
[OK] 39 agents installed
|
|
51
|
-
[OK] VERSION matches (0.
|
|
51
|
+
[OK] VERSION matches (1.0.0)
|
|
52
52
|
[WARN] routing/god-doctor.yaml exists but skill file did not until now
|
|
53
53
|
|
|
54
54
|
Project: /Users/.../my-project/.godpowers/
|
package/skills/god-version.md
CHANGED
|
@@ -14,7 +14,7 @@ Print version and a short capability summary.
|
|
|
14
14
|
## Output
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
Godpowers
|
|
17
|
+
Godpowers v1.0.0
|
|
18
18
|
Install: /Users/.../.claude/ (matches package.json)
|
|
19
19
|
Surface: 105 skills, 39 agents, 13 workflows, 36 recipes
|
|
20
20
|
Schema: intent.v1, state.v1, events.v1, workflow.v1, routing.v1, recipe.v1
|