continuous-improvement 3.8.0 → 3.9.2

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 (96) hide show
  1. package/.claude-plugin/marketplace.json +2 -14
  2. package/CHANGELOG.md +25 -0
  3. package/LICENSE +21 -21
  4. package/QUICKSTART.md +148 -101
  5. package/README.md +50 -18
  6. package/action.yml +33 -33
  7. package/bin/analyze.sh +161 -161
  8. package/bin/backfill.mjs +19 -19
  9. package/bin/check-doc-runtime-claims.mjs +120 -0
  10. package/bin/generate-plugin-manifests.mjs +2 -0
  11. package/bin/hook-stats.mjs +21 -21
  12. package/bin/install.mjs +51 -44
  13. package/bin/mcp-server.mjs +43 -40
  14. package/bin/refresh-third-party.mjs +416 -416
  15. package/commands/continuous-improvement.md +115 -115
  16. package/commands/dashboard.md +56 -56
  17. package/commands/discipline.md +51 -51
  18. package/commands/proceed-with-the-recommendation.md +62 -62
  19. package/commands/seven-laws.md +16 -16
  20. package/commands/superpowers.md +119 -92
  21. package/commands/workspace-surface-audit.md +77 -77
  22. package/hooks/gateguard.mjs +172 -0
  23. package/hooks/observe.sh +172 -172
  24. package/hooks/session.sh +106 -106
  25. package/hooks/three-section-close.mjs +181 -181
  26. package/instinct-packs/go.json +58 -58
  27. package/instinct-packs/meta.json +16 -16
  28. package/instinct-packs/python.json +58 -58
  29. package/instinct-packs/react.json +58 -58
  30. package/lib/gateguard-state.mjs +85 -0
  31. package/lib/plugin-metadata.mjs +25 -18
  32. package/llms.txt +68 -68
  33. package/package.json +3 -2
  34. package/plugins/beginner.json +1 -1
  35. package/plugins/continuous-improvement/.claude-plugin/marketplace.json +1 -1
  36. package/plugins/continuous-improvement/.claude-plugin/plugin.json +1 -1
  37. package/plugins/continuous-improvement/LICENSE +21 -21
  38. package/plugins/continuous-improvement/README.md +1 -0
  39. package/plugins/continuous-improvement/agents/README.md +120 -0
  40. package/plugins/continuous-improvement/agents/code-reviewer.md +97 -0
  41. package/plugins/continuous-improvement/agents/security-auditor.md +101 -0
  42. package/plugins/continuous-improvement/agents/test-engineer.md +95 -0
  43. package/plugins/continuous-improvement/bin/backfill.mjs +19 -19
  44. package/plugins/continuous-improvement/bin/mcp-server.mjs +43 -40
  45. package/plugins/continuous-improvement/commands/continuous-improvement.md +115 -115
  46. package/plugins/continuous-improvement/commands/dashboard.md +56 -56
  47. package/plugins/continuous-improvement/commands/discipline.md +51 -51
  48. package/plugins/continuous-improvement/commands/proceed-with-the-recommendation.md +62 -62
  49. package/plugins/continuous-improvement/commands/seven-laws.md +16 -16
  50. package/plugins/continuous-improvement/commands/superpowers.md +119 -92
  51. package/plugins/continuous-improvement/commands/workspace-surface-audit.md +77 -77
  52. package/plugins/continuous-improvement/hooks/gateguard.mjs +172 -0
  53. package/plugins/continuous-improvement/hooks/hooks.json +6 -1
  54. package/plugins/continuous-improvement/hooks/observe.sh +172 -172
  55. package/plugins/continuous-improvement/hooks/session.sh +106 -106
  56. package/plugins/continuous-improvement/hooks/three-section-close.mjs +181 -181
  57. package/plugins/continuous-improvement/instinct-packs/go.json +58 -58
  58. package/plugins/continuous-improvement/instinct-packs/meta.json +16 -16
  59. package/plugins/continuous-improvement/instinct-packs/python.json +58 -58
  60. package/plugins/continuous-improvement/instinct-packs/react.json +58 -58
  61. package/plugins/continuous-improvement/lib/plugin-metadata.mjs +25 -18
  62. package/plugins/continuous-improvement/skills/README.md +4 -1
  63. package/plugins/continuous-improvement/skills/deploy-receipt/SKILL.md +47 -0
  64. package/plugins/continuous-improvement/skills/gateguard/SKILL.md +17 -9
  65. package/plugins/continuous-improvement/skills/para-memory-files/SKILL.md +108 -108
  66. package/plugins/continuous-improvement/skills/proceed-with-the-recommendation/SKILL.md +1 -8
  67. package/plugins/continuous-improvement/skills/ralph/SKILL.md +221 -221
  68. package/plugins/continuous-improvement/skills/recovery-classification/SKILL.md +73 -0
  69. package/plugins/continuous-improvement/skills/safety-guard/SKILL.md +76 -76
  70. package/plugins/continuous-improvement/skills/state-reconciliation/SKILL.md +63 -0
  71. package/plugins/continuous-improvement/skills/strategic-compact/SKILL.md +104 -104
  72. package/plugins/continuous-improvement/skills/superpowers/SKILL.md +22 -15
  73. package/plugins/continuous-improvement/skills/tdd-workflow/SKILL.md +411 -411
  74. package/plugins/continuous-improvement/skills/token-budget-advisor/SKILL.md +136 -136
  75. package/plugins/continuous-improvement/skills/verification-loop/SKILL.md +32 -0
  76. package/plugins/continuous-improvement/skills/wild-risa-balance/SKILL.md +191 -191
  77. package/plugins/continuous-improvement/skills/worktree-safety/SKILL.md +66 -0
  78. package/plugins/expert.json +1 -1
  79. package/skills/README.md +79 -79
  80. package/skills/deploy-receipt.md +47 -0
  81. package/skills/gateguard.md +17 -9
  82. package/skills/para-memory-files.md +108 -108
  83. package/skills/proceed-with-the-recommendation.md +1 -8
  84. package/skills/ralph.md +221 -221
  85. package/skills/recovery-classification.md +73 -0
  86. package/skills/safety-guard.md +76 -76
  87. package/skills/state-reconciliation.md +63 -0
  88. package/skills/strategic-compact.md +104 -104
  89. package/skills/superpowers.md +22 -15
  90. package/skills/tdd-workflow.md +411 -411
  91. package/skills/token-budget-advisor.md +136 -136
  92. package/skills/verification-loop.md +32 -0
  93. package/skills/wild-risa-balance.md +191 -191
  94. package/skills/worktree-safety.md +66 -0
  95. package/templates/insights-claude-md.md +91 -0
  96. package/templates/verify-ladder.example.json +37 -24
@@ -1,56 +1,56 @@
1
- ---
2
- name: dashboard
3
- description: Visual dashboard showing instinct health, observation stats, and learning progress
4
- ---
5
-
6
- # Instinct Dashboard
7
-
8
- Generate a visual dashboard for this project's continuous-improvement status.
9
-
10
- ## Instructions
11
-
12
- 1. **Find project hash:** Run `git rev-parse --show-toplevel 2>/dev/null`, then SHA-256 first 12 chars
13
- 2. **Read observations:** Count lines in `~/.claude/instincts/<hash>/observations.jsonl`
14
- 3. **Read instincts:** Load all `*.yaml` files from project dir + `global/`
15
- 4. **Read instinct packs:** Check if any packs from `instinct-packs/` have been loaded
16
-
17
- ## Display Format
18
-
19
- ```
20
- ╔══════════════════════════════════════════════════════════════╗
21
- ║ continuous-improvement Dashboard ║
22
- ╠══════════════════════════════════════════════════════════════╣
23
- ║ ║
24
- ║ Project: <name> Level: <CAPTURE|ANALYZE|...> ║
25
- ║ Sessions: ~<obs/10> Mode: <beginner|expert> ║
26
- ║ ║
27
- ║ ┌─ Observations ────────────────────────────────────────┐ ║
28
- ║ │ Total: <n> Unprocessed: <n> Last: <date> │ ║
29
- ║ └───────────────────────────────────────────────────────┘ ║
30
- ║ ║
31
- ║ ┌─ Instincts ───────────────────────────────────────────┐ ║
32
- ║ │ Total: <n> │ ║
33
- ║ │ ████████░░ Auto-apply (0.7+): <n> │ ║
34
- ║ │ █████░░░░░ Suggest (0.5-0.69): <n> │ ║
35
- ║ │ ██░░░░░░░░ Silent (< 0.5): <n> │ ║
36
- ║ │ Global: <n> Project: <n> │ ║
37
- ║ └───────────────────────────────────────────────────────┘ ║
38
- ║ ║
39
- ║ ┌─ Top Instincts ───────────────────────────────────────┐ ║
40
- ║ │ <list top 5 instincts by confidence with bars> │ ║
41
- ║ └───────────────────────────────────────────────────────┘ ║
42
- ║ ║
43
- ║ ┌─ Health ──────────────────────────────────────────────┐ ║
44
- ║ │ Stale (30+ days): <n> Decaying: <n> │ ║
45
- ║ │ Recently reinforced: <n> │ ║
46
- ║ └───────────────────────────────────────────────────────┘ ║
47
- ║ ║
48
- ╚══════════════════════════════════════════════════════════════╝
49
- ```
50
-
51
- ## After Display
52
-
53
- - If stale instincts > 0: suggest reviewing them
54
- - If unprocessed observations > 20: suggest running analysis
55
- - If no instincts exist: explain the auto-leveling timeline
56
- - Show available instinct packs that haven't been loaded yet
1
+ ---
2
+ name: dashboard
3
+ description: Visual dashboard showing instinct health, observation stats, and learning progress
4
+ ---
5
+
6
+ # Instinct Dashboard
7
+
8
+ Generate a visual dashboard for this project's continuous-improvement status.
9
+
10
+ ## Instructions
11
+
12
+ 1. **Find project hash:** Run `git rev-parse --show-toplevel 2>/dev/null`, then SHA-256 first 12 chars
13
+ 2. **Read observations:** Count lines in `~/.claude/instincts/<hash>/observations.jsonl`
14
+ 3. **Read instincts:** Load all `*.yaml` files from project dir + `global/`
15
+ 4. **Read instinct packs:** Check if any packs from `instinct-packs/` have been loaded
16
+
17
+ ## Display Format
18
+
19
+ ```
20
+ ╔══════════════════════════════════════════════════════════════╗
21
+ ║ continuous-improvement Dashboard ║
22
+ ╠══════════════════════════════════════════════════════════════╣
23
+ ║ ║
24
+ ║ Project: <name> Level: <CAPTURE|ANALYZE|...> ║
25
+ ║ Sessions: ~<obs/10> Mode: <beginner|expert> ║
26
+ ║ ║
27
+ ║ ┌─ Observations ────────────────────────────────────────┐ ║
28
+ ║ │ Total: <n> Unprocessed: <n> Last: <date> │ ║
29
+ ║ └───────────────────────────────────────────────────────┘ ║
30
+ ║ ║
31
+ ║ ┌─ Instincts ───────────────────────────────────────────┐ ║
32
+ ║ │ Total: <n> │ ║
33
+ ║ │ ████████░░ Auto-apply (0.7+): <n> │ ║
34
+ ║ │ █████░░░░░ Suggest (0.5-0.69): <n> │ ║
35
+ ║ │ ██░░░░░░░░ Silent (< 0.5): <n> │ ║
36
+ ║ │ Global: <n> Project: <n> │ ║
37
+ ║ └───────────────────────────────────────────────────────┘ ║
38
+ ║ ║
39
+ ║ ┌─ Top Instincts ───────────────────────────────────────┐ ║
40
+ ║ │ <list top 5 instincts by confidence with bars> │ ║
41
+ ║ └───────────────────────────────────────────────────────┘ ║
42
+ ║ ║
43
+ ║ ┌─ Health ──────────────────────────────────────────────┐ ║
44
+ ║ │ Stale (30+ days): <n> Decaying: <n> │ ║
45
+ ║ │ Recently reinforced: <n> │ ║
46
+ ║ └───────────────────────────────────────────────────────┘ ║
47
+ ║ ║
48
+ ╚══════════════════════════════════════════════════════════════╝
49
+ ```
50
+
51
+ ## After Display
52
+
53
+ - If stale instincts > 0: suggest reviewing them
54
+ - If unprocessed observations > 20: suggest running analysis
55
+ - If no instincts exist: explain the auto-leveling timeline
56
+ - Show available instinct packs that haven't been loaded yet
@@ -1,51 +1,51 @@
1
- ---
2
- name: discipline
3
- description: Quick reference card for the 7 Laws of AI Agent Discipline
4
- ---
5
-
6
- # The 7 Laws — Quick Reference
7
-
8
- Print this card and check yourself against each law.
9
-
10
- ## The Laws
11
-
12
- | # | Law | Check | Red Flag |
13
- |---|-----|-------|----------|
14
- | 1 | **Research Before Executing** | Did I search for existing solutions? | "I'll just quickly..." |
15
- | 2 | **Plan Is Sacred** | Did I state WILL / WILL NOT / VERIFY? | "Let me also add..." |
16
- | 3 | **One Thing at a Time** | Am I finishing before starting? | "While I'm here..." |
17
- | 4 | **Verify Before Reporting** | Did I check the ACTUAL output? | "This should work..." |
18
- | 5 | **Reflect After Sessions** | Did I note what worked/failed? | "I'll remember..." |
19
- | 6 | **Iterate One Change** | Am I changing one thing at a time? | "And also..." |
20
- | 7 | **Learn From Every Session** | Did I capture this as an instinct? | "Next time I'll..." |
21
-
22
- ## Operator Stakes
23
-
24
- The Laws above are the *how*. These five principles are the *why*: code ships from your account, the incident lands on your pager, the bill hits your budget. Each one pairs with the Law that prevents it from going wrong.
25
-
26
- | # | Principle | Vibe coder | Engineer | Law |
27
- |---|-----------|------------|----------|-----|
28
- | 1 | **Ownership** | Ships auth, moves on | Adds rate limits, audit logs, password-reset flow, incident runbook before shipping | 4 |
29
- | 2 | **Reliability over cleverness** | Accepts a clever regex + heavy lib that breaks on ISO 8601 with millis | Picks the boring tested API, writes tests for leap years and DST | 1 |
30
- | 3 | **Systems thinking** | Builds in-memory CSV export, works for 100 dev users, OOMs in prod | Asks row count first, picks paginated background job + S3 link | 2 |
31
- | 4 | **Problem framing** | Builds the websocket chat the ticket asked for | Finds out users wanted faster support replies, not chat | 1 |
32
- | 5 | **Constraints management** | Calls the $0.02/image model on every upload | Does the math, adds client-side validation + caching + cheaper triage model | 2 |
33
-
34
- Code is a liability, not an asset. Speed without these five turns into someone else's incident at 3am — except the someone is you.
35
-
36
- ## The Loop
37
-
38
- ```
39
- Research → Plan → Execute (one thing) → Verify → Reflect → Learn → Iterate
40
- ```
41
-
42
- ## Self-Check
43
-
44
- Before saying "Done", verify ALL:
45
- - [ ] Code runs without errors
46
- - [ ] Output matches expected result
47
- - [ ] I checked the **actual** result (not assumed)
48
- - [ ] Build passes
49
- - [ ] I can explain the change in one sentence
50
-
51
- If you're skipping a step, that's the step you need most.
1
+ ---
2
+ name: discipline
3
+ description: Quick reference card for the 7 Laws of AI Agent Discipline
4
+ ---
5
+
6
+ # The 7 Laws — Quick Reference
7
+
8
+ Print this card and check yourself against each law.
9
+
10
+ ## The Laws
11
+
12
+ | # | Law | Check | Red Flag |
13
+ |---|-----|-------|----------|
14
+ | 1 | **Research Before Executing** | Did I search for existing solutions? | "I'll just quickly..." |
15
+ | 2 | **Plan Is Sacred** | Did I state WILL / WILL NOT / VERIFY? | "Let me also add..." |
16
+ | 3 | **One Thing at a Time** | Am I finishing before starting? | "While I'm here..." |
17
+ | 4 | **Verify Before Reporting** | Did I check the ACTUAL output? | "This should work..." |
18
+ | 5 | **Reflect After Sessions** | Did I note what worked/failed? | "I'll remember..." |
19
+ | 6 | **Iterate One Change** | Am I changing one thing at a time? | "And also..." |
20
+ | 7 | **Learn From Every Session** | Did I capture this as an instinct? | "Next time I'll..." |
21
+
22
+ ## Operator Stakes
23
+
24
+ The Laws above are the *how*. These five principles are the *why*: code ships from your account, the incident lands on your pager, the bill hits your budget. Each one pairs with the Law that prevents it from going wrong.
25
+
26
+ | # | Principle | Vibe coder | Engineer | Law |
27
+ |---|-----------|------------|----------|-----|
28
+ | 1 | **Ownership** | Ships auth, moves on | Adds rate limits, audit logs, password-reset flow, incident runbook before shipping | 4 |
29
+ | 2 | **Reliability over cleverness** | Accepts a clever regex + heavy lib that breaks on ISO 8601 with millis | Picks the boring tested API, writes tests for leap years and DST | 1 |
30
+ | 3 | **Systems thinking** | Builds in-memory CSV export, works for 100 dev users, OOMs in prod | Asks row count first, picks paginated background job + S3 link | 2 |
31
+ | 4 | **Problem framing** | Builds the websocket chat the ticket asked for | Finds out users wanted faster support replies, not chat | 1 |
32
+ | 5 | **Constraints management** | Calls the $0.02/image model on every upload | Does the math, adds client-side validation + caching + cheaper triage model | 2 |
33
+
34
+ Code is a liability, not an asset. Speed without these five turns into someone else's incident at 3am — except the someone is you.
35
+
36
+ ## The Loop
37
+
38
+ ```
39
+ Research → Plan → Execute (one thing) → Verify → Reflect → Learn → Iterate
40
+ ```
41
+
42
+ ## Self-Check
43
+
44
+ Before saying "Done", verify ALL:
45
+ - [ ] Code runs without errors
46
+ - [ ] Output matches expected result
47
+ - [ ] I checked the **actual** result (not assumed)
48
+ - [ ] Build passes
49
+ - [ ] I can explain the change in one sentence
50
+
51
+ If you're skipping a step, that's the step you need most.
@@ -1,62 +1,62 @@
1
- ---
2
- name: proceed-with-the-recommendation
3
- description: "Execute the agent's prior recommendation list under the 7 Laws — walk in order, route per item, verify, reflect. Standalone companion skill with inline fallbacks when other skills are not installed."
4
- ---
5
-
6
- # /proceed-with-the-recommendation
7
-
8
- Walk an agent-generated recommendation list top-to-bottom under the continuous-improvement 7 Laws. Each item is routed to the best specialist skill when available, falls back to concrete inline behavior when it is not.
9
-
10
- Invoke immediately after the agent has offered a numbered list of recommendations, next steps, or suggested actions.
11
-
12
- ## Trigger phrases
13
-
14
- - `/proceed-with-the-recommendation`
15
- - "proceed with your recommendation"
16
- - "do all of it"
17
- - "go ahead with the plan"
18
- - "execute the recommendations"
19
- - "yes do it" / "all of them"
20
-
21
- ## What happens
22
-
23
- 1. **Pre-flight (Law 1)** — restate the recommendation list in original order, tag each `safe` / `caution` / `needs-approval`
24
- 2. **Plan (Law 2)** — inline restatement if ≤3 items, call `superpowers:writing-plans` if larger
25
- 3. **Execute (Law 3)** — route each item to the preferred skill; apply inline fallback if the skill is not installed
26
- 4. **Verify (Law 4)** — smallest check per item, non-transitive (no later item retroactively verifies an earlier one)
27
- 5. **Iterate (Law 6)** — one change → verify → next; never carry a failure forward
28
- 6. **Reflect (Laws 5 + 7)** — end-of-run Reflection block appended to `observations.jsonl`
29
- 7. **Close** — three-section user-facing block: **What has been done → What is next → Recommendation** (tiered tables + one decisive "My recommendation" paragraph + a binary "Want me to: A or B?" closer)
30
-
31
- ## Hard halts (never silently proceed)
32
-
33
- - Any `needs-approval` item: deploy, force-push, DB drop, secret change, shared-state mutation
34
- - Verification failure with non-obvious fix
35
- - Drive-by temptation outside the original list
36
- - Context budget above 80%
37
-
38
- ## Pairs best with
39
-
40
- | Preferred skill | Used for |
41
- |---|---|
42
- | `workspace-surface-audit` | Law 1 pre-flight when the list touches unknown surface area |
43
- | `superpowers:writing-plans` | Plan breakdown when the list >3 items or >150 LOC |
44
- | `superpowers:*` | Per-item specialist routing (TDD, debugging, review, verification, parallel) |
45
- | `ralph` | Long-running PRD-style autonomous execution |
46
- | `simplify`, `security-review`, `documentation-lookup`, `schedule`, `loop`, `update-config`, `commit-commands:*` | continuous-improvement helpers |
47
-
48
- If none of those are installed, the skill still works — every routing row has an inline fallback and every item still gets a verification step.
49
-
50
- ## Skill file
51
-
52
- Full behavior is defined in [`skills/proceed-with-the-recommendation.md`](../skills/proceed-with-the-recommendation.md).
53
-
54
- ## Install standalone
55
-
56
- ```bash
57
- mkdir -p ~/.claude/skills/proceed-with-the-recommendation
58
- curl -L https://raw.githubusercontent.com/naimkatiman/continuous-improvement/main/skills/proceed-with-the-recommendation.md \
59
- -o ~/.claude/skills/proceed-with-the-recommendation/SKILL.md
60
- ```
61
-
62
- Restart the Claude Code session so the registry picks it up.
1
+ ---
2
+ name: proceed-with-the-recommendation
3
+ description: "Execute the agent's prior recommendation list under the 7 Laws — walk in order, route per item, verify, reflect. Standalone companion skill with inline fallbacks when other skills are not installed."
4
+ ---
5
+
6
+ # /proceed-with-the-recommendation
7
+
8
+ Walk an agent-generated recommendation list top-to-bottom under the continuous-improvement 7 Laws. Each item is routed to the best specialist skill when available, falls back to concrete inline behavior when it is not.
9
+
10
+ Invoke immediately after the agent has offered a numbered list of recommendations, next steps, or suggested actions.
11
+
12
+ ## Trigger phrases
13
+
14
+ - `/proceed-with-the-recommendation`
15
+ - "proceed with your recommendation"
16
+ - "do all of it"
17
+ - "go ahead with the plan"
18
+ - "execute the recommendations"
19
+ - "yes do it" / "all of them"
20
+
21
+ ## What happens
22
+
23
+ 1. **Pre-flight (Law 1)** — restate the recommendation list in original order, tag each `safe` / `caution` / `needs-approval`
24
+ 2. **Plan (Law 2)** — inline restatement if ≤3 items, call `superpowers:writing-plans` if larger
25
+ 3. **Execute (Law 3)** — route each item to the preferred skill; apply inline fallback if the skill is not installed
26
+ 4. **Verify (Law 4)** — smallest check per item, non-transitive (no later item retroactively verifies an earlier one)
27
+ 5. **Iterate (Law 6)** — one change → verify → next; never carry a failure forward
28
+ 6. **Reflect (Laws 5 + 7)** — end-of-run Reflection block appended to `observations.jsonl`
29
+ 7. **Close** — three-section user-facing block: **What has been done → What is next → Recommendation** (tiered tables + one decisive "My recommendation" paragraph + a binary "Want me to: A or B?" closer)
30
+
31
+ ## Hard halts (never silently proceed)
32
+
33
+ - Any `needs-approval` item: deploy, force-push, DB drop, secret change, shared-state mutation
34
+ - Verification failure with non-obvious fix
35
+ - Drive-by temptation outside the original list
36
+ - Context budget above 80%
37
+
38
+ ## Pairs best with
39
+
40
+ | Preferred skill | Used for |
41
+ |---|---|
42
+ | `workspace-surface-audit` | Law 1 pre-flight when the list touches unknown surface area |
43
+ | `superpowers:writing-plans` | Plan breakdown when the list >3 items or >150 LOC |
44
+ | `superpowers:*` | Per-item specialist routing (TDD, debugging, review, verification, parallel) |
45
+ | `ralph` | Long-running PRD-style autonomous execution |
46
+ | `simplify`, `security-review`, `documentation-lookup`, `schedule`, `loop`, `update-config`, `commit-commands:*` | continuous-improvement helpers |
47
+
48
+ If none of those are installed, the skill still works — every routing row has an inline fallback and every item still gets a verification step.
49
+
50
+ ## Skill file
51
+
52
+ Full behavior is defined in [`skills/proceed-with-the-recommendation.md`](../skills/proceed-with-the-recommendation.md).
53
+
54
+ ## Install standalone
55
+
56
+ ```bash
57
+ mkdir -p ~/.claude/skills/proceed-with-the-recommendation
58
+ curl -L https://raw.githubusercontent.com/naimkatiman/continuous-improvement/main/skills/proceed-with-the-recommendation.md \
59
+ -o ~/.claude/skills/proceed-with-the-recommendation/SKILL.md
60
+ ```
61
+
62
+ Restart the Claude Code session so the registry picks it up.
@@ -1,16 +1,16 @@
1
- ---
2
- name: seven-laws
3
- description: "Brand-aligned alias for /continuous-improvement. Reflect on the current session, analyze observations for patterns, and show instinct status under the 7 Laws of AI Agent Discipline."
4
- ---
5
-
6
- # /seven-laws
7
-
8
- Brand-aligned alias for [`/continuous-improvement`](continuous-improvement.md). Both commands run the exact same three-step workflow under the 7 Laws of AI Agent Discipline:
9
-
10
- 1. **Reflect** (Law 5) — generate a reflection block for this session.
11
- 2. **Analyze** (Law 7) — process pending observations into instincts.
12
- 3. **Status** — show all instincts for the project + global with confidence and current level.
13
-
14
- Run the workflow defined in [`continuous-improvement.md`](continuous-improvement.md). Subcommands `weekly` and `always-on` work identically.
15
-
16
- `/continuous-improvement` remains supported indefinitely for backward compatibility. Prefer `/seven-laws` going forward — it matches the brand and the SKILL.md spec.
1
+ ---
2
+ name: seven-laws
3
+ description: "Brand-aligned alias for /continuous-improvement. Reflect on the current session, analyze observations for patterns, and show instinct status under the 7 Laws of AI Agent Discipline."
4
+ ---
5
+
6
+ # /seven-laws
7
+
8
+ Brand-aligned alias for [`/continuous-improvement`](continuous-improvement.md). Both commands run the exact same three-step workflow under the 7 Laws of AI Agent Discipline:
9
+
10
+ 1. **Reflect** (Law 5) — generate a reflection block for this session.
11
+ 2. **Analyze** (Law 7) — process pending observations into instincts.
12
+ 3. **Status** — show all instincts for the project + global with confidence and current level.
13
+
14
+ Run the workflow defined in [`continuous-improvement.md`](continuous-improvement.md). Subcommands `weekly` and `always-on` work identically.
15
+
16
+ `/continuous-improvement` remains supported indefinitely for backward compatibility. Prefer `/seven-laws` going forward — it matches the brand and the SKILL.md spec.