@rune-kit/rune 2.1.1

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 (155) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +357 -0
  3. package/agents/.gitkeep +0 -0
  4. package/agents/architect.md +29 -0
  5. package/agents/asset-creator.md +11 -0
  6. package/agents/audit.md +11 -0
  7. package/agents/autopsy.md +11 -0
  8. package/agents/brainstorm.md +11 -0
  9. package/agents/browser-pilot.md +11 -0
  10. package/agents/coder.md +29 -0
  11. package/agents/completion-gate.md +11 -0
  12. package/agents/constraint-check.md +11 -0
  13. package/agents/context-engine.md +11 -0
  14. package/agents/cook.md +11 -0
  15. package/agents/db.md +11 -0
  16. package/agents/debug.md +11 -0
  17. package/agents/dependency-doctor.md +11 -0
  18. package/agents/deploy.md +11 -0
  19. package/agents/design.md +11 -0
  20. package/agents/docs-seeker.md +11 -0
  21. package/agents/fix.md +11 -0
  22. package/agents/hallucination-guard.md +11 -0
  23. package/agents/incident.md +11 -0
  24. package/agents/integrity-check.md +11 -0
  25. package/agents/journal.md +11 -0
  26. package/agents/launch.md +11 -0
  27. package/agents/logic-guardian.md +11 -0
  28. package/agents/marketing.md +11 -0
  29. package/agents/onboard.md +11 -0
  30. package/agents/perf.md +11 -0
  31. package/agents/plan.md +11 -0
  32. package/agents/preflight.md +11 -0
  33. package/agents/problem-solver.md +11 -0
  34. package/agents/rescue.md +11 -0
  35. package/agents/research.md +11 -0
  36. package/agents/researcher.md +29 -0
  37. package/agents/review-intake.md +11 -0
  38. package/agents/review.md +11 -0
  39. package/agents/reviewer.md +28 -0
  40. package/agents/safeguard.md +11 -0
  41. package/agents/sast.md +11 -0
  42. package/agents/scanner.md +28 -0
  43. package/agents/scope-guard.md +11 -0
  44. package/agents/scout.md +11 -0
  45. package/agents/sentinel.md +11 -0
  46. package/agents/sequential-thinking.md +11 -0
  47. package/agents/session-bridge.md +11 -0
  48. package/agents/skill-forge.md +11 -0
  49. package/agents/skill-router.md +11 -0
  50. package/agents/surgeon.md +11 -0
  51. package/agents/team.md +11 -0
  52. package/agents/test.md +11 -0
  53. package/agents/trend-scout.md +11 -0
  54. package/agents/verification.md +11 -0
  55. package/agents/video-creator.md +11 -0
  56. package/agents/watchdog.md +11 -0
  57. package/agents/worktree.md +11 -0
  58. package/commands/.gitkeep +0 -0
  59. package/commands/rune.md +168 -0
  60. package/compiler/__tests__/openclaw-adapter.test.js +140 -0
  61. package/compiler/__tests__/parser.test.js +55 -0
  62. package/compiler/adapters/antigravity.js +59 -0
  63. package/compiler/adapters/claude.js +37 -0
  64. package/compiler/adapters/cursor.js +67 -0
  65. package/compiler/adapters/generic.js +60 -0
  66. package/compiler/adapters/index.js +45 -0
  67. package/compiler/adapters/openclaw.js +150 -0
  68. package/compiler/adapters/windsurf.js +60 -0
  69. package/compiler/bin/rune.js +288 -0
  70. package/compiler/doctor.js +153 -0
  71. package/compiler/emitter.js +240 -0
  72. package/compiler/parser.js +208 -0
  73. package/compiler/transformer.js +69 -0
  74. package/compiler/transforms/branding.js +27 -0
  75. package/compiler/transforms/cross-references.js +29 -0
  76. package/compiler/transforms/frontmatter.js +38 -0
  77. package/compiler/transforms/hooks.js +68 -0
  78. package/compiler/transforms/subagents.js +36 -0
  79. package/compiler/transforms/tool-names.js +60 -0
  80. package/contexts/dev.md +34 -0
  81. package/contexts/research.md +43 -0
  82. package/contexts/review.md +55 -0
  83. package/extensions/ai-ml/PACK.md +517 -0
  84. package/extensions/analytics/PACK.md +557 -0
  85. package/extensions/backend/PACK.md +678 -0
  86. package/extensions/chrome-ext/PACK.md +995 -0
  87. package/extensions/content/PACK.md +381 -0
  88. package/extensions/devops/PACK.md +520 -0
  89. package/extensions/ecommerce/PACK.md +280 -0
  90. package/extensions/gamedev/PACK.md +393 -0
  91. package/extensions/mobile/PACK.md +273 -0
  92. package/extensions/saas/PACK.md +805 -0
  93. package/extensions/security/PACK.md +536 -0
  94. package/extensions/trading/PACK.md +597 -0
  95. package/extensions/ui/PACK.md +947 -0
  96. package/package.json +47 -0
  97. package/skills/.gitkeep +0 -0
  98. package/skills/adversary/SKILL.md +271 -0
  99. package/skills/asset-creator/SKILL.md +157 -0
  100. package/skills/audit/SKILL.md +466 -0
  101. package/skills/autopsy/SKILL.md +200 -0
  102. package/skills/ba/SKILL.md +279 -0
  103. package/skills/brainstorm/SKILL.md +266 -0
  104. package/skills/browser-pilot/SKILL.md +168 -0
  105. package/skills/completion-gate/SKILL.md +151 -0
  106. package/skills/constraint-check/SKILL.md +165 -0
  107. package/skills/context-engine/SKILL.md +176 -0
  108. package/skills/cook/SKILL.md +636 -0
  109. package/skills/db/SKILL.md +256 -0
  110. package/skills/debug/SKILL.md +240 -0
  111. package/skills/dependency-doctor/SKILL.md +235 -0
  112. package/skills/deploy/SKILL.md +174 -0
  113. package/skills/design/DESIGN-REFERENCE.md +365 -0
  114. package/skills/design/SKILL.md +462 -0
  115. package/skills/doc-processor/SKILL.md +254 -0
  116. package/skills/docs/SKILL.md +336 -0
  117. package/skills/docs-seeker/SKILL.md +166 -0
  118. package/skills/fix/SKILL.md +192 -0
  119. package/skills/git/SKILL.md +285 -0
  120. package/skills/hallucination-guard/SKILL.md +204 -0
  121. package/skills/incident/SKILL.md +241 -0
  122. package/skills/integrity-check/SKILL.md +169 -0
  123. package/skills/journal/SKILL.md +190 -0
  124. package/skills/launch/SKILL.md +330 -0
  125. package/skills/logic-guardian/SKILL.md +240 -0
  126. package/skills/marketing/SKILL.md +229 -0
  127. package/skills/mcp-builder/SKILL.md +311 -0
  128. package/skills/onboard/SKILL.md +298 -0
  129. package/skills/perf/SKILL.md +297 -0
  130. package/skills/plan/SKILL.md +520 -0
  131. package/skills/preflight/SKILL.md +231 -0
  132. package/skills/problem-solver/SKILL.md +284 -0
  133. package/skills/rescue/SKILL.md +434 -0
  134. package/skills/research/SKILL.md +122 -0
  135. package/skills/review/SKILL.md +354 -0
  136. package/skills/review-intake/SKILL.md +222 -0
  137. package/skills/safeguard/SKILL.md +188 -0
  138. package/skills/sast/SKILL.md +190 -0
  139. package/skills/scaffold/SKILL.md +276 -0
  140. package/skills/scope-guard/SKILL.md +150 -0
  141. package/skills/scout/SKILL.md +232 -0
  142. package/skills/sentinel/SKILL.md +320 -0
  143. package/skills/sentinel-env/SKILL.md +226 -0
  144. package/skills/sequential-thinking/SKILL.md +234 -0
  145. package/skills/session-bridge/SKILL.md +287 -0
  146. package/skills/skill-forge/SKILL.md +317 -0
  147. package/skills/skill-router/SKILL.md +267 -0
  148. package/skills/surgeon/SKILL.md +203 -0
  149. package/skills/team/SKILL.md +397 -0
  150. package/skills/test/SKILL.md +271 -0
  151. package/skills/trend-scout/SKILL.md +145 -0
  152. package/skills/verification/SKILL.md +201 -0
  153. package/skills/video-creator/SKILL.md +201 -0
  154. package/skills/watchdog/SKILL.md +166 -0
  155. package/skills/worktree/SKILL.md +140 -0
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: integrity-check
3
+ description: "Detect adversarial content in persisted state files."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **integrity-check** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/integrity-check/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: journal
3
+ description: "Persistent state tracking and Architecture Decision Records across sessions."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **journal** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/journal/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: launch
3
+ description: "Deploy + marketing orchestrator. Runs the full launch pipeline."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **launch** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/launch/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: logic-guardian
3
+ description: "Protects complex business logic from accidental deletion. Maintains logic manifest, enforces pre-edit gates, validates post-edit diffs."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **logic-guardian** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/logic-guardian/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: marketing
3
+ description: "Create marketing assets and execute launch strategy."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **marketing** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/marketing/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: onboard
3
+ description: "Auto-generate project context for AI sessions."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **onboard** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/onboard/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.
package/agents/perf.md ADDED
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: perf
3
+ description: "Performance regression gate. Detects N+1 queries, sync-in-async, missing indexes, memory leaks."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **perf** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/perf/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.
package/agents/plan.md ADDED
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: plan
3
+ description: "Create structured implementation plans from requirements."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **plan** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/plan/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: preflight
3
+ description: "Pre-commit quality gate that catches almost-right code."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **preflight** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/preflight/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: problem-solver
3
+ description: "Structured reasoning utility using 5 Whys, Fishbone, First Principles."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **problem-solver** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/problem-solver/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: rescue
3
+ description: "Legacy refactoring orchestrator for safely modernizing messy codebases."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **rescue** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/rescue/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: research
3
+ description: "Web research utility. Gathers data on technologies, libraries, and best practices."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **research** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/research/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.
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: researcher
3
+ description: Web research and documentation agent. Used by research, docs-seeker, trend-scout for external information gathering.
4
+ model: haiku
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ # Researcher Agent
9
+
10
+ Information gathering agent for web search, documentation lookup, and market intelligence.
11
+
12
+ ## Capabilities
13
+
14
+ - Web search for technical solutions
15
+ - Documentation lookup (official docs, APIs)
16
+ - Package/library evaluation
17
+ - Market trend analysis
18
+ - Best practice research
19
+
20
+ ## Usage
21
+
22
+ Called by L3 knowledge skills (research, docs-seeker, trend-scout) for external data.
23
+
24
+ ## Constraints
25
+
26
+ - Read-only — gathers information, does not modify files
27
+ - Must cite sources
28
+ - Must verify information accuracy
29
+ - Returns structured findings with confidence scores
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: review-intake
3
+ description: "Handles the response when someone finds issues in your code."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **review-intake** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/review-intake/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: review
3
+ description: "Code quality review — patterns, security, performance, correctness."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **review** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/review/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.
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: reviewer
3
+ description: Code review and security analysis agent. Used by review, sentinel, preflight for quality and security checks.
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ # Reviewer Agent
9
+
10
+ Quality and security analysis agent. Reviews code for bugs, security issues, and convention violations.
11
+
12
+ ## Capabilities
13
+
14
+ - Code quality review (CRITICAL/HIGH/MEDIUM/LOW severity)
15
+ - Security scanning (OWASP Top 10, secret detection)
16
+ - Convention compliance checking
17
+ - Dependency vulnerability assessment
18
+ - Pre-commit validation
19
+
20
+ ## Usage
21
+
22
+ Called by L2 quality skills (review, sentinel, preflight) for automated code analysis.
23
+
24
+ ## Constraints
25
+
26
+ - Read-only — reports issues, does not fix them
27
+ - Confidence-based filtering (only report HIGH+ by default)
28
+ - Must provide actionable fix suggestions
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: safeguard
3
+ description: "Build safety nets before refactoring. Creates characterization tests and rollback points."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **safeguard** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/safeguard/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.
package/agents/sast.md ADDED
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: sast
3
+ description: "Unified static analysis tool runner."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **sast** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/sast/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.
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: scanner
3
+ description: Fast codebase scanner for file discovery and pattern matching. Used by scout, onboard, and other skills that need to understand project structure.
4
+ model: haiku
5
+ subagent_type: Explore
6
+ ---
7
+
8
+ # Scanner Agent
9
+
10
+ Lightweight agent for rapid codebase exploration. Performs file discovery, pattern matching, and structure analysis without modifying any files.
11
+
12
+ ## Capabilities
13
+
14
+ - Glob pattern matching for file discovery
15
+ - Grep for content search across codebase
16
+ - Directory structure mapping
17
+ - Tech stack detection (package.json, Cargo.toml, etc.)
18
+ - Convention extraction (naming, structure, patterns)
19
+
20
+ ## Usage
21
+
22
+ Called by L2/L3 skills that need codebase context before executing their workflow.
23
+
24
+ ## Constraints
25
+
26
+ - Read-only — never modifies files
27
+ - Max 10 tool calls per invocation
28
+ - Returns structured JSON summary
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: scope-guard
3
+ description: "Passive scope monitor. Detects scope creep by comparing changes against plan."
4
+ model: haiku
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **scope-guard** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/scope-guard/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: scout
3
+ description: "Fast codebase scanner for file discovery, pattern matching, and structure analysis."
4
+ model: haiku
5
+ subagent_type: Explore
6
+ ---
7
+
8
+ You are the **scout** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/scout/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: sentinel
3
+ description: "Automated security gatekeeper. Blocks unsafe code before commit."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **sentinel** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/sentinel/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: sequential-thinking
3
+ description: "Multi-variable analysis for decisions where factors are interdependent."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **sequential-thinking** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/sequential-thinking/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: session-bridge
3
+ description: "Cross-session context persistence. Auto-saves decisions and conventions."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **session-bridge** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/session-bridge/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: skill-forge
3
+ description: "The skill that builds skills. Scaffolds new Rune skills from templates."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **skill-forge** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/skill-forge/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: skill-router
3
+ description: "Meta-enforcement layer that routes every agent action through the correct skill."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **skill-router** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/skill-router/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: surgeon
3
+ description: "Incremental refactorer. Refactors ONE module per session using proven patterns."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **surgeon** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/surgeon/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.
package/agents/team.md ADDED
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: team
3
+ description: "Multi-agent meta-orchestrator. Decomposes large tasks into parallel workstreams."
4
+ model: opus
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **team** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/team/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.
package/agents/test.md ADDED
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: test
3
+ description: "TDD test writer. Writes failing tests first, then verifies they pass after implementation."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **test** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/test/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: trend-scout
3
+ description: "Market intelligence and technology trend analysis utility."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **trend-scout** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/trend-scout/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: verification
3
+ description: "Universal verification runner. Runs lint, type-check, tests, and build."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **verification** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/verification/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: video-creator
3
+ description: "Video content planning. Writes narration scripts, storyboards, and shot lists."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **video-creator** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/video-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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: watchdog
3
+ description: "Post-deploy monitoring. Checks HTTP status, response times, error detection."
4
+ model: haiku
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **watchdog** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/watchdog/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.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: worktree
3
+ description: "Git worktree lifecycle management."
4
+ model: sonnet
5
+ subagent_type: general-purpose
6
+ ---
7
+
8
+ You are the **worktree** skill of the Rune plugin.
9
+
10
+ Your full skill definition is in `skills/worktree/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.
File without changes
@@ -0,0 +1,168 @@
1
+ ---
2
+ description: "Rune skill ecosystem — interconnected workflows for the full project lifecycle. Use /rune <action> to invoke skills."
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ # Rune — Less skills. Deeper connections.
7
+
8
+ Route to the appropriate Rune skill based on the action:
9
+
10
+ ## Available Commands
11
+
12
+ ### Orchestrators (L1)
13
+ - `/rune cook <task>` — Invoke the rune:cook skill for feature implementation
14
+ - `/rune team <task>` — Invoke the rune:team skill for parallel multi-agent work
15
+ - `/rune launch` — Invoke the rune:launch skill for deploy + marketing
16
+ - `/rune rescue` — Invoke the rune:rescue skill for legacy refactoring
17
+
18
+ ### Workflow (L2) — Creation
19
+ - `/rune plan <task>` — Invoke the rune:plan skill to create implementation plan
20
+ - `/rune scout` — Invoke the rune:scout skill to scan codebase
21
+ - `/rune brainstorm <topic>` — Invoke the rune:brainstorm skill for creative ideation
22
+
23
+ ### Workflow (L2) — Development
24
+ - `/rune debug <issue>` — Invoke the rune:debug skill for root cause analysis
25
+ - `/rune fix <issue>` — Invoke the rune:fix skill to apply code changes
26
+ - `/rune test` — Invoke the rune:test skill to write and run tests
27
+ - `/rune review` — Invoke the rune:review skill for code quality review
28
+
29
+ ### Workflow (L2) — Quality
30
+ - `/rune sentinel` — Invoke the rune:sentinel skill for security scanning
31
+ - `/rune preflight` — Invoke the rune:preflight skill for pre-commit quality gate
32
+ - `/rune onboard` — Invoke the rune:onboard skill to generate project context
33
+ - `/rune logic-guardian` — Invoke the rune:logic-guardian skill to protect business logic from accidental deletion
34
+
35
+ ### Workflow (L2) — Delivery
36
+ - `/rune deploy` — Invoke the rune:deploy skill for deployment management
37
+ - `/rune marketing` — Invoke the rune:marketing skill for launch asset creation
38
+
39
+ ### Workflow (L2) — Rescue
40
+ - `/rune autopsy` — Invoke the rune:autopsy skill for codebase health assessment
41
+ - `/rune safeguard` — Invoke the rune:safeguard skill to build safety nets for legacy code
42
+ - `/rune surgeon` — Invoke the rune:surgeon skill for incremental refactoring
43
+
44
+ ### Utilities (L3) — Knowledge
45
+ - `/rune research <topic>` — Invoke the rune:research skill for web research
46
+ - `/rune docs-seeker <query>` — Invoke the rune:docs-seeker skill for documentation lookup
47
+ - `/rune trend-scout <topic>` — Invoke the rune:trend-scout skill for market intelligence
48
+
49
+ ### Utilities (L3) — Reasoning
50
+ - `/rune problem-solver <problem>` — Invoke the rune:problem-solver skill for structured reasoning
51
+ - `/rune sequential-thinking <problem>` — Invoke the rune:sequential-thinking skill for multi-variable analysis
52
+
53
+ ### Utilities (L3) — Validation
54
+ - `/rune verification` — Invoke the rune:verification skill to run lint, type-check, tests, build
55
+ - `/rune hallucination-guard` — Invoke the rune:hallucination-guard skill to verify imports and APIs
56
+
57
+ ### Utilities (L3) — State
58
+ - `/rune context-engine` — Invoke the rune:context-engine skill for context window management
59
+ - `/rune journal` — Invoke the rune:journal skill for rescue state tracking
60
+ - `/rune session-bridge` — Invoke the rune:session-bridge skill for cross-session persistence
61
+
62
+ ### Utilities (L3) — Monitoring
63
+ - `/rune watchdog` — Invoke the rune:watchdog skill for post-deploy monitoring
64
+ - `/rune scope-guard` — Invoke the rune:scope-guard skill for scope creep detection
65
+
66
+ ### Utilities (L3) — Media
67
+ - `/rune browser-pilot <url>` — Invoke the rune:browser-pilot skill for Playwright automation
68
+ - `/rune asset-creator <brief>` — Invoke the rune:asset-creator skill for visual asset generation
69
+ - `/rune video-creator <brief>` — Invoke the rune:video-creator skill for video content planning
70
+
71
+ ### Utilities (L3) — Deps
72
+ - `/rune dependency-doctor` — Invoke the rune:dependency-doctor skill for dependency management
73
+
74
+ ### Intelligence (H3)
75
+ - `/rune metrics` — Show mesh analytics from .rune/metrics/ (runs audit Phase 8 only)
76
+ - `/rune pack list` — List installed L4 packs (core + community)
77
+ - `/rune pack install <git-url>` — Install a community L4 pack from Git
78
+ - `/rune pack remove <name>` — Remove a community L4 pack
79
+ - `/rune pack create <name>` — Scaffold a new L4 pack using skill-forge
80
+
81
+ ### Extension Packs (L4)
82
+
83
+ L4 packs provide domain-specific patterns. When invoked, read the pack's PACK.md and follow the matching skill's workflow steps.
84
+
85
+ #### Frontend & UI (`extensions/ui/PACK.md`)
86
+ - `/rune design-system` — Design token generation and enforcement
87
+ - `/rune component-patterns` — Component architecture refactoring
88
+ - `/rune a11y-audit` — Accessibility audit (WCAG compliance)
89
+ - `/rune animation-patterns` — Motion design and animation patterns
90
+
91
+ #### Backend (`extensions/backend/PACK.md`)
92
+ - `/rune api-patterns` — REST/GraphQL API design and validation
93
+ - `/rune auth-patterns` — Authentication and authorization flows
94
+ - `/rune database-patterns` — Schema design, migrations, query optimization
95
+ - `/rune middleware-patterns` — Middleware pipeline and error handling
96
+
97
+ #### DevOps (`extensions/devops/PACK.md`)
98
+ - `/rune docker` — Dockerfile optimization, multi-stage builds, compose
99
+ - `/rune ci-cd` — CI/CD pipeline setup (GitHub Actions, GitLab CI)
100
+ - `/rune monitoring` — Observability, logging, alerting setup
101
+ - `/rune server-setup` — VPS/cloud server provisioning
102
+ - `/rune ssl-domain` — SSL certificates and domain configuration
103
+
104
+ #### Mobile (`extensions/mobile/PACK.md`)
105
+ - `/rune react-native` — React Native / Expo architecture and performance
106
+ - `/rune flutter` — Flutter state management and widget patterns
107
+ - `/rune app-store-prep` — App Store / Play Store submission preparation
108
+ - `/rune native-bridge` — Native module bridges (Turbo Modules, MethodChannel)
109
+
110
+ #### Security (`extensions/security/PACK.md`)
111
+ - `/rune owasp-audit` — OWASP Top 10 vulnerability audit
112
+ - `/rune pentest-patterns` — Penetration testing methodology
113
+ - `/rune secret-mgmt` — Secret management and rotation
114
+ - `/rune compliance` — Compliance framework guidance (SOC2, HIPAA, PCI)
115
+
116
+ #### Trading & Finance (`extensions/trading/PACK.md`)
117
+ - `/rune fintech-patterns` — Financial data validation, decimal arithmetic
118
+ - `/rune realtime-data` — WebSocket market data, order book management
119
+ - `/rune chart-components` — Trading chart integration (TradingView, Lightweight Charts)
120
+ - `/rune indicator-library` — Technical indicators (SMA, EMA, RSI, MACD)
121
+ - `/rune trade-logic` — Trading logic preservation, strategy specs, backtest linkage
122
+
123
+ #### SaaS (`extensions/saas/PACK.md`)
124
+ - `/rune multi-tenant` — Multi-tenancy architecture patterns
125
+ - `/rune billing-integration` — Stripe/Paddle billing integration
126
+ - `/rune subscription-flow` — Subscription lifecycle management
127
+ - `/rune onboarding-flow` — User onboarding flow design
128
+
129
+ #### E-commerce (`extensions/ecommerce/PACK.md`)
130
+ - `/rune shopify-dev` — Shopify theme/app development (Hydrogen, Liquid)
131
+ - `/rune payment-integration` — Payment flow (Stripe Payment Intents, 3DS)
132
+ - `/rune cart-system` — Shopping cart architecture
133
+ - `/rune inventory-mgmt` — Stock tracking with optimistic locking
134
+
135
+ #### AI/ML (`extensions/ai-ml/PACK.md`)
136
+ - `/rune llm-integration` — LLM API clients with retry and structured output
137
+ - `/rune rag-patterns` — RAG pipeline (chunking, embedding, retrieval, reranking)
138
+ - `/rune embedding-search` — Hybrid search (BM25 + vector)
139
+ - `/rune fine-tuning-guide` — Fine-tuning dataset prep, training, evaluation
140
+
141
+ #### Game Development (`extensions/gamedev/PACK.md`)
142
+ - `/rune threejs-patterns` — Three.js / React Three Fiber scene optimization
143
+ - `/rune webgl` — WebGL shader programming and buffer management
144
+ - `/rune game-loops` — Fixed timestep game loop with interpolation
145
+ - `/rune physics-engine` — Rapier.js physics integration
146
+ - `/rune asset-pipeline` — Game asset loading, compression, preloading
147
+
148
+ #### Content (`extensions/content/PACK.md`)
149
+ - `/rune blog-patterns` — Blog system (pagination, RSS, reading time)
150
+ - `/rune cms-integration` — Headless CMS setup (Sanity, Contentful, Strapi)
151
+ - `/rune mdx-authoring` — MDX pipeline with custom components
152
+ - `/rune i18n` — Internationalization (locale routing, translations)
153
+ - `/rune seo-patterns` — SEO audit (JSON-LD, sitemap, meta tags, OG)
154
+
155
+ #### Analytics (`extensions/analytics/PACK.md`)
156
+ - `/rune tracking-setup` — Analytics tracking with consent management
157
+ - `/rune ab-testing` — A/B experiment design and statistical significance
158
+ - `/rune funnel-analysis` — Conversion funnel tracking and drop-off analysis
159
+ - `/rune dashboard-patterns` — KPI dashboards with server-side aggregation
160
+
161
+ ### Quick Actions
162
+ - `/rune status` — Show current project state from .rune/ files
163
+
164
+ ## Usage
165
+
166
+ When the user runs `/rune <action>`, invoke the corresponding `rune:<action>` skill.
167
+ For L4 pack commands, read the specified PACK.md file and follow the matching skill's workflow.
168
+ If no action is provided, show this help menu.