pi-gauntlet 4.2.1 → 4.2.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +14 -4
  3. package/package.json +12 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## v4.2.3 - 2026-07-05
4
+
5
+ Branding, funding, and gallery preview. No behavior change.
6
+
7
+ - **Logo + pi.dev gallery preview.** Repo-root `pi-gauntlet.png` (640x640), shown in the README and wired as `pi.image`.
8
+ - **Buy Me a Coffee funding.** `funding` in `package.json`, `.github/FUNDING.yml`, and a README badge.
9
+ - **`author` field** added to `package.json` (was missing).
10
+ - Added `subagents`, `tdd`, `code-review` keywords.
11
+ - README reframed product-first; obra/superpowers + coctostan attribution kept as credit (copyright preserved in LICENSE).
12
+
13
+ ## v4.2.2 - 2026-07-04
14
+
15
+ Hardens the `release-notes` job so it is byte-identical across all four pi repos (pi-gauntlet, pi-cohort, pi-condense, pi-quiver).
16
+
17
+ - **Version-matching CHANGELOG extraction.** The `release-notes` job now selects the section matching the pushed tag rather than the first `##` heading, skips any `## [Unreleased]` block, and fails the job (rather than publishing empty notes) when no section matches. The awk boundary `([^0-9.]|$)` prevents substring collisions (e.g. `3.0.1` vs `3.0.10`). Behaviorally unchanged for pi-gauntlet (its top section is always the released version); required for repos that keep a permanent `[Unreleased]` heading.
18
+
3
19
  ## v4.2.1 - 2026-07-04
4
20
 
5
21
  Each tagged release now gets GitHub Release notes automatically, sourced from the
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/jjuraszek/pi-gauntlet/main/pi-gauntlet.png" alt="pi-gauntlet" width="180">
3
+ </p>
4
+
1
5
  # pi-gauntlet
2
6
 
3
- A workflow library for the [pi coding agent](https://github.com/badlogic/pi-mono): opinionated skills, ready-to-use subagent personas, and three runtime extensions that turn "run the agent in a loop" into a gated pipeline from idea to merge.
7
+ [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-donate-yellow?logo=buymeacoffee&logoColor=black)](https://buymeacoffee.com/jjurasszek)
8
+
9
+ A workflow library for the [pi coding agent](https://github.com/earendil-works/pi): opinionated skills, ready-to-use subagent personas, and three runtime extensions that turn "run the agent in a loop" into a gated pipeline from idea to merge.
4
10
 
5
11
  ## Why
6
12
 
@@ -12,7 +18,7 @@ pi-gauntlet is the scaffolding that makes the loop hold: **brainstorm → plan
12
18
 
13
19
  The spec and docs it produces get committed to the repo, so the next change starts from ground truth, not a blank slate. The loop is the easy 5%; the gated system around it is the whole job - that's what this is.
14
20
 
15
- A diverged reinterpretation of [obra/superpowers](https://github.com/obra/superpowers) (Claude Code), by way of [coctostan/pi-superpowers-plus](https://github.com/coctostan/pi-superpowers-plus), rebuilt for pi with enforced gates, a spec council, conformance review, and parallel execution waves. See [Lineage](#lineage) for what changed.
21
+ Rebuilt for pi with enforced gates, a spec council, conformance review, and parallel execution waves. Inspired by [obra/superpowers](https://github.com/obra/superpowers) (Claude Code), by way of [coctostan/pi-superpowers-plus](https://github.com/coctostan/pi-superpowers-plus); see [Lineage](#lineage).
16
22
 
17
23
  ## The workflow
18
24
 
@@ -63,7 +69,7 @@ Spec, plan, and implementation are all developed in the **same worktree**. The s
63
69
 
64
70
  ## Requirements
65
71
 
66
- - [pi-coding-agent](https://github.com/badlogic/pi-mono) ≥ 0.1.0
72
+ - [pi-coding-agent](https://github.com/earendil-works/pi) ≥ 0.1.0
67
73
  - [pi-cohort](https://github.com/jjuraszek/pi-cohort) ≥ 1.4.5 — required peer package. Skills that dispatch agents (`requesting-code-review`, `subagent-driven-development`, `dispatching-parallel-agents`, `writing-plans`, `writing-skills`) call `subagent({})`, which is provided by pi-cohort. pi-gauntlet does not vendor the dispatch tool; without pi-cohort those skills have nothing to call.
68
74
 
69
75
  Both packages must be listed in your `.pi/settings.json#packages` array (pi adds them automatically when you `pi install`). pi-gauntlet and pi-cohort are versioned independently but release together whenever dispatch semantics change — pin compatible versions of both.
@@ -281,7 +287,11 @@ See [`CHANGELOG.md`](./CHANGELOG.md) for what changed in each release. Semver: m
281
287
 
282
288
  ## Lineage
283
289
 
284
- pi-gauntlet began as a port of [obra/superpowers](https://github.com/obra/superpowers) (MIT, Copyright (c) 2025 Jesse Vincent), by way of [coctostan/pi-superpowers-plus](https://github.com/coctostan/pi-superpowers-plus), and has since diverged into its own thing. It drops upstream's memory/journal system and its sequential-only execution model, and adds a multi-model spec council, a closing-loop conformance-review gate, file- and resource-disjoint parallel execution waves, and enforced phase gates (brainstorm, verify, and ship are guarded at runtime, not merely suggested). The skill methodology still owes its shape to obra's work; the runtime, the gates, and the agent roster are pi-gauntlet's own.
290
+ pi-gauntlet's skill methodology was inspired by [obra/superpowers](https://github.com/obra/superpowers) (MIT, Copyright (c) 2025 Jesse Vincent), by way of [coctostan/pi-superpowers-plus](https://github.com/coctostan/pi-superpowers-plus). The pi runtime integration, enforced phase gates, multi-model spec council, conformance-review gate, and parallel execution waves are pi-gauntlet's own. Thanks to the upstream authors; their copyright is preserved in [`LICENSE`](./LICENSE).
291
+
292
+ ## Support
293
+
294
+ [Buy me a coffee](https://buymeacoffee.com/jjurasszek) if this saves you time.
285
295
 
286
296
  ## License
287
297
 
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "pi-gauntlet",
3
- "version": "4.2.1",
3
+ "version": "4.2.3",
4
4
  "description": "Opinionated, gated workflow skills, subagent personas, and runtime extensions for the pi coding agent.",
5
+ "author": "Jacek Juraszek",
5
6
  "type": "module",
6
7
  "license": "MIT",
7
8
  "repository": {
@@ -18,7 +19,10 @@
18
19
  "pi-coding-agent",
19
20
  "skills",
20
21
  "agents",
21
- "workflow"
22
+ "subagents",
23
+ "workflow",
24
+ "tdd",
25
+ "code-review"
22
26
  ],
23
27
  "files": [
24
28
  "skills",
@@ -33,7 +37,12 @@
33
37
  ],
34
38
  "extensions": [
35
39
  "./extensions"
36
- ]
40
+ ],
41
+ "image": "https://raw.githubusercontent.com/jjuraszek/pi-gauntlet/main/pi-gauntlet.png"
42
+ },
43
+ "funding": {
44
+ "type": "buymeacoffee",
45
+ "url": "https://buymeacoffee.com/jjurasszek"
37
46
  },
38
47
  "scripts": {
39
48
  "postinstall": "node ./bin/install-agents.mjs",