@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.
- package/LICENSE +21 -0
- package/README.md +357 -0
- package/agents/.gitkeep +0 -0
- package/agents/architect.md +29 -0
- package/agents/asset-creator.md +11 -0
- package/agents/audit.md +11 -0
- package/agents/autopsy.md +11 -0
- package/agents/brainstorm.md +11 -0
- package/agents/browser-pilot.md +11 -0
- package/agents/coder.md +29 -0
- package/agents/completion-gate.md +11 -0
- package/agents/constraint-check.md +11 -0
- package/agents/context-engine.md +11 -0
- package/agents/cook.md +11 -0
- package/agents/db.md +11 -0
- package/agents/debug.md +11 -0
- package/agents/dependency-doctor.md +11 -0
- package/agents/deploy.md +11 -0
- package/agents/design.md +11 -0
- package/agents/docs-seeker.md +11 -0
- package/agents/fix.md +11 -0
- package/agents/hallucination-guard.md +11 -0
- package/agents/incident.md +11 -0
- package/agents/integrity-check.md +11 -0
- package/agents/journal.md +11 -0
- package/agents/launch.md +11 -0
- package/agents/logic-guardian.md +11 -0
- package/agents/marketing.md +11 -0
- package/agents/onboard.md +11 -0
- package/agents/perf.md +11 -0
- package/agents/plan.md +11 -0
- package/agents/preflight.md +11 -0
- package/agents/problem-solver.md +11 -0
- package/agents/rescue.md +11 -0
- package/agents/research.md +11 -0
- package/agents/researcher.md +29 -0
- package/agents/review-intake.md +11 -0
- package/agents/review.md +11 -0
- package/agents/reviewer.md +28 -0
- package/agents/safeguard.md +11 -0
- package/agents/sast.md +11 -0
- package/agents/scanner.md +28 -0
- package/agents/scope-guard.md +11 -0
- package/agents/scout.md +11 -0
- package/agents/sentinel.md +11 -0
- package/agents/sequential-thinking.md +11 -0
- package/agents/session-bridge.md +11 -0
- package/agents/skill-forge.md +11 -0
- package/agents/skill-router.md +11 -0
- package/agents/surgeon.md +11 -0
- package/agents/team.md +11 -0
- package/agents/test.md +11 -0
- package/agents/trend-scout.md +11 -0
- package/agents/verification.md +11 -0
- package/agents/video-creator.md +11 -0
- package/agents/watchdog.md +11 -0
- package/agents/worktree.md +11 -0
- package/commands/.gitkeep +0 -0
- package/commands/rune.md +168 -0
- package/compiler/__tests__/openclaw-adapter.test.js +140 -0
- package/compiler/__tests__/parser.test.js +55 -0
- package/compiler/adapters/antigravity.js +59 -0
- package/compiler/adapters/claude.js +37 -0
- package/compiler/adapters/cursor.js +67 -0
- package/compiler/adapters/generic.js +60 -0
- package/compiler/adapters/index.js +45 -0
- package/compiler/adapters/openclaw.js +150 -0
- package/compiler/adapters/windsurf.js +60 -0
- package/compiler/bin/rune.js +288 -0
- package/compiler/doctor.js +153 -0
- package/compiler/emitter.js +240 -0
- package/compiler/parser.js +208 -0
- package/compiler/transformer.js +69 -0
- package/compiler/transforms/branding.js +27 -0
- package/compiler/transforms/cross-references.js +29 -0
- package/compiler/transforms/frontmatter.js +38 -0
- package/compiler/transforms/hooks.js +68 -0
- package/compiler/transforms/subagents.js +36 -0
- package/compiler/transforms/tool-names.js +60 -0
- package/contexts/dev.md +34 -0
- package/contexts/research.md +43 -0
- package/contexts/review.md +55 -0
- package/extensions/ai-ml/PACK.md +517 -0
- package/extensions/analytics/PACK.md +557 -0
- package/extensions/backend/PACK.md +678 -0
- package/extensions/chrome-ext/PACK.md +995 -0
- package/extensions/content/PACK.md +381 -0
- package/extensions/devops/PACK.md +520 -0
- package/extensions/ecommerce/PACK.md +280 -0
- package/extensions/gamedev/PACK.md +393 -0
- package/extensions/mobile/PACK.md +273 -0
- package/extensions/saas/PACK.md +805 -0
- package/extensions/security/PACK.md +536 -0
- package/extensions/trading/PACK.md +597 -0
- package/extensions/ui/PACK.md +947 -0
- package/package.json +47 -0
- package/skills/.gitkeep +0 -0
- package/skills/adversary/SKILL.md +271 -0
- package/skills/asset-creator/SKILL.md +157 -0
- package/skills/audit/SKILL.md +466 -0
- package/skills/autopsy/SKILL.md +200 -0
- package/skills/ba/SKILL.md +279 -0
- package/skills/brainstorm/SKILL.md +266 -0
- package/skills/browser-pilot/SKILL.md +168 -0
- package/skills/completion-gate/SKILL.md +151 -0
- package/skills/constraint-check/SKILL.md +165 -0
- package/skills/context-engine/SKILL.md +176 -0
- package/skills/cook/SKILL.md +636 -0
- package/skills/db/SKILL.md +256 -0
- package/skills/debug/SKILL.md +240 -0
- package/skills/dependency-doctor/SKILL.md +235 -0
- package/skills/deploy/SKILL.md +174 -0
- package/skills/design/DESIGN-REFERENCE.md +365 -0
- package/skills/design/SKILL.md +462 -0
- package/skills/doc-processor/SKILL.md +254 -0
- package/skills/docs/SKILL.md +336 -0
- package/skills/docs-seeker/SKILL.md +166 -0
- package/skills/fix/SKILL.md +192 -0
- package/skills/git/SKILL.md +285 -0
- package/skills/hallucination-guard/SKILL.md +204 -0
- package/skills/incident/SKILL.md +241 -0
- package/skills/integrity-check/SKILL.md +169 -0
- package/skills/journal/SKILL.md +190 -0
- package/skills/launch/SKILL.md +330 -0
- package/skills/logic-guardian/SKILL.md +240 -0
- package/skills/marketing/SKILL.md +229 -0
- package/skills/mcp-builder/SKILL.md +311 -0
- package/skills/onboard/SKILL.md +298 -0
- package/skills/perf/SKILL.md +297 -0
- package/skills/plan/SKILL.md +520 -0
- package/skills/preflight/SKILL.md +231 -0
- package/skills/problem-solver/SKILL.md +284 -0
- package/skills/rescue/SKILL.md +434 -0
- package/skills/research/SKILL.md +122 -0
- package/skills/review/SKILL.md +354 -0
- package/skills/review-intake/SKILL.md +222 -0
- package/skills/safeguard/SKILL.md +188 -0
- package/skills/sast/SKILL.md +190 -0
- package/skills/scaffold/SKILL.md +276 -0
- package/skills/scope-guard/SKILL.md +150 -0
- package/skills/scout/SKILL.md +232 -0
- package/skills/sentinel/SKILL.md +320 -0
- package/skills/sentinel-env/SKILL.md +226 -0
- package/skills/sequential-thinking/SKILL.md +234 -0
- package/skills/session-bridge/SKILL.md +287 -0
- package/skills/skill-forge/SKILL.md +317 -0
- package/skills/skill-router/SKILL.md +267 -0
- package/skills/surgeon/SKILL.md +203 -0
- package/skills/team/SKILL.md +397 -0
- package/skills/test/SKILL.md +271 -0
- package/skills/trend-scout/SKILL.md +145 -0
- package/skills/verification/SKILL.md +201 -0
- package/skills/video-creator/SKILL.md +201 -0
- package/skills/watchdog/SKILL.md +166 -0
- 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.
|
package/agents/launch.md
ADDED
|
@@ -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.
|
package/agents/rescue.md
ADDED
|
@@ -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.
|
package/agents/review.md
ADDED
|
@@ -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.
|
package/agents/scout.md
ADDED
|
@@ -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
|
package/commands/rune.md
ADDED
|
@@ -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.
|