@rune-kit/rune 2.8.0 → 2.11.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.
Files changed (287) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +68 -34
  3. package/agents/adversary.md +27 -0
  4. package/agents/architect.md +19 -29
  5. package/agents/asset-creator.md +18 -4
  6. package/agents/audit.md +25 -4
  7. package/agents/autopsy.md +19 -4
  8. package/agents/ba.md +35 -0
  9. package/agents/brainstorm.md +31 -4
  10. package/agents/browser-pilot.md +21 -4
  11. package/agents/coder.md +21 -29
  12. package/agents/completion-gate.md +20 -4
  13. package/agents/constraint-check.md +18 -4
  14. package/agents/context-engine.md +22 -4
  15. package/agents/context-pack.md +32 -0
  16. package/agents/cook.md +41 -4
  17. package/agents/db.md +19 -4
  18. package/agents/debug.md +33 -4
  19. package/agents/dependency-doctor.md +20 -4
  20. package/agents/deploy.md +27 -4
  21. package/agents/design.md +22 -4
  22. package/agents/doc-processor.md +27 -0
  23. package/agents/docs-seeker.md +19 -4
  24. package/agents/docs.md +31 -0
  25. package/agents/fix.md +37 -4
  26. package/agents/git.md +29 -0
  27. package/agents/hallucination-guard.md +20 -4
  28. package/agents/incident.md +21 -4
  29. package/agents/integrity-check.md +18 -4
  30. package/agents/journal.md +19 -4
  31. package/agents/launch.md +32 -4
  32. package/agents/logic-guardian.md +26 -11
  33. package/agents/marketing.md +23 -4
  34. package/agents/mcp-builder.md +26 -0
  35. package/agents/neural-memory.md +30 -0
  36. package/agents/onboard.md +22 -4
  37. package/agents/perf.md +21 -4
  38. package/agents/plan.md +29 -4
  39. package/agents/preflight.md +22 -4
  40. package/agents/problem-solver.md +20 -4
  41. package/agents/rescue.md +23 -4
  42. package/agents/research.md +19 -4
  43. package/agents/researcher.md +19 -29
  44. package/agents/retro.md +32 -0
  45. package/agents/review-intake.md +20 -4
  46. package/agents/review.md +32 -4
  47. package/agents/reviewer.md +20 -28
  48. package/agents/safeguard.md +19 -4
  49. package/agents/sast.md +18 -4
  50. package/agents/scaffold.md +41 -0
  51. package/agents/scanner.md +19 -28
  52. package/agents/scope-guard.md +18 -4
  53. package/agents/scout.md +23 -4
  54. package/agents/sentinel-env.md +26 -0
  55. package/agents/sentinel.md +33 -4
  56. package/agents/sequential-thinking.md +20 -4
  57. package/agents/session-bridge.md +24 -4
  58. package/agents/skill-forge.md +22 -4
  59. package/agents/skill-router.md +26 -4
  60. package/agents/slides.md +24 -0
  61. package/agents/surgeon.md +19 -4
  62. package/agents/team.md +30 -4
  63. package/agents/test.md +36 -4
  64. package/agents/trend-scout.md +17 -4
  65. package/agents/verification.md +20 -4
  66. package/agents/video-creator.md +20 -4
  67. package/agents/watchdog.md +19 -4
  68. package/agents/worktree.md +17 -4
  69. package/commands/rune.md +168 -168
  70. package/compiler/__tests__/analytics.test.js +370 -0
  71. package/compiler/adapters/openclaw.js +2 -2
  72. package/compiler/analytics.js +385 -0
  73. package/compiler/bin/rune.js +68 -2
  74. package/compiler/dashboard.js +883 -0
  75. package/compiler/transforms/branding.js +1 -1
  76. package/contexts/dev.md +34 -34
  77. package/contexts/research.md +43 -43
  78. package/contexts/review.md +55 -55
  79. package/extensions/ai-ml/PACK.md +88 -88
  80. package/extensions/ai-ml/skills/ai-agents.md +172 -172
  81. package/extensions/ai-ml/skills/code-sandbox.md +187 -187
  82. package/extensions/ai-ml/skills/deep-research.md +146 -146
  83. package/extensions/ai-ml/skills/embedding-search.md +66 -66
  84. package/extensions/ai-ml/skills/fine-tuning-guide.md +74 -74
  85. package/extensions/ai-ml/skills/llm-architect.md +125 -125
  86. package/extensions/ai-ml/skills/llm-integration.md +64 -64
  87. package/extensions/ai-ml/skills/prompt-patterns.md +72 -72
  88. package/extensions/ai-ml/skills/rag-patterns.md +66 -66
  89. package/extensions/ai-ml/skills/web-extraction.md +114 -114
  90. package/extensions/analytics/PACK.md +92 -92
  91. package/extensions/analytics/skills/ab-testing.md +72 -72
  92. package/extensions/analytics/skills/dashboard-patterns.md +83 -83
  93. package/extensions/analytics/skills/data-validation.md +68 -68
  94. package/extensions/analytics/skills/funnel-analysis.md +81 -81
  95. package/extensions/analytics/skills/sql-patterns.md +57 -57
  96. package/extensions/analytics/skills/statistical-analysis.md +79 -79
  97. package/extensions/analytics/skills/tracking-setup.md +71 -71
  98. package/extensions/backend/PACK.md +104 -104
  99. package/extensions/backend/skills/api-patterns.md +84 -84
  100. package/extensions/backend/skills/async-pipeline.md +193 -193
  101. package/extensions/backend/skills/auth-patterns.md +97 -97
  102. package/extensions/backend/skills/background-jobs.md +133 -133
  103. package/extensions/backend/skills/caching-patterns.md +108 -108
  104. package/extensions/backend/skills/cli-generation.md +133 -133
  105. package/extensions/backend/skills/database-patterns.md +87 -87
  106. package/extensions/backend/skills/middleware-patterns.md +104 -104
  107. package/extensions/chrome-ext/PACK.md +93 -93
  108. package/extensions/chrome-ext/skills/cws-preflight.md +143 -143
  109. package/extensions/chrome-ext/skills/cws-publish.md +104 -104
  110. package/extensions/chrome-ext/skills/ext-ai-integration.md +251 -251
  111. package/extensions/chrome-ext/skills/ext-messaging.md +139 -139
  112. package/extensions/chrome-ext/skills/ext-storage.md +133 -133
  113. package/extensions/chrome-ext/skills/mv3-scaffold.md +164 -164
  114. package/extensions/content/PACK.md +96 -96
  115. package/extensions/content/skills/blog-patterns.md +88 -88
  116. package/extensions/content/skills/cms-integration.md +131 -131
  117. package/extensions/content/skills/content-scoring.md +107 -107
  118. package/extensions/content/skills/i18n.md +83 -83
  119. package/extensions/content/skills/mdx-authoring.md +137 -137
  120. package/extensions/content/skills/reference.md +1014 -1014
  121. package/extensions/content/skills/seo-patterns.md +67 -67
  122. package/extensions/content/skills/video-repurpose.md +153 -153
  123. package/extensions/devops/PACK.md +101 -101
  124. package/extensions/devops/skills/chaos-testing.md +67 -67
  125. package/extensions/devops/skills/ci-cd.md +75 -75
  126. package/extensions/devops/skills/docker.md +58 -58
  127. package/extensions/devops/skills/edge-serverless.md +163 -163
  128. package/extensions/devops/skills/infra-as-code.md +158 -158
  129. package/extensions/devops/skills/kubernetes.md +110 -110
  130. package/extensions/devops/skills/monitoring.md +57 -57
  131. package/extensions/devops/skills/server-setup.md +64 -64
  132. package/extensions/devops/skills/ssl-domain.md +42 -42
  133. package/extensions/ecommerce/PACK.md +116 -116
  134. package/extensions/ecommerce/skills/cart-system.md +79 -79
  135. package/extensions/ecommerce/skills/inventory-mgmt.md +102 -102
  136. package/extensions/ecommerce/skills/order-management.md +126 -126
  137. package/extensions/ecommerce/skills/payment-integration.md +472 -472
  138. package/extensions/ecommerce/skills/shopify-dev.md +69 -69
  139. package/extensions/ecommerce/skills/subscription-billing.md +93 -93
  140. package/extensions/ecommerce/skills/tax-compliance.md +117 -117
  141. package/extensions/gamedev/PACK.md +142 -142
  142. package/extensions/gamedev/skills/asset-pipeline.md +74 -74
  143. package/extensions/gamedev/skills/audio-system.md +129 -129
  144. package/extensions/gamedev/skills/camera-system.md +87 -87
  145. package/extensions/gamedev/skills/ecs.md +98 -98
  146. package/extensions/gamedev/skills/game-loops.md +72 -72
  147. package/extensions/gamedev/skills/input-system.md +199 -199
  148. package/extensions/gamedev/skills/multiplayer.md +180 -180
  149. package/extensions/gamedev/skills/particles.md +105 -105
  150. package/extensions/gamedev/skills/physics-engine.md +89 -89
  151. package/extensions/gamedev/skills/scene-management.md +146 -146
  152. package/extensions/gamedev/skills/threejs-patterns.md +90 -90
  153. package/extensions/gamedev/skills/webgl.md +71 -71
  154. package/extensions/mobile/PACK.md +106 -106
  155. package/extensions/mobile/skills/app-store-connect.md +152 -152
  156. package/extensions/mobile/skills/app-store-prep.md +66 -66
  157. package/extensions/mobile/skills/deep-linking.md +109 -109
  158. package/extensions/mobile/skills/flutter.md +60 -60
  159. package/extensions/mobile/skills/ios-build-pipeline.md +142 -142
  160. package/extensions/mobile/skills/native-bridge.md +66 -66
  161. package/extensions/mobile/skills/ota-updates.md +97 -97
  162. package/extensions/mobile/skills/push-notifications.md +111 -111
  163. package/extensions/mobile/skills/react-native.md +82 -82
  164. package/extensions/saas/PACK.md +116 -116
  165. package/extensions/saas/skills/billing-integration.md +200 -200
  166. package/extensions/saas/skills/feature-flags.md +130 -130
  167. package/extensions/saas/skills/multi-tenant.md +103 -103
  168. package/extensions/saas/skills/onboarding-flow.md +139 -139
  169. package/extensions/saas/skills/subscription-flow.md +95 -95
  170. package/extensions/saas/skills/team-management.md +144 -144
  171. package/extensions/security/PACK.md +99 -99
  172. package/extensions/security/skills/api-security.md +140 -140
  173. package/extensions/security/skills/compliance.md +68 -68
  174. package/extensions/security/skills/owasp-audit.md +64 -64
  175. package/extensions/security/skills/pentest-patterns.md +77 -77
  176. package/extensions/security/skills/secret-mgmt.md +65 -65
  177. package/extensions/security/skills/supply-chain.md +65 -65
  178. package/extensions/trading/PACK.md +80 -80
  179. package/extensions/trading/skills/chart-components.md +55 -55
  180. package/extensions/trading/skills/experiment-loop.md +125 -125
  181. package/extensions/trading/skills/fintech-patterns.md +47 -47
  182. package/extensions/trading/skills/indicator-library.md +58 -58
  183. package/extensions/trading/skills/quant-analysis.md +111 -111
  184. package/extensions/trading/skills/realtime-data.md +58 -58
  185. package/extensions/trading/skills/trade-logic.md +104 -104
  186. package/extensions/ui/PACK.md +130 -130
  187. package/extensions/ui/skills/a11y-audit.md +91 -91
  188. package/extensions/ui/skills/animation-patterns.md +127 -106
  189. package/extensions/ui/skills/component-patterns.md +100 -75
  190. package/extensions/ui/skills/design-decision.md +108 -108
  191. package/extensions/ui/skills/design-system.md +68 -68
  192. package/extensions/ui/skills/landing-patterns.md +155 -155
  193. package/extensions/ui/skills/palette-picker.md +173 -173
  194. package/extensions/ui/skills/react-health.md +90 -90
  195. package/extensions/ui/skills/type-system.md +125 -125
  196. package/extensions/ui/skills/web-vitals.md +153 -153
  197. package/extensions/zalo/PACK.md +145 -145
  198. package/extensions/zalo/skills/zalo-oa-mcp.md +317 -317
  199. package/extensions/zalo/skills/zalo-oa-messaging.md +429 -429
  200. package/extensions/zalo/skills/zalo-oa-setup.md +236 -236
  201. package/extensions/zalo/skills/zalo-oa-webhook.md +189 -189
  202. package/extensions/zalo/skills/zalo-personal-messaging.md +194 -194
  203. package/extensions/zalo/skills/zalo-personal-setup.md +153 -153
  204. package/extensions/zalo/skills/zalo-rate-guard.md +219 -219
  205. package/hooks/auto-format/index.cjs +48 -48
  206. package/hooks/context-watch/index.cjs +95 -68
  207. package/hooks/hooks.json +111 -111
  208. package/hooks/metrics-collector/index.cjs +86 -42
  209. package/hooks/post-session-reflect/index.cjs +189 -153
  210. package/hooks/pre-compact/index.cjs +95 -95
  211. package/hooks/run-hook.cmd +1 -1
  212. package/hooks/secrets-scan/index.cjs +100 -100
  213. package/hooks/session-start/index.cjs +71 -65
  214. package/hooks/typecheck/index.cjs +65 -65
  215. package/package.json +63 -63
  216. package/references/ui-pro-max-data/LICENSE-UI-PRO-MAX +21 -21
  217. package/references/ui-pro-max-data/charts.csv +26 -26
  218. package/references/ui-pro-max-data/colors.csv +161 -161
  219. package/references/ui-pro-max-data/styles.csv +68 -68
  220. package/references/ui-pro-max-data/typography.csv +74 -74
  221. package/references/ui-pro-max-data/ui-reasoning.csv +162 -162
  222. package/references/ui-pro-max-data/ux-guidelines.csv +99 -99
  223. package/skills/adversary/SKILL.md +283 -283
  224. package/skills/asset-creator/SKILL.md +157 -157
  225. package/skills/audit/SKILL.md +148 -2
  226. package/skills/autopsy/SKILL.md +335 -259
  227. package/skills/autopsy/references/repo-analysis-patterns.md +113 -0
  228. package/skills/ba/SKILL.md +72 -2
  229. package/skills/brainstorm/SKILL.md +342 -341
  230. package/skills/browser-pilot/SKILL.md +168 -168
  231. package/skills/constraint-check/SKILL.md +165 -165
  232. package/skills/context-engine/SKILL.md +404 -404
  233. package/skills/cook/SKILL.md +917 -834
  234. package/skills/cook/references/output-format.md +33 -0
  235. package/skills/db/SKILL.md +273 -272
  236. package/skills/debug/SKILL.md +465 -443
  237. package/skills/dependency-doctor/SKILL.md +265 -235
  238. package/skills/deploy/SKILL.md +274 -231
  239. package/skills/design/DESIGN-REFERENCE.md +365 -365
  240. package/skills/design/SKILL.md +589 -482
  241. package/skills/doc-processor/SKILL.md +254 -254
  242. package/skills/docs/SKILL.md +374 -373
  243. package/skills/docs-seeker/SKILL.md +177 -177
  244. package/skills/fix/SKILL.md +330 -308
  245. package/skills/git/SKILL.md +339 -339
  246. package/skills/graft/SKILL.md +352 -0
  247. package/skills/graft/references/challenge-framework.md +98 -0
  248. package/skills/graft/references/mode-decision.md +44 -0
  249. package/skills/hallucination-guard/SKILL.md +219 -219
  250. package/skills/incident/SKILL.md +254 -251
  251. package/skills/integrity-check/SKILL.md +169 -169
  252. package/skills/journal/SKILL.md +240 -238
  253. package/skills/launch/SKILL.md +344 -342
  254. package/skills/logic-guardian/SKILL.md +251 -251
  255. package/skills/marketing/SKILL.md +290 -245
  256. package/skills/mcp-builder/SKILL.md +425 -423
  257. package/skills/mcp-builder/references/auto-discovery-pattern.md +169 -0
  258. package/skills/neural-memory/SKILL.md +362 -362
  259. package/skills/onboard/SKILL.md +404 -403
  260. package/skills/perf/SKILL.md +346 -346
  261. package/skills/plan/SKILL.md +433 -370
  262. package/skills/plan/references/feature-map.md +84 -0
  263. package/skills/preflight/SKILL.md +415 -396
  264. package/skills/problem-solver/SKILL.md +380 -284
  265. package/skills/rescue/SKILL.md +474 -450
  266. package/skills/retro/SKILL.md +5 -1
  267. package/skills/review/SKILL.md +612 -535
  268. package/skills/review-intake/SKILL.md +249 -249
  269. package/skills/safeguard/SKILL.md +200 -200
  270. package/skills/sast/SKILL.md +190 -190
  271. package/skills/scaffold/SKILL.md +328 -286
  272. package/skills/scope-guard/SKILL.md +180 -162
  273. package/skills/scout/SKILL.md +263 -263
  274. package/skills/sentinel/SKILL.md +382 -353
  275. package/skills/sentinel-env/SKILL.md +254 -254
  276. package/skills/sequential-thinking/SKILL.md +234 -234
  277. package/skills/session-bridge/SKILL.md +543 -397
  278. package/skills/skill-forge/SKILL.md +581 -539
  279. package/skills/skill-router/{skill.md → SKILL.md} +30 -2
  280. package/skills/surgeon/SKILL.md +215 -215
  281. package/skills/team/SKILL.md +556 -514
  282. package/skills/test/SKILL.md +614 -587
  283. package/skills/trend-scout/SKILL.md +145 -145
  284. package/skills/verification/SKILL.md +326 -325
  285. package/skills/video-creator/SKILL.md +201 -201
  286. package/skills/watchdog/SKILL.md +168 -168
  287. package/skills/worktree/SKILL.md +140 -140
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Rune Contributors
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Rune Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <p align="center">
6
6
  <strong>Less skills. Deeper connections.</strong><br>
7
7
  A lean, interconnected skill ecosystem for AI coding assistants.<br>
8
- 61 skills · 200+ mesh connections · 8 platforms · MIT
8
+ 62 skills · 215+ mesh connections · 8 platforms · MIT
9
9
  </p>
10
10
 
11
11
  <p align="center">
@@ -23,7 +23,7 @@
23
23
 
24
24
  Most skill ecosystems are either **too many isolated skills** (540+ that don't talk to each other) or **rigid pipelines** (A → B → C, if B fails everything stops).
25
25
 
26
- Rune is a **mesh** — 61 skills with 200+ connections across a 5-layer architecture. Skills call each other bidirectionally, forming resilient workflows that adapt when things go wrong.
26
+ Rune is a **mesh** — 62 skills with 215+ connections across a 5-layer architecture. Skills call each other bidirectionally, forming resilient workflows that adapt when things go wrong.
27
27
 
28
28
  ```
29
29
  Pipeline: A → B → C → D (B fails = stuck)
@@ -83,7 +83,21 @@ _Methodology: Claude Code CLI headless mode (`claude -p --output-format json`),
83
83
 
84
84
  ---
85
85
 
86
- ## What's New (v2.8.0)
86
+ ## What's New (v2.11.0)
87
+
88
+ - **Mesh integrity** — 8 dead wires fixed, 5 workflow gaps closed (hotfix chain, API versioning, monorepo mode, feature flags, dependency upgrade campaigns)
89
+ - **audit v0.4.0** — DX Review Mode: Addy Osmani's 8 developer experience principles with scoring rubric and browser-pilot integration
90
+ - **cook v2.4.0** — remediation cycle counter + upstream inconsistency protocol
91
+ - **problem-solver v0.4.0** — Cynefin, SWOT, PESTLE, Porter's Five Forces, ethics framework
92
+ - **plan v1.5.0** — autopilot suggested_next: autonomous execution path for Pro users after plan approval
93
+ - **Autopilot routing** — skill-router Tier 1 entry for Pro autopilot ("auto", "làm hết", "đi ngủ" → autonomous mode)
94
+
95
+ ### Previous (v2.10.0)
96
+
97
+ - **marketing v0.4.0** — anti-AI copy rules (banned phrases, 5 hook types, specificity mandate), expanded SEO audit with schema markup guide (10 types + `@graph` pattern), programmatic SEO awareness (4 playbooks), optional Pro content-scorer/cro-analyst integration
98
+ - **Pro growth pack v1.1.0** — 3 new skills (content-scorer, cro-analyst, marketing-psych) + 6 existing skills enriched with SEO Machine patterns
99
+
100
+ ### Previous (v2.8.0)
87
101
 
88
102
  - **Anti-Loop Intelligence** — 7 core skills enriched with execution loop detection, saturation analysis, error pattern matching, artifact folding, budget-aware progression, and recovery policy routing
89
103
  - **cook v2.1.0** — observation/effect ratio tracking (detects stuck agents reading without writing) + budget-aware phase progression with hard caps on replans, quality retries, and session tool calls
@@ -102,7 +116,7 @@ _Methodology: Claude Code CLI headless mode (`claude -p --output-format json`),
102
116
 
103
117
  ### Previous (v2.6.0)
104
118
 
105
- - **Mesh Signals** — event-driven skill communication via frontmatter. Skills declare `emit` and `listen` signals; compiler builds a signal graph in `skill-index.json`. 17 signals across 15 core skills
119
+ - **Mesh Signals** — event-driven skill communication via frontmatter. Skills declare `emit` and `listen` signals; compiler builds a signal graph in `skill-index.json`. 23 signals across 15 core skills
106
120
  - **Signal Validation** — `scripts/validate-signals.js` checks orphan listeners (hard error), unlistened emitters (warning), signal naming conventions
107
121
  - **Mesh Contract** (v2.5.0) — `.rune/contract.md` project-level invariants enforced by cook + sentinel as hard gates
108
122
  - **Tier Override** — Pro/Business packs override Free packs with skill-level merging
@@ -125,7 +139,7 @@ cook ───emit:phase.complete────→ session-bridge
125
139
 
126
140
  ## What Rune Is (and Isn't)
127
141
 
128
- Rune started as a **Claude Code plugin** and now compiles to **every major AI IDE**. Same 61 skills, same mesh connections, same workflows — zero knowledge loss across platforms.
142
+ Rune started as a **Claude Code plugin** and now compiles to **every major AI IDE**. Same 62 skills, same mesh connections, same workflows — zero knowledge loss across platforms.
129
143
 
130
144
  | | Rune Provides | Claude Code Provides |
131
145
  |---|---|---|
@@ -133,7 +147,7 @@ Rune started as a **Claude Code plugin** and now compiles to **every major AI ID
133
147
  | **Quality Gates** | preflight + sentinel + review + completion-gate (parallel) | None built-in |
134
148
  | **Domain Knowledge** | 14 extension packs (trading, SaaS, mobile, etc.) | General-purpose |
135
149
  | **Cross-Session State** | .rune/ directory (decisions, conventions, progress) | Conversation only |
136
- | **Mesh Resilience** | 200+ skill connections, fail-loud-route-around | Linear execution |
150
+ | **Mesh Resilience** | 215+ skill connections, fail-loud-route-around | Linear execution |
137
151
  | **Cost Optimization** | Auto model selection (haiku/sonnet/opus per task) | Single model |
138
152
  | | | |
139
153
  | **Sandbox & Permissions** | — | Claude Code handles this |
@@ -149,7 +163,7 @@ Rune started as a **Claude Code plugin** and now compiles to **every major AI ID
149
163
  | CI quality gates | `verification` skill: lint + typecheck + tests + build (actual commands, not LLM review) |
150
164
  | Memory / state | `session-bridge` + `journal`: cross-session decisions, conventions, ADRs, module health |
151
165
  | Multi-model strategy | Every skill has assigned model: haiku (scan), sonnet (code), opus (architecture) |
152
- | Agent specialization | 61 specialized skills with dedicated roles (architect, coder, reviewer, scanner, researcher, BA, scaffolder) — each runs as a Task agent via Claude Code |
166
+ | Agent specialization | 62 specialized skills with dedicated roles (architect, coder, reviewer, scanner, researcher, BA, scaffolder) — each runs as a Task agent via Claude Code |
153
167
  | Security scanning | `sentinel`: OWASP patterns, secret scanning, dependency audit. `sast`: static analysis |
154
168
 
155
169
  ## Install
@@ -177,14 +191,14 @@ npx @rune-kit/rune init --platform windsurf
177
191
  npx @rune-kit/rune init --platform antigravity
178
192
  ```
179
193
 
180
- This compiles all 61 skills into your IDE's rules format. Same knowledge, same workflows.
194
+ This compiles all 62 skills into your IDE's rules format. Same knowledge, same workflows.
181
195
 
182
196
  ### Platform Comparison
183
197
 
184
198
  | Feature | Claude Code | Cursor / Windsurf / Others |
185
199
  |---------|-------------|---------------------------|
186
200
  | Skills available | 61/61 | 61/61 |
187
- | Mesh connections | 200+ (programmatic) | 200+ (rule references) |
201
+ | Mesh connections | 215+ (programmatic) | 215+ (rule references) |
188
202
  | Workflows & HARD-GATEs | Full | Full |
189
203
  | Extension packs | 14 | 14 |
190
204
  | Subagent parallelism | Native | Sequential fallback |
@@ -248,11 +262,11 @@ This compiles all 61 skills into your IDE's rules format. Same knowledge, same w
248
262
  ║ Full lifecycle workflows ║
249
263
  ║ cook │ team │ launch │ rescue │ scaffold ║
250
264
  ╠══════════════════════════════════════════════════════╣
251
- ║ L2: WORKFLOW HUBS (28) ║
265
+ ║ L2: WORKFLOW HUBS (29) ║
252
266
  ║ Cross-hub mesh — the key differentiator ║
253
267
  ║ ║
254
268
  ║ Creation: plan │ scout │ brainstorm │ design │ ║
255
- ║ skill-forge │ ba │ mcp-builder
269
+ ║ skill-forge │ ba │ mcp-builder │ graft
256
270
  ║ Development: debug │ fix │ test │ review │ db ║
257
271
  ║ Quality: sentinel │ preflight │ onboard │ ║
258
272
  ║ audit │ perf │ review-intake │ ║
@@ -403,31 +417,51 @@ Domain-specific skills that plug into the core mesh:
403
417
  | @rune/content | blog, cms, mdx, i18n, seo | Content |
404
418
  | @rune/analytics | tracking, a/b testing, funnels, dashboards | Growth |
405
419
 
406
- ### Rune Pro (Premium)
420
+ ### Rune Pro — $49 lifetime
407
421
 
408
- Business department packs for product, sales, and data teams. Same PACK.md format, plugs into the core mesh.
422
+ > *Free Rune makes Claude disciplined. Pro makes Claude self-aware.*
409
423
 
410
- | Pack | Skills | For |
411
- |------|--------|-----|
412
- | @rune-pro/product | feature-spec, roadmap, metrics, release-comms, user-research, competitive | Product Management |
413
- | @rune-pro/sales | account-research, call-prep, outreach, pipeline-review, competitive-intel | Sales Enablement |
414
- | @rune-pro/data-science | data-exploration, sql-advanced, visualization, statistical-testing, dashboards | Data Science |
415
- | @rune-pro/support | ticket-triage, response-drafting, knowledge-base, escalation, faq, metrics | Customer Support |
424
+ **Context Intelligence** the headline Pro feature. Claude Code auto-compacts at random, wiping your session context. With Pro, Claude **knows** when context is filling up — and proactively saves decisions, progress, and discoveries before compact hits.
416
425
 
417
- **$49 lifetime** — [rune-kit/rune-pro](https://github.com/rune-kit/rune-pro)
426
+ ```
427
+ Free: Claude is blind to context pressure → auto-compact → amnesia
428
+ Pro: Claude sees real-time context % → saves state → compact → reloads → zero loss
429
+ ```
418
430
 
419
- ### Rune Business (Enterprise)
431
+ How it works: `rune-pulse` (statusline) reads `context_window.used_percentage` from Claude Code, writes to temp file. `context-inject` hook injects warnings into Claude's context at 70% / 80% / 90%. Claude triggers `session-bridge` + `neural-memory` to persist everything. After `/compact`, `session-start` reloads `.rune/` state — Claude picks up exactly where it left off.
420
432
 
421
- Department packs for finance, legal, HR, and cross-system search. Requires Rune Free core.
433
+ **Autopilot** approve a plan, walk away. Autonomous multi-session execution with zero-HIGH-tolerance quality gates, baseline regression checks, cross-phase coherence review, and structured completion reports. `cook` gets the job done. `autopilot` gets it done while you sleep.
422
434
 
423
- | Pack | Skills | For |
424
- |------|--------|-----|
425
- | @rune-business/finance | budget-planning, expense-analysis, revenue-forecasting, financial-reporting, compliance, invoicing, cash-flow | Finance Ops |
426
- | @rune-business/legal | contract-review, compliance-check, policy-generator, nda-triage, ip-protection, incident-legal | Legal & Compliance |
427
- | @rune-business/hr | jd-writer, resume-screener, interview-planner, scorecard, onboarding, comp-benchmarker, policy-writer | HR & Recruiting |
428
- | @rune-business/enterprise-search | query-planner, source-connector, result-merger, permission-guard, knowledge-graph, search-analytics | Knowledge Retrieval |
435
+ **Department Packs** 34 skills across 5 domains:
436
+
437
+ | Pack | What it does |
438
+ |------|-------------|
439
+ | **Product** | PRDs from user stories, roadmap prioritization, KPI dashboards, release comms, competitive analysis |
440
+ | **Sales** | Account research briefs, call prep with objection handling, outreach sequences, pipeline health review |
441
+ | **Data Science** | SQL exploration → visualization → statistical testing → ML eval, all in one flow |
442
+ | **Support** | Ticket triage with SLA routing, KB article generation, escalation playbooks, support metrics |
443
+ | **Growth** | Niche research, content scouting, SEO architecture, landing page generation, content health monitoring, data moats, content quality scoring, CRO psychology analysis, 74 marketing mental models |
444
+
445
+ All Pro packs plug into the core mesh — `cook` orchestrates them, `sentinel` gates them, `team` parallelizes them.
446
+
447
+ **[Get Rune Pro](https://rune-kit.github.io/rune#pricing)** — [rune-kit/rune-pro](https://github.com/rune-kit/rune-pro)
448
+
449
+ ### Rune Business — $149 lifetime (includes Pro)
450
+
451
+ > *Pro handles departments. Business handles the company.*
452
+
453
+ Business packs don't just add skills — they **wire departments together**. Finance pulls from sales pipeline. Legal audits product specs. Enterprise search indexes support KB. 40 cross-domain signals, zero manual context passing.
454
+
455
+ | Pack | What it does |
456
+ |------|-------------|
457
+ | **Finance** | Budget planning from sales pipeline data, P&L analysis, cash flow forecasting, compliance reporting |
458
+ | **Legal** | Contract review with clause extraction, GDPR/SOC2 compliance checks, NDA triage, IP protection |
459
+ | **HR** | JD generation, resume screening, structured interviews, comp benchmarking, onboarding workflows |
460
+ | **Enterprise Search** | Cross-system knowledge retrieval with permission-aware filtering and knowledge graph |
461
+
462
+ 4 packs, 26 skills, 118 reference files, 11 automation scripts. Business includes all Pro features because it depends on Pro data — finance can't forecast without sales pipeline, legal can't audit without product specs.
429
463
 
430
- **$149 lifetime** — [rune-kit/rune-business](https://github.com/rune-kit/rune-business)
464
+ **[Get Rune Business](https://rune-kit.github.io/rune#pricing)** — [rune-kit/rune-business](https://github.com/rune-kit/rune-business)
431
465
 
432
466
  ## Multi-Platform Compiler
433
467
 
@@ -460,15 +494,15 @@ See [docs/MULTI-PLATFORM.md](docs/MULTI-PLATFORM.md) for the full architecture.
460
494
  ## Numbers
461
495
 
462
496
  ```
463
- Core Skills: 61 (L0: 1 │ L1: 5 │ L2: 28 │ L3: 27)
464
- Extension Packs: 14 free + 4 pro + 4 business
465
- Mesh Connections: 200+ cross-references
466
- Mesh Signals: 57 signals across 66 skills (emit/listen graph)
497
+ Core Skills: 62 (L0: 1 │ L1: 5 │ L2: 29 │ L3: 27)
498
+ Extension Packs: 14 free + 5 pro + 4 business
499
+ Mesh Connections: 215+ cross-references
500
+ Mesh Signals: 23 signals across 62 skills (emit/listen graph)
467
501
  Connections/Skill: 3.4 avg
468
502
  Platforms: 8 (Claude Code, Cursor, Windsurf, Antigravity, Codex, OpenCode, OpenClaw, Generic)
469
503
  Compiler: ~1400 LOC (parser + 8 transforms + 8 adapters + CLI)
470
504
  Tests: 946 (compiler + signals + status + visualizer + hooks + scripts)
471
- Pack Depth: 22 packs total (14 free + 4 pro + 4 business, all free packs rated Deep)
505
+ Pack Depth: 23 packs total (14 free + 5 pro + 4 business, all free packs rated Deep)
472
506
  ```
473
507
 
474
508
  ## Acknowledgments
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: adversary
3
+ description: "Pre-implementation red-team analysis. Challenges plans BEFORE code is written — edge cases, security holes, scalability bottlenecks, error propagation. Catches flaws at plan time (10x cheaper)."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **adversary** skill — Rune's pre-implementation red-team analyst.
9
+
10
+ ## Quick Reference
11
+
12
+ **Workflow:**
13
+ 1. **Load Plan** — read the approved plan (.rune/plan-*.md or specified document)
14
+ 2. **5-Dimension Attack** — challenge across: edge cases, security, scalability, error propagation, integration risk
15
+ 3. **Specific Findings** — every finding references specific plan section, file, or assumption
16
+ 4. **Severity Rating** — CRITICAL (blocks ship), HIGH (must address), MEDIUM (should address), LOW (nice to have)
17
+ 5. **Report** — structured findings → plan author hardens before implementation
18
+
19
+ **Hard Gates:**
20
+ - MUST produce at least one specific challenge per dimension analyzed
21
+ - "Plan looks solid" without concrete attack vectors is NOT a red-team analysis
22
+ - Every finding MUST reference the specific plan section it challenges
23
+ - adversary does NOT fix or redesign — it reports weaknesses only
24
+
25
+ **Called by:** cook (Phase 2.5), review (50+ callers escalation). Manual: `/rune adversary`.
26
+
27
+ Read `skills/adversary/SKILL.md` for the full specification including attack vector templates.
@@ -1,29 +1,19 @@
1
- ---
2
- name: architect
3
- description: Architecture and planning agent. Used by plan, brainstorm, team, autopsy for strategic analysis and design.
4
- model: opus
5
- subagent_type: Plan
6
- ---
7
-
8
- # Architect Agent
9
-
10
- Deep reasoning agent for architectural decisions, system design, and strategic planning. Uses opus for maximum reasoning depth.
11
-
12
- ## Capabilities
13
-
14
- - System architecture design
15
- - Task decomposition and dependency analysis
16
- - Trade-off evaluation (2-3 approaches with pros/cons)
17
- - Legacy code health assessment
18
- - Refactoring strategy planning
19
-
20
- ## Usage
21
-
22
- Called by L1 orchestrators and L2 creation/rescue skills for strategic decisions.
23
-
24
- ## Constraints
25
-
26
- - Planning only — does not write code
27
- - Must provide actionable implementation steps
28
- - Must consider existing project conventions
29
- - Returns structured plans, not prose
1
+ ---
2
+ name: architect
3
+ description: "Architecture and planning agent. Spawned by plan, brainstorm, team, autopsy for strategic analysis, system design, and trade-off evaluation."
4
+ model: opus
5
+ subagent_type: Plan
6
+ ---
7
+
8
+ You are the **architect** subagent — a strategic reasoning specialist spawned by other Rune skills.
9
+
10
+ ## Operating Rules
11
+
12
+ 1. Master plan: max **80 lines** overview; phase files: max **200 lines** each
13
+ 2. Non-trivial work (3+ phases OR 5+ files OR 100+ LOC) = master + phase files MANDATORY
14
+ 3. Every task in a phase MUST have: File path, Test, Verify step, Commit step
15
+ 4. Present **trade-offs** with pros/cons never single-option recommendations
16
+ 5. Dependency order: foundation first, consumers after producers
17
+ 6. Max **8 phases** per plan — split into sub-projects if more needed
18
+
19
+ You design and plan. You do NOT write implementation code. Hand off to cook/fix for execution.
@@ -1,11 +1,25 @@
1
1
  ---
2
2
  name: asset-creator
3
- description: "Creates code-based visual assets — SVG icons, OG images, social banners."
3
+ description: "Creates code-based visual assets — SVG icons, OG image HTML, social banners, icon sets. Code-only output (not raster PNG/JPG). Use browser-pilot + screenshot for raster."
4
4
  model: sonnet
5
5
  subagent_type: general-purpose
6
6
  ---
7
7
 
8
- You are the **asset-creator** skill of the Rune plugin.
8
+ You are the **asset-creator** skill Rune's visual asset generator.
9
9
 
10
- Your full skill definition is in `skills/asset-creator/SKILL.md` relative to the plugin root.
11
- Read that file and execute every step precisely. Do not skip steps or improvise beyond what the SKILL.md specifies.
10
+ ## Quick Reference
11
+
12
+ **Workflow:**
13
+ 1. Accept brief: asset_type, dimensions, style, content, output_dir
14
+ 2. Load color palette/typography from `.rune/conventions.md` or apply defaults
15
+ 3. Create SVG/HTML files with proper markup
16
+ 4. Create light/dark variants for OG/banner assets
17
+ 5. Report usage instructions (HTML snippets, SVG tags)
18
+
19
+ **Critical Rules:**
20
+ - Code-based assets ONLY (SVG, HTML) — not raster images
21
+ - Confirm output format before generating
22
+ - MUST NOT generate copyrighted/trademarked content
23
+ - Save to `assets/` directory
24
+
25
+ Read `skills/asset-creator/SKILL.md` for the full specification.
package/agents/audit.md CHANGED
@@ -1,11 +1,32 @@
1
1
  ---
2
2
  name: audit
3
- description: "Comprehensive project health audit across 8 dimensions."
3
+ description: "Comprehensive 8-dimension project health audit dependencies, security, code quality, architecture, performance, infrastructure, documentation, mesh analytics. Produces AUDIT-REPORT.md."
4
4
  model: opus
5
5
  subagent_type: general-purpose
6
6
  ---
7
7
 
8
- You are the **audit** skill of the Rune plugin.
8
+ You are the **audit** skill Rune's comprehensive project auditor.
9
9
 
10
- Your full skill definition is in `skills/audit/SKILL.md` relative to the plugin root.
11
- Read that file and execute every step precisely. Do not skip steps or improvise beyond what the SKILL.md specifies.
10
+ ## Quick Reference
11
+
12
+ **8-Phase Pipeline:**
13
+ 0. **Discovery** — scope, language, frameworks
14
+ 0.5. **Context-Building** — understand invariants (PURE understanding, no findings yet)
15
+ 1. **Dependencies** — delegate to dependency-doctor
16
+ 2. **Security** — delegate to sentinel
17
+ 3. **Code Quality** — delegate to autopsy + supplementary grep
18
+ 4. **Architecture** — structure, design patterns, API design, DB patterns, state management
19
+ 5. **Performance** — build/bundle, runtime, database/I/O
20
+ 6. **Infrastructure** — CI/CD, environment config, containerization, logging
21
+ 7. **Documentation** — README, API docs, code docs, CHANGELOG, LICENSE
22
+ 8. **Mesh Analytics** — skill usage, chains, session stats
23
+
24
+ **Composite Score:** Security 25% + Code Quality 20% + Architecture 15% + Dependencies 15% + Performance 10% + Infrastructure 8% + Documentation 7%
25
+
26
+ **Critical Rules:**
27
+ - MUST complete all 8 phases (explicitly state if skipped)
28
+ - Only findings >80% confidence (no speculation)
29
+ - Include at least 3 positive findings
30
+ - Delegate Phase 1 to dependency-doctor, Phase 2 to sentinel
31
+
32
+ Read `skills/audit/SKILL.md` for the full specification.
package/agents/autopsy.md CHANGED
@@ -1,11 +1,26 @@
1
1
  ---
2
2
  name: autopsy
3
- description: "Full codebase health assessment. Analyzes complexity, dependencies, dead code, tech debt."
3
+ description: "Full codebase health assessment quantified health scores (0-100) per module across 6 dimensions. Identifies highest tech debt. Use for rescue RECON or project diagnosis."
4
4
  model: opus
5
5
  subagent_type: general-purpose
6
6
  ---
7
7
 
8
- You are the **autopsy** skill of the Rune plugin.
8
+ You are the **autopsy** skill Rune's codebase health analyzer.
9
9
 
10
- Your full skill definition is in `skills/autopsy/SKILL.md` relative to the plugin root.
11
- Read that file and execute every step precisely. Do not skip steps or improvise beyond what the SKILL.md specifies.
10
+ ## Quick Reference
11
+
12
+ **Workflow:**
13
+ 1. **Structure Scan** — via scout: files, LOC, entry points, import graph, tests, configs
14
+ 2. **Module Analysis** — for each module: LOC, function count, nesting depth, cyclomatic complexity, coverage
15
+ 3. **Health Scoring** — 6 dimensions: complexity, test coverage, documentation, dependencies, code smells, maintenance = 0-100 per module
16
+ 4. **Risk Assessment** — git archaeology: hotspots, stale files, dead code, circular deps
17
+ 5. **Generate RESCUE-REPORT.md** — saved to project root with Mermaid diagram
18
+ 6. **Report** — summary with health score per tier, ranked modules
19
+
20
+ **Critical Rules:**
21
+ - MUST scan actual code metrics — not estimate or guess
22
+ - MUST produce quantified health scores — not vague assessments
23
+ - MUST identify specific modules ranked by tech debt impact
24
+ - MUST NOT recommend refactoring everything — prioritize by impact
25
+
26
+ Read `skills/autopsy/SKILL.md` for the full specification.
package/agents/ba.md ADDED
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: ba
3
+ description: "Business Analyst — deep requirement elicitation BEFORE planning or coding. Asks 5 probing questions, maps stakeholders, produces Requirements Document. Use when task is non-trivial or vague."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **ba** skill — Rune's Business Analyst for deep requirement understanding.
9
+
10
+ ## Step 0 — Prerequisite Check (BEFORE eliciting requirements)
11
+
12
+ 1. **Is this a bug fix?** If error/broken → skip BA, route directly to `rune:debug`. BA is for features and greenfield, not bugs.
13
+ 2. **Is this a refactor?** If cleanup/restructure → light BA only (classify + scope boundaries, skip full 5-question cycle).
14
+ 3. **Existing codebase?** If modifying existing code → invoke `rune:scout` for context first.
15
+
16
+ Only proceed after Step 0 is satisfied.
17
+
18
+ ## Quick Reference
19
+
20
+ **Workflow:**
21
+ 1. **Intake & Classify** — Feature Request (full cycle), Bug (skip BA), Refactor (light), Integration (full + API), Greenfield (full + market)
22
+ 2. **5 Questions** — WHO, WHAT, WHY, BOUNDARIES, CONSTRAINTS — ask ONE at a time, not all at once
23
+ 3. **Stakeholder Map** — primary users, secondary users, admin, external systems
24
+ 4. **Scope Boundary** — explicit IN/OUT scope with reasoning
25
+ 5. **Non-Functional Requirements** — performance, security, accessibility, scalability
26
+ 6. **Acceptance Criteria** — GIVEN/WHEN/THEN format, testable
27
+ 7. **Requirements Document** — structured output → hand off to `rune:plan`
28
+
29
+ **Hard Gates:**
30
+ - BA produces WHAT, not HOW — never write code, never plan implementation
31
+ - Output is a Requirements Document → always hand off to plan
32
+ - 5 questions asked ONE AT A TIME (not dumped as a list)
33
+ - Bug fixes skip BA entirely
34
+
35
+ Read `skills/ba/SKILL.md` for the full specification including question templates and document format.
@@ -1,11 +1,38 @@
1
1
  ---
2
2
  name: brainstorm
3
- description: "Creative ideation and solution exploration. Generates multiple approaches with trade-offs."
3
+ description: "Creative ideation generates 2-3 approaches with trade-offs. Use when multiple valid paths exist or current approach has failed. Hands off to plan."
4
4
  model: opus
5
5
  subagent_type: general-purpose
6
6
  ---
7
7
 
8
- You are the **brainstorm** skill of the Rune plugin.
8
+ You are the **brainstorm** skill Rune's creative ideation engine.
9
9
 
10
- Your full skill definition is in `skills/brainstorm/SKILL.md` relative to the plugin root.
11
- Read that file and execute every step precisely. Do not skip steps or improvise beyond what the SKILL.md specifies.
10
+ ## Step 0 Prerequisite Check
11
+
12
+ 1. **Codebase scanned?** If exploring options for existing code and no scout context → invoke `rune:scout` first.
13
+ 2. **Mode detection:** If current approach has failed 3+ times → auto-enter **Rescue mode** (wider net, diverse categories). If user says "vision"/"rethink"/"10x" → enter **Vision mode**.
14
+
15
+ Only proceed to brainstorming after Step 0 is satisfied.
16
+
17
+ ## Quick Reference
18
+
19
+ **Three Modes:**
20
+ - **Discovery** (default) — explore 2-3 approaches at task start
21
+ - **Vision** — product-level rethinks; force 10x thinking
22
+ - **Rescue** — current approach failed; generate 3-5 category-diverse alternatives
23
+
24
+ **Workflow:**
25
+ 1. Frame problem — state decision clearly, identify constraints
26
+ 2. Restate problem back to user (MANDATORY — verify understanding)
27
+ 3. Generate approaches — 2-3 (Discovery) or 3-5 (Rescue), each with Name/Pros/Cons/Effort/Risk
28
+ 4. Apply framework (SCAMPER, First Principles, Collision-Zone, Inversion, etc.)
29
+ 5. Recommend ONE option with primary reason + hedge condition
30
+ 6. Hand off selected option to `plan`
31
+
32
+ **Hard Gates:**
33
+ - MUST get explicit user approval before calling plan — no auto-proceeding
34
+ - Rescue mode: each approach MUST be a different CATEGORY (not variants of failed approach)
35
+ - Always present multiple options — comparison is the value
36
+ - At least 1 unconventional/hacky approach in Rescue mode
37
+
38
+ Read `skills/brainstorm/SKILL.md` for the full specification including framework selection rules.
@@ -1,11 +1,28 @@
1
1
  ---
2
2
  name: browser-pilot
3
- description: "Browser automation for testing and verification using Playwright."
3
+ description: "Playwright browser automation navigate URLs, screenshot, interact with UI, check accessibility, capture console errors. Max 20 interactions. MUST close browser when done."
4
4
  model: sonnet
5
5
  subagent_type: general-purpose
6
6
  ---
7
7
 
8
- You are the **browser-pilot** skill of the Rune plugin.
8
+ You are the **browser-pilot** skill Rune's browser automation agent.
9
9
 
10
- Your full skill definition is in `skills/browser-pilot/SKILL.md` relative to the plugin root.
11
- Read that file and execute every step precisely. Do not skip steps or improvise beyond what the SKILL.md specifies.
10
+ ## Quick Reference
11
+
12
+ **Workflow:**
13
+ 1. Accept URL + task (screenshot, check_elements, fill_form, test_flow, console_errors)
14
+ 2. Navigate via Playwright MCP tools
15
+ 3. Capture accessibility tree snapshot
16
+ 4. Perform interactions: click, type, fill, select (max 20 per session)
17
+ 5. Take screenshot as visual evidence
18
+ 6. Capture console errors if requested
19
+ 7. **Close browser** (MANDATORY — even on error)
20
+ 8. Report: status, accessibility issues, interaction log, console errors
21
+
22
+ **Critical Rules:**
23
+ - MUST close browser when done (Step 7 non-optional, even on error)
24
+ - Max 20 interactions per session
25
+ - MUST NOT store credentials in logs
26
+ - Screenshot visual findings before reporting
27
+
28
+ Read `skills/browser-pilot/SKILL.md` for the full specification.
package/agents/coder.md CHANGED
@@ -1,29 +1,21 @@
1
- ---
2
- name: coder
3
- description: Code writing and editing agent. Used by fix, test, surgeon, and other skills that modify source code.
4
- model: sonnet
5
- subagent_type: general-purpose
6
- ---
7
-
8
- # Coder Agent
9
-
10
- Primary code modification agent. Writes, edits, and refactors code following project conventions and TDD principles.
11
-
12
- ## Capabilities
13
-
14
- - Write new files and functions
15
- - Edit existing code (targeted replacements)
16
- - Refactor with safety checks
17
- - Write tests (unit, integration, e2e)
18
- - Apply code review feedback
19
-
20
- ## Usage
21
-
22
- Called by L2 skills that need to write or modify code as part of their workflow.
23
-
24
- ## Constraints
25
-
26
- - Must read files before editing
27
- - Must follow project conventions from .rune/conventions.md
28
- - No destructive git operations
29
- - Max file size: 500 LOC (split if larger)
1
+ ---
2
+ name: coder
3
+ description: "Code writing and editing agent. Spawned by fix, test, surgeon when they need to write actual code. Follows parent skill instructions precisely."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **coder** subagent — a general-purpose code writer spawned by other Rune skills.
9
+
10
+ ## Operating Rules
11
+
12
+ 1. Follow the spawning skill's instructions **exactly** — do not freelance
13
+ 2. Use **Edit** for existing files, **Write** only for new files
14
+ 3. Run tests after every change — never batch untested edits
15
+ 4. No feature creep implement only what was requested
16
+ 5. No `console.log` in production code, no `any` in TypeScript
17
+ 6. Keep files under 500 LOC; extract if growing beyond
18
+ 7. Immutable patterns create new objects, never mutate
19
+ 8. Follow project conventions from `.rune/conventions.md` if it exists
20
+
21
+ You do NOT decide what to build. The parent skill (fix, test, surgeon, cook) decides. You execute.
@@ -1,11 +1,27 @@
1
1
  ---
2
2
  name: completion-gate
3
- description: "Verify agent completion claims. The lie detector for agent work."
3
+ description: "Lie detector for agent claims — validates every completion claim has actual evidence. Default-FAIL mindset. Use as final gate before merge/commit."
4
4
  model: sonnet
5
5
  subagent_type: general-purpose
6
6
  ---
7
7
 
8
- You are the **completion-gate** skill of the Rune plugin.
8
+ You are the **completion-gate** skill Rune's claims validator.
9
9
 
10
- Your full skill definition is in `skills/completion-gate/SKILL.md` relative to the plugin root.
11
- Read that file and execute every step precisely. Do not skip steps or improvise beyond what the SKILL.md specifies.
10
+ ## Quick Reference
11
+
12
+ **Workflow:**
13
+ 1. Extract all completion claims from agent output ("tests pass", "build succeeds", "fixed", etc.)
14
+ 2. Stub detection: scan new files for TODO/NotImplementedError/placeholder patterns
15
+ 3. Self-Validation: extract implicit claims from skill's SKILL.md
16
+ 4. Execution Loop Audit: detect observation chains (6+ reads), low effect ratio (<20%), repeating patterns
17
+ 5. Match evidence: for each claim, find tool output that proves it
18
+ 6. 3-Axis verification: Completeness (all tasks done), Correctness (tests verify real behavior), Coherence (follows patterns)
19
+ 7. Verdict: CONFIRMED / UNCONFIRMED / CONTRADICTED
20
+
21
+ **Critical Rules:**
22
+ - Every claim requires evidence — no evidence = UNCONFIRMED = BLOCK
23
+ - Default-FAIL mindset: actively seek 3-5 issues; zero issues = red flag
24
+ - Check for partial completion (80% but claimed 100%)
25
+ - All 3 axes (Completeness/Correctness/Coherence) must be represented
26
+
27
+ Read `skills/completion-gate/SKILL.md` for the full specification.