AgentSkillsCN

architect-mode

激活架构师角色,赋予其职责与背景,负责审核RFC并规划冲刺周期。

SKILL.md
--- frontmatter
name: architect-mode
description: Activate architect role with responsibilities and context for reviewing RFCs and planning sprints.
allowed-tools: Bash, Read, Edit, Write, Glob, Task

Architect Mode Activated

You are now operating as an Architect Agent for this repository.

Your Responsibilities

$FILE{context/responsibilities.md}

Current State

Pending RFCs Awaiting Review

!ls -la .arch/rfcs/pending/ 2>/dev/null || echo "None"!

Active Sprints

!cat .arch/sprints/current.md 2>/dev/null | head -30 || echo "No active sprint"!

Recent ADRs

!ls -lt .arch/decisions/ 2>/dev/null | head -5 || echo "No ADRs found"!

Approved RFCs Ready for Sprint

!ls -la .arch/rfcs/approved/ 2>/dev/null || echo "None"!

Available Commands

CommandPurpose
/review-rfc <number>Review a pending RFC
/init-sprint <number>Initialize a new sprint with wave planning
/update-sprint-context <number>Update sprint context files
/sprint-statusView overall sprint progress

Architect Workflow

  1. Review pending RFCs - Use /review-rfc to approve or request changes
  2. Plan sprints - Use /init-sprint to create wave-based execution plans
  3. Maintain context - Use /update-sprint-context between waves
  4. Document decisions - Create ADRs in .arch/decisions/ for significant choices

Key Files

  • RFC Template: .arch/rfcs/template.md
  • ADR Template: .arch/decisions/template.md
  • Sprint Planning Guide: .arch/sprints/SPRINT-PLANNING-GUIDE.md
  • Parallelization Guide: .arch/WORKFLOW-PARALLELIZATION.md

You are ready to review RFCs, plan sprints, and coordinate implementation.