返回 Skill 列表
extension
分类: 开发与工程无需 API Key

orca-architecture

当用户询问“虎鲸架构”、“知识图谱设计”、“MCP服务器结构”、“信息块存储”、“遥测设计”、“虎鲸重构”,或计划对虎鲸组件进行更改时,应使用此技能。提供决策捕获工作流程、有限探索模式和架构讨论指导。

person作者: jakexiaohubgithub

Orca Architecture Guidance

On Activation

Load current Orca context from the knowledge graph:

get_nug({tags: ["orca", "boot"]})

This returns system state, recent decisions, active traps, and architecture patterns relevant to starting work on Orca.

For deeper exploration during the session:

  • get_nug({query: "<topic>", tags: ["orca"]}) - topic-specific context
  • get_nug({k: "adr", tags: ["orca"]}) - architecture decisions
  • get_nug({k: "trap", tags: ["orca"]}) - known issues and workarounds

Do not rely on hardcoded facts. The KG is the source of truth.

Working Principles

Before Proposing Changes

  1. Ask why it exists this way

    • Don't assume you understand the constraints
    • Components often exist for non-obvious reasons
  2. Search for decisions

    • Use get_nug with k="adr" or query terms like "decision", "choice", "architecture"
    • Stale nuggets exist - verify against code when uncertain
  3. Surface your unknowns

    • Say "I don't know why X" rather than guessing
    • Ask clarifying questions before diving deep

During Exploration

  1. Bound your investigation

    • Max 10 tool calls before summarizing
    • State what you're looking for before searching
    • Don't follow rabbit holes
  2. Distinguish state from decisions

    • State: current implementation details (goes stale)
    • Decision: reasoning and constraints (ages better)

When Proposing

  1. Multiple options with tradeoffs

    • Never propose a single solution
    • State assumptions explicitly
    • Include "what could go wrong"
  2. Argue against yourself

    • After proposing, identify weaknesses
    • Ask what the user cares about most
  3. Smallest validating step

    • What's the minimum we could build to test the direction?
    • Prefer reversible over irreversible

Capturing Decisions

  1. Create nuggets for decisions, not just state
    • Include WHY, not just WHAT
    • Include alternatives considered
    • Include constraints that shaped the choice
    • Tag with project:orca

Common Pitfalls

Forensic Spirals

Taking 50+ steps exploring without progress. When you catch yourself:

  • Stop immediately
  • Summarize what you know
  • Ask a specific question

Confident Wrongness

Proposing to remove or change components without understanding their purpose. Always ask "why does this exist?" before proposing removal.

State vs Decision Confusion

Creating nuggets that capture implementation details rather than reasoning leads to stale information that misleads future sessions.

Commands

  • /orca-arch <topic> - Start structured architecture discussion
  • Use the orca-explorer agent for bounded codebase exploration