@ritualai/cli 0.7.5 → 0.7.6
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/package.json +1 -1
- package/skills/claude-code/ritual/manifest.json +57 -0
- package/skills/claude-code/ritual/references/build-flow.md +174 -105
- package/skills/claude-code/ritual/references/cli-output-contract.md +89 -0
- package/skills/claude-code/ritual/references/context-pulse-flow.md +1 -1
- package/skills/claude-code/ritual/references/lineage-flow.md +7 -6
- package/skills/claude-code/ritual/references/resume-flow.md +4 -4
- package/skills/codex/ritual/manifest.json +57 -0
- package/skills/codex/ritual/references/build-flow.md +174 -105
- package/skills/codex/ritual/references/cli-output-contract.md +89 -0
- package/skills/codex/ritual/references/context-pulse-flow.md +1 -1
- package/skills/codex/ritual/references/lineage-flow.md +7 -6
- package/skills/codex/ritual/references/resume-flow.md +4 -4
- package/skills/cursor/ritual/manifest.json +57 -0
- package/skills/cursor/ritual/references/build-flow.md +174 -105
- package/skills/cursor/ritual/references/cli-output-contract.md +89 -0
- package/skills/cursor/ritual/references/context-pulse-flow.md +1 -1
- package/skills/cursor/ritual/references/lineage-flow.md +7 -6
- package/skills/cursor/ritual/references/resume-flow.md +4 -4
- package/skills/gemini/ritual/manifest.json +57 -0
- package/skills/gemini/ritual/references/build-flow.md +174 -105
- package/skills/gemini/ritual/references/cli-output-contract.md +89 -0
- package/skills/gemini/ritual/references/context-pulse-flow.md +1 -1
- package/skills/gemini/ritual/references/lineage-flow.md +7 -6
- package/skills/gemini/ritual/references/resume-flow.md +4 -4
- package/skills/kiro/ritual/manifest.json +57 -0
- package/skills/kiro/ritual/references/build-flow.md +174 -105
- package/skills/kiro/ritual/references/cli-output-contract.md +89 -0
- package/skills/kiro/ritual/references/context-pulse-flow.md +1 -1
- package/skills/kiro/ritual/references/lineage-flow.md +7 -6
- package/skills/kiro/ritual/references/resume-flow.md +4 -4
- package/skills/vscode/ritual/manifest.json +57 -0
- package/skills/vscode/ritual/references/build-flow.md +174 -105
- package/skills/vscode/ritual/references/cli-output-contract.md +89 -0
- package/skills/vscode/ritual/references/context-pulse-flow.md +1 -1
- package/skills/vscode/ritual/references/lineage-flow.md +7 -6
- package/skills/vscode/ritual/references/resume-flow.md +4 -4
|
@@ -23,7 +23,7 @@ Same as `/ritual build` Step 1. Project-pinned workspace from `.ritual/config.js
|
|
|
23
23
|
|
|
24
24
|
If the workspace has **zero explorations**: tell the user politely and pivot.
|
|
25
25
|
|
|
26
|
-
> No in-flight explorations in this workspace yet.
|
|
26
|
+
> No in-flight explorations in this workspace yet. Start a new Ritual build with `/ritual build <your problem>`.
|
|
27
27
|
|
|
28
28
|
End the flow here. Don't bounce them into `/ritual build` automatically — explicit user intent beats implicit handoff.
|
|
29
29
|
|
|
@@ -52,7 +52,7 @@ If there are multiple plausible targets, group by state badge and show:
|
|
|
52
52
|
> - **{name}** — {…}
|
|
53
53
|
> *…*
|
|
54
54
|
>
|
|
55
|
-
> **✅ ready
|
|
55
|
+
> **✅ ready for build brief** (1)
|
|
56
56
|
> - **{name}** — {…}
|
|
57
57
|
> *Last touched {N} days ago. Next: generate the build brief.*
|
|
58
58
|
>
|
|
@@ -64,9 +64,9 @@ State badge → user-facing label + suggested next step (same table as `/ritual
|
|
|
64
64
|
|---|---|---|---|
|
|
65
65
|
| 📍 | `in_progress` | "still in discovery" | Continue discovery |
|
|
66
66
|
| 💬 | `awaiting_admin` | "waiting on admin to accept recommendations" | Admin review |
|
|
67
|
-
| ✅ | `ready` | "ready
|
|
67
|
+
| ✅ | `ready` | "ready for build brief" | Generate the build brief |
|
|
68
68
|
| 🛠 | `in_flight` | "implementation in progress" | Refresh the build brief on remaining work |
|
|
69
|
-
| ✓ | `done` | "
|
|
69
|
+
| ✓ | `done` | "shipped with follow-ups" if open deferrals exist; otherwise "shipped context" | Address follow-ups or use `/ritual lineage` on touched files. Hide fully complete shipped work by default. |
|
|
70
70
|
| ⚠ | `implemented_ahead` | "code shipped before admin acceptance" | Surface to user, ask admin to reconcile |
|
|
71
71
|
|
|
72
72
|
Silence on no-data (CLI Tenet #6): if a state bucket is empty, don't render it. Don't print "**🛠 implementation in progress** (0)".
|