AgentSkillsCN

runebearer-guide

提供正确调用符文智能体的快速参考指南。 此技能适用于孵化智能体、排查“未找到智能体”错误,或选择评审智能体时使用。 <示例> 上下文:用户想了解当前有哪些智能体可用 用户:“符文有哪些评审智能体?” 助手:“正在加载符文守护者指南,以获取智能体参考表。” </示例>

SKILL.md
--- frontmatter
name: runebearer-guide
description: |
  Provides a quick reference for invoking Rune agents correctly.
  This skill should be used when spawning agents, troubleshooting "agent not found" errors, or selecting review agents.

  <example>
  Context: User wants to know which agents are available
  user: "What review agents does Rune have?"
  assistant: "Loading runebearer-guide for the agent reference table"
  </example>
user-invocable: false
allowed-tools:
  - Read
  - Glob

Runebearer Guide

Quick reference for all Rune plugin agents, their roles, and invocation patterns.

Agent Invocation

All Rune agents are plugin agents. Invoke with the rune: namespace prefix:

code
Task rune:review:ward-sentinel("Review these files for security")
Task rune:review:ember-oracle("Check performance bottlenecks")
Task rune:utility:runebinder("Aggregate review findings")

Common mistake: Using agent name without namespace prefix.

code
# WRONG - agent not found
Task ward-sentinel(...)

# CORRECT - full namespace
Task rune:review:ward-sentinel(...)

Review Agents

10 specialized reviewers that form Runebearer teams:

AgentRolePerspective
rune:review:ward-sentinelSecurity reviewVulnerabilities, auth, injection, OWASP, prompt injection
rune:review:ember-oraclePerformance reviewBottlenecks, N+1 queries, async patterns, memory
rune:review:rune-architectArchitecture reviewLayer violations, DDD, dependency direction
rune:review:simplicity-wardenSimplicity reviewYAGNI, over-engineering, premature abstraction
rune:review:flaw-hunterLogic reviewEdge cases, race conditions, null handling, off-by-one
rune:review:mimic-detectorDuplication reviewDRY violations, copy-paste code, similar patterns
rune:review:pattern-seerPattern reviewNaming consistency, convention adherence
rune:review:void-analyzerCompleteness reviewMissing error handling, incomplete implementations
rune:review:wraith-finderDead code reviewUnused functions, unwired code, orphaned files
rune:review:phantom-checkerDynamic reference checkReflection, string-based imports, meta-programming

Runebearer Roles (Consolidated Teammates)

In /rune:review, agents are grouped into max 5 Runebearers:

RunebearerAgents EmbeddedScope
Forge Wardenrune-architect, ember-oracle, flaw-hunter, mimic-detectorBackend code (.py, .go, .rs, .rb, .java)
Ward Sentinelward-sentinelALL files (security always)
Pattern Weaversimplicity-warden, pattern-seer, wraith-finder, phantom-checkerALL files (quality patterns)
Glyph ScribeInline perspectives (TypeScript safety, React performance, accessibility)Frontend code (.ts, .tsx, .js, .jsx)
Knowledge KeeperInline perspectives (accuracy, completeness, consistency)Docs (.md files, conditional)

Note: Forge Warden, Ward Sentinel, and Pattern Weaver embed dedicated review agent files. Glyph Scribe and Knowledge Keeper use inline perspective definitions in their Runebearer prompts (no dedicated agent files).

Utility Agents

AgentRole
rune:utility:runebinderAggregates review/audit outputs → writes TOME.md
rune:utility:truthseer-validatorAudit coverage validation (Phase 5.5)
rune:utility:flow-seerSpec flow analysis
rune:utility:scroll-reviewerDocument quality review

Research Agents

AgentRole
rune:research:practice-seekerExternal best practices research
rune:research:repo-surveyorCodebase/repo exploration
rune:research:codex-scholarFramework documentation research
rune:research:echo-readerReads Rune Echoes (past learnings)
rune:research:git-minerGit history archaeology

Work Agents

AgentRole
rune:work:rune-smithCode implementation (TDD-aware)
rune:work:trial-forgerTest generation

Runebearer Selection Logic

The /rune:review command selects Runebearers based on file extensions (Rune Gaze):

File PatternRunebearers Selected
**/*.pyForge Warden + Ward Sentinel + Pattern Weaver
**/*.{ts,tsx,js,jsx}Glyph Scribe + Ward Sentinel + Pattern Weaver
**/*.md (>= 10 lines changed)Knowledge Keeper (conditional)
Mixed code + docsAll applicable Runebearers

Ward Sentinel and Pattern Weaver are ALWAYS selected regardless of file types.

See roundtable-circle skill for full Runebearer architecture and prompts.