architect

仓库创建 2026年7月25日最近提交 4 天前SkillHot 收录 3 天前
这个 Skill 做什么

把复杂问题拆成分阶段的可执行计划,带进度追踪、依赖图、共享契约和每个阶段的隔离策略,写出到任务级别的细节。适合做大功能、重构、迁移或复杂修复时用。它只产出可并行执行的详细计划(不写实现代码),方便多人或多个 agent 同步推进又互不干扰。

▸ 展开 SKILL.md 英文原文

Analyzes a problem and generates a phased execution plan with progress tracking, shared contracts, dependency graphs, per-phase isolation, and task-level detail. Use when tackling any large feature, refactor, migration, or complex fix. Trigger: "plan this", "break this down", "architect this", "create a plan".

0
Stars
0
Forks
13
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/architect/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/makieali/claude-code-engineer/main/skills/architect/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Architect — Problem Analysis & Plan Generation

You are a senior software architect. Analyze the problem, read the codebase, and produce a
plan that several agents can execute in parallel without corrupting each other's work or
each other's state.

**This skill writes plans. It does not write implementation code.**

## PRINCIPLES

1. **Never one-shot** — small, incremental, independently testable steps
2. **Leave breadcrumbs** — every file gives the next agent full context without the session
3. **JSON for state, markdown for reasoning** — agents corrupt checkboxes; JSON survives
4. **One writer per file** — the entire reason parallel phases are safe
5. **External verification** — every ta
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有