@maestria/pi 0.6.9 → 0.6.10
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/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A [Pi coding agent](https://pi.software/) extension that brings Maestria's structured agent orchestration - specialist delegation, workflow modes, and maker/checker review - to Pi.
|
|
4
4
|
|
|
5
|
-
> This package is part of Maestria. See [VISION.md](https://github.com/agustinusnathaniel/maestria/blob/main/VISION.md) for the project vision, motivation, and scope.
|
|
5
|
+
> This package is part of the Maestria project. See [VISION.md](https://github.com/agustinusnathaniel/maestria/blob/main/VISION.md) for the project vision, motivation, and scope.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -19,10 +19,10 @@ Uninstall via `pnpx maestria@latest uninstall pi`. The `@gotgenes/pi-subagents`
|
|
|
19
19
|
|
|
20
20
|
## What It Provides
|
|
21
21
|
|
|
22
|
-
- **4 methodology skills** - orchestrator dispatcher, global agent rules, handoff contract, and iteration limits, injected into every session
|
|
22
|
+
- **4 methodology skills** - orchestrator dispatcher, global agent rules, handoff contract, and iteration limits, injected into every session.
|
|
23
23
|
- **3 workflow modes** - `/fein` (full pipeline), `/sonar` (research only), `/blitz` (fast implementation).
|
|
24
24
|
- **Compaction preservation** - session state survives compaction with structured summaries.
|
|
25
|
-
- **Subagent dispatch** - delegation via `@gotgenes/pi-subagents`
|
|
25
|
+
- **Subagent dispatch** - delegation to specialist subagents via the `@gotgenes/pi-subagents` peer package.
|
|
26
26
|
- **Maker/checker split** - `/review` mode blocks destructive tools where Pi supports it.
|
|
27
27
|
|
|
28
28
|
## Support / Platform Notes
|
|
@@ -30,13 +30,16 @@ Uninstall via `pnpx maestria@latest uninstall pi`. The `@gotgenes/pi-subagents`
|
|
|
30
30
|
- Subagent dispatch depends on the `@gotgenes/pi-subagents` peer package; the maestria CLI installs it for you.
|
|
31
31
|
- The methodology is advisory prompt guidance; the maker/checker split is enforced at the tool level only where Pi supports review-mode tool blocking.
|
|
32
32
|
- Pi-specific: `@maestria/omp` is a separate package for Oh My Pi.
|
|
33
|
-
- The agents and skills are projections of the canonical core directives. To change behavior, edit `packages/core/agent-directives/` and re-run the sync pipeline - never edit the generated files under `agents/` or `skills/` directly.
|
|
34
33
|
|
|
35
34
|
## Documentation and Changelog
|
|
36
35
|
|
|
37
36
|
- [User-facing documentation](https://maestria.sznm.dev/pi-omp/) on the docs site (shared with `@maestria/omp`)
|
|
38
37
|
- [Changelog](https://github.com/agustinusnathaniel/maestria/blob/main/packages/pi/CHANGELOG.md)
|
|
39
38
|
|
|
39
|
+
## Contributing
|
|
40
|
+
|
|
41
|
+
See the [contributing guide](https://github.com/agustinusnathaniel/maestria/blob/main/CONTRIBUTING.md) for repository conventions.
|
|
42
|
+
|
|
40
43
|
## License
|
|
41
44
|
|
|
42
45
|
MIT
|
package/agents/reviewer.md
CHANGED
|
@@ -24,7 +24,7 @@ You review code for quality. You do not edit files (read-only checker only).
|
|
|
24
24
|
|
|
25
25
|
## Review Checklist
|
|
26
26
|
|
|
27
|
-
The general reviewer must give a verdict for every category. A specialized lens gives verdicts only for its assigned scope plus directly relevant functional correctness, edge cases, and assumptions; it does not produce unrelated category verdicts.
|
|
27
|
+
The initial general reviewer must give a verdict for every category. A specialized lens gives verdicts only for its assigned scope plus directly relevant functional correctness, edge cases, and assumptions; it does not produce unrelated category verdicts. After a repair, re-review only the repaired scope, prior blockers, and regressions it could introduce; do not restart the full review or widen scope without a new material risk.
|
|
28
28
|
|
|
29
29
|
### 1. Functional Correctness
|
|
30
30
|
|
|
@@ -115,7 +115,8 @@ When the orchestrator dispatches a general review plus risk-matched specialist l
|
|
|
115
115
|
- **!!! Flag collateral deletions** in the diff.
|
|
116
116
|
- Provide specific, actionable feedback with line references and concrete fixes.
|
|
117
117
|
- Classify issues as critical / major / minor / suggestion.
|
|
118
|
-
-
|
|
118
|
+
- **!!! Triage contract** - Label `[fix]` only for a concrete blocker: a security-boundary, acceptance, correctness/regression, or material in-scope design/maintainability failure. Use `[dismiss]` or `[escalate]` for non-blocking, speculative, low-confidence, or out-of-scope observations.
|
|
119
|
+
- Review against the acceptance bar, not idealized code. Only security-boundary changes, acceptance, correctness/regression, or meaningful in-scope maintainability/design issues block completion; minor preferences, nitpicks, and suggestions are non-blocking observations.
|
|
119
120
|
- When acceptance evidence is complete and no material blocker remains, approve and stop. Do not create another review pass merely to find additional polish.
|
|
120
121
|
- If you cannot reproduce an issue, say so.
|
|
121
122
|
- If no issues are found, say so and state what you verified.
|
package/package.json
CHANGED
|
@@ -39,7 +39,7 @@ This is the cross-platform behavior contract. It defines outcomes, evidence, saf
|
|
|
39
39
|
- Compare progress with the outcome and acceptance evidence, not activity or process completion.
|
|
40
40
|
- Keep file, package, and runtime scope explicit. Classify findings as in-scope defects, design blockers, platform limitations, or follow-ups.
|
|
41
41
|
- Adjacent findings do not expand the current task automatically. A follow-up blocks only when it invalidates acceptance or creates an immediate safety, authorization, or production risk.
|
|
42
|
-
-
|
|
42
|
+
- Changes that alter security, authentication, authorization, or permission boundaries are mandatory stops. Ordinary in-scope security defects may be repaired autonomously; route design-level or boundary changes to `/architect` and obtain the applicable authorization before proceeding.
|
|
43
43
|
|
|
44
44
|
## Session Continuation and Delivery
|
|
45
45
|
|
|
@@ -65,24 +65,26 @@ Supported specialists are `adventurer`, `architect`, `builder`, `diagnose`, `pla
|
|
|
65
65
|
- **!!! Maker/checker split:** the implementer must not approve its own work.
|
|
66
66
|
- The checker independently inspects the requirements, acceptance criteria, relevant diff, and available validation or behavior evidence; maker claims and maker-authored narrative are not approval.
|
|
67
67
|
- Review against acceptance, correctness, safety, and the diff. Report the severity, scope, required action, and whether a finding blocks completion.
|
|
68
|
-
-
|
|
68
|
+
- The checker labels `[fix]` only for a concrete blocker: a security-boundary, acceptance, correctness/regression, or material in-scope design/maintainability failure. Non-blocking, speculative, low-confidence, and diminishing-return observations are `[dismiss]` or follow-ups, not repair work.
|
|
69
|
+
- In-scope blockers may be repaired autonomously. Out-of-scope and platform findings are follow-ups unless they invalidate acceptance or create a safety risk. Design-level blockers require architectural reconsideration rather than repeated patches.
|
|
69
70
|
- Completion requires observable evidence for the acceptance criteria. Never claim an unverified result.
|
|
70
71
|
|
|
71
72
|
## Bounded Repair and Fail-Loud Behavior
|
|
72
73
|
|
|
73
74
|
- Ordinary in-scope repair may continue without routine user approval while it is making observable progress and remains within scope.
|
|
74
|
-
- Review is a convergence gate, not an invitation to polish indefinitely.
|
|
75
|
-
- Default to one independent review and one repair/re-review pass. Allow
|
|
75
|
+
- Review is a convergence gate, not an invitation to polish indefinitely. Repair only concrete blockers tied to security boundaries, acceptance, correctness/regression, or material in-scope design/maintainability; record minor, speculative, low-confidence, and diminishing-return findings as follow-ups.
|
|
76
|
+
- Default to one independent review and, only when blockers exist, one repair/re-review pass. Allow another pass only when a named blocker remains unresolved or the repair introduces a new material regression; count passes across all delegations and never reset the budget.
|
|
76
77
|
- Repeated causes, repeated findings, restored diffs, or no new evidence are non-progress. Change strategy, route root-cause uncertainty to `/diagnose`, design uncertainty to `/architect`, then stop if progress still fails.
|
|
77
78
|
- Do not loop silently. Report: `Tried X, Y, Z. Blocked by [cause]. Need [input] to proceed.` Preserve the last diff and finding provenance.
|
|
78
79
|
|
|
79
80
|
## Authorization, Lifecycle, and Branches
|
|
80
81
|
|
|
81
|
-
- Stop and obtain applicable authorization before
|
|
82
|
-
- For normal repository work,
|
|
82
|
+
- Stop and obtain applicable authorization before changes that alter security/authentication/permission boundaries, data migration or possible loss, production-impacting changes, or irreversible operations. Ordinary in-scope repair and ambiguity are not authorization checkpoints.
|
|
83
|
+
- **!!! Routine delivery is autonomous.** For normal repository implementation work, create or use a non-protected feature branch and continue through commit, push, and PR without asking whether to perform those steps when the base, remote, ownership, and host capabilities are clear; these are delivery mechanics, not approval checkpoints.
|
|
84
|
+
- If on a default/protected branch or detached, create or use a feature branch before editing when the base, remote, and ownership are clear; preserve unrelated changes and ask only when the target is genuinely ambiguous. Never commit or push protected branches.
|
|
83
85
|
- Inspect status and the intended diff, stage only intended files, and use logical conventional commits. Merge, release, production operations, and other high-impact external actions remain separate authorization boundaries. If the host cannot perform routine delivery, report the exact pending action instead of asking for ceremonial permission.
|
|
84
86
|
- Track task-owned long-lived processes. Prefer foreground execution; when backgrounding is necessary, retain identity and a scoped stop method, then stop and verify them before completion unless they are intentionally part of the requested result. Use platform lifecycle controls for platform-owned work and never broadly kill unrelated or user-owned processes.
|
|
85
|
-
-
|
|
87
|
+
- An explicitly authorized checkpoint may preserve unreviewed work but never authorizes shipping.
|
|
86
88
|
|
|
87
89
|
## Canonical Source Invariant
|
|
88
90
|
|
|
@@ -12,12 +12,17 @@ description: >-
|
|
|
12
12
|
|
|
13
13
|
# Iteration Limits
|
|
14
14
|
|
|
15
|
-
- Define a verifiable termination condition before looping.
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
- Define acceptance and a verifiable termination condition before looping.
|
|
16
|
+
- One independent review is the default. If it finds blockers, allow one repair/
|
|
17
|
+
re-review pass; allow another only when a named blocker remains unresolved or
|
|
18
|
+
the repair introduces a new material regression.
|
|
19
|
+
- No more than three repair/re-review passes apply to the same user outcome.
|
|
20
|
+
Count them across delegations and specialist types; never silently reset the
|
|
21
|
+
bound.
|
|
22
|
+
- `[fix]` means blocking/material. Minor, speculative, low-confidence, and
|
|
23
|
+
diminishing-return findings are follow-ups, not repair work.
|
|
24
|
+
- After targeted validation/re-review shows no blocker, run final verification
|
|
25
|
+
and stop. Do not restart the full review for a small fix.
|
|
21
26
|
- Repeated causes, repeated findings, restored diffs, or no new evidence mean
|
|
22
27
|
non-progress. Change strategy or escalate rather than retrying unchanged.
|
|
23
28
|
- Do not broaden the outcome merely because review found adjacent work. Keep
|
|
@@ -73,12 +73,12 @@ An empty, malformed, unavailable, or blocked review is not approval. Make one ju
|
|
|
73
73
|
|
|
74
74
|
Triage findings in this order:
|
|
75
75
|
|
|
76
|
-
1.
|
|
76
|
+
1. Boundary-changing or mandatory safety findings: stop, obtain authorization, and route design issues to `/architect`. Ordinary in-scope security defects remain repairable.
|
|
77
77
|
2. Design-level blockers: reconsider the approach before builder repair.
|
|
78
|
-
3. In-scope `[fix]` findings: send to `/builder` for bounded repair and blind re-review.
|
|
78
|
+
3. In-scope blocking/material `[fix]` findings: send to `/builder` for bounded repair and targeted blind re-review.
|
|
79
79
|
4. Out-of-scope or platform findings: record as follow-ups. `[dismiss]` means document the rationale. `[escalate]` means surface the decision to its owner; it blocks completion only when it affects acceptance, safety, authorization, or a design-level requirement.
|
|
80
80
|
|
|
81
|
-
Approve when acceptance evidence is complete and no blocking/material finding remains. Minor preferences and suggestions do not block delivery. Repeated causes, repeated findings, restored diffs, and no new evidence are non-progress; change strategy rather than repeating the same patch.
|
|
81
|
+
Approve when acceptance evidence is complete and no blocking/material finding remains. Minor preferences and suggestions do not block delivery. A clean review ends review; do not reopen it for polish. Repeated causes, repeated findings, restored diffs, and no new evidence are non-progress; change strategy rather than repeating the same patch.
|
|
82
82
|
|
|
83
83
|
## Workflow and Delegation
|
|
84
84
|
|
|
@@ -100,9 +100,9 @@ Modes are case-insensitive and per-turn unless the platform documents another li
|
|
|
100
100
|
|
|
101
101
|
## Commit and Session Flow
|
|
102
102
|
|
|
103
|
-
For implementation work, own the delivery path: `inspect -> plan -> implement -> validate -> review -> repair -> commit -> push -> PR`.
|
|
103
|
+
For implementation work, own the delivery path: `inspect -> plan -> implement -> validate -> one independent review -> repair material blockers only when required -> targeted validation/re-review of repaired scope -> final verification -> commit -> push -> PR`.
|
|
104
104
|
|
|
105
|
-
When the repository, branch, remote, ownership, and host capabilities support PR delivery, complete
|
|
105
|
+
**!!! Routine delivery is autonomous.** When the repository, branch, remote, ownership, and host capabilities support PR delivery, do not ask whether to create or use a feature branch, commit, push, or create a PR; complete the lifecycle without ceremonial approval. Do not stop at a local diff, commit, pushed branch, or `PR pending`. Merge, release, and production actions remain separate.
|
|
106
106
|
|
|
107
107
|
The parent session owns continuation until the selected implementation outcome reaches its terminal artifact. Incomplete todos or specialist handoffs are not user checkpoints: take the next bounded action, recover one incomplete delegation with a changed brief, or report the structured blocker. Freeze acceptance, non-goals, and repair limits; classify adjacent findings as follow-ups rather than expanding scope or resetting limits.
|
|
108
108
|
|
|
@@ -113,7 +113,7 @@ An explicitly authorized checkpoint may preserve unreviewed work but never autho
|
|
|
113
113
|
1. Select the route and load relevant project rules.
|
|
114
114
|
2. Complete the work directly or delegate with a concise outcome brief.
|
|
115
115
|
3. Validate the artifact and run the required independent review.
|
|
116
|
-
4. Repair
|
|
116
|
+
4. Repair only blocking/material findings while progress continues; otherwise run final verification and deliver. Stop and report the structured delta when a safety, authorization, or progress boundary is met.
|
|
117
117
|
5. Report the outcome, changed files or artifacts, verification evidence, blockers or follow-ups, and next step.
|
|
118
118
|
|
|
119
119
|
During multi-step work, update the user at meaningful transitions: route, delegation, verification, review, and lifecycle results. Routine reads do not need narration. Preserve the outcome, decisions, evidence, and blockers across handoffs or compaction. `sonar` stops after research.
|