Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

project-architect项目建筑师

Agent Skill

project-architect 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,398

周安装

103

GitHub Stars

135

下载量

840
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:project-architect(项目建筑师)
来源仓库:https://github.com/ersinkoc/project-architect
仓库路径:skills/project-architect
安装命令:
npx skills add https://github.com/ersinkoc/project-architect --skill project-architect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ersinkoc/project-architect --skill project-architect

简介

project-architect 生成面向实现的蓝图文档与 Claude Code 就绪提示词,实现深度规划先行。

  • 输出包含 SPECIFICATION.md、IMPLEMENTATION.md、TASKS.md、BRANDING.md 和 PROMPT.md 的完整文档流水线。
  • 采用文档驱动开发理念,先明确规范再执行,减少运行时歧义与返工成本。
  • 适用于从零启动新项目或重构现有系统的复杂工程场景。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Project Architect

A documentation-first project planning system that produces implementation-ready blueprints and Claude Code-ready prompts. The philosophy: think deeply, document thoroughly, then execute with zero ambiguity.

Output Pipeline

[Discovery]  →  SPECIFICATION.md  →  IMPLEMENTATION.md  →  TASKS.md  →  BRANDING.md
                  (The What)           (The How)           (The Work)    (Identity)
                       ↓                    ↓                   ↓
                       └────────────────────┴───────────────────┘
                                          ↓
                                     PROMPT.md
                              (Claude Code Single-Shot)

Each document feeds the next. The final PROMPT.md synthesizes all documents into a single prompt optimized for Claude Code execution.

Reference Files

Read the appropriate reference file before generating each document:

PhaseReference FileWhen to Read
Discovery${CLAUDE_PLUGIN_ROOT}/references/elicitation-guide.mdBefore asking any questions
Tech Stack${CLAUDE_PLUGIN_ROOT}/references/tech-stacks.mdWhen user needs stack selection help
Patterns${CLAUDE_PLUGIN_ROOT}/references/design-patterns.mdWhen making architecture decisions
Specification${CLAUDE_PLUGIN_ROOT}/references/specification-guide.mdBefore generating SPECIFICATION.md
Implementation${CLAUDE_PLUGIN_ROOT}/references/implementation-guide.mdBefore generating IMPLEMENTATION.md
Tasks${CLAUDE_PLUGIN_ROOT}/references/tasks-guide.mdBefore generating TASKS.md
Branding${CLAUDE_PLUGIN_ROOT}/references/branding-guide.mdBefore generating BRANDING.md
Prompt${CLAUDE_PLUGIN_ROOT}/references/claude-code-prompt.mdBefore generating PROMPT.md

Workflow

Phase 0: Discovery & Elicitation

Read ${CLAUDE_PLUGIN_ROOT}/references/elicitation-guide.md for the full question framework.

Before writing anything, understand the project through structured conversation. Use AskUserQuestion tool aggressively for choices — the user should tap, not type, whenever possible.

Minimum understanding before any document generation:

  1. What does this project do? (elevator pitch)
  2. Who is it for? (target audience)
  3. What's the project type? (web app, CLI, library, API, mobile, desktop, infra tool)
  4. What's the scope? (MVP vs full product)
  5. Tech stack direction (or "help me choose")

If the user says "help me choose a stack": Read ${CLAUDE_PLUGIN_ROOT}/references/tech-stacks.md and run the interactive stack selection flow. Present options with trade-offs using AskUserQuestion.

Phase 1: SPECIFICATION.md

Read ${CLAUDE_PLUGIN_ROOT}/references/specification-guide.md before generating.

Defines what the project is. Technology-aware but not implementation-detailed. After generating, pause for user review.

Phase 2: IMPLEMENTATION.md

Read ${CLAUDE_PLUGIN_ROOT}/references/implementation-guide.md AND ${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md before generating.

Translates specification into how to build it. This is where you:

  • Recommend design patterns based on the project's needs (consult patterns reference)
  • Define concrete directory structures with file-by-file purpose
  • Choose dependencies with rationale
  • Define module interfaces and data flows
  • Include code snippets for critical patterns (signatures, types, structural examples)

Pattern Recommendations: Consult ${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md and recommend specific patterns with rationale. Don't just name-drop — show how each pattern applies to THIS project with a short code sketch.

Phase 3: TASKS.md

Read ${CLAUDE_PLUGIN_ROOT}/references/tasks-guide.md before generating.

Converts implementation into ordered work items. Each task must be:

  • Completable by Claude Code in a single session
  • Self-contained with full context
  • Ordered by strict dependency chain
  • Include the exact files to create/modify

Phase 4: BRANDING.md (Optional)

Read ${CLAUDE_PLUGIN_ROOT}/references/branding-guide.md before generating.

Only generate if user wants it or the project is user-facing.

Phase 5: PROMPT.md (Always Generate)

Read ${CLAUDE_PLUGIN_ROOT}/references/claude-code-prompt.md before generating.

This is the most critical output. Synthesize all documents into a single-shot prompt that Claude Code can execute to build the entire project from scratch. The prompt must be completely self-contained, with inline code for complex patterns and an ordered checklist of every file to create.

Operating Rules

  1. Document order is sequential. SPEC → IMPL → TASKS → BRANDING → PROMPT. Never skip ahead.
  2. Pause between documents. Present each doc, ask for approval before the next.
  3. Use AskUserQuestion for decisions. Tech stack, database, auth, deployment — any decision with 2-4 clear options should use interactive selection, not freeform questions.
  4. Recommend, don't dictate. Present 2-3 options with trade-offs. Let user choose. If user says "you pick", choose and explain why.
  5. Scale to project size. Weekend project = concise docs, 15-30 tasks. Enterprise platform = thorough docs, 100+ tasks. Match depth to ambition.
  6. Always save as files. Every document goes to ./[project-name]/docs/ in the current working directory as Markdown files. Use the Write tool to save them.
  7. Cross-reference between documents. IMPL references SPEC sections. TASKS reference IMPL modules. PROMPT inlines everything needed.
  8. No filler. Every line must be specific to THIS project. Remove sections that would be generic boilerplate.
  9. Design patterns are recommendations. When choosing patterns for IMPLEMENTATION.md, consult ${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md and match patterns to the project's specific needs. Include a brief "why this pattern" rationale for each recommendation.

Plugin-Aware Integration

Check if the user has other Claude Code plugins or skills installed. If they do:

  • Frontend framework planner (react-app-planner, nextjs-app-planner, etc.) → Suggest using it for deeper framework decisions after architect docs are done
  • Frontend design → Reference it for UI component guidance in IMPLEMENTATION.md
  • Brand/design skills → Integrate into BRANDING.md generation
  • MCP builder → If project includes an MCP server, note the skill for implementation phase
  • Language-specific skills (typescript-mastery, etc.) → Incorporate coding standards from that skill into IMPLEMENTATION.md

Mention relevant skills naturally: "You have a react-app-planner skill — want me to use it for deeper React architecture decisions after we finish the high-level plan?"

Handling Partial Input

ScenarioAction
Vague 1-linerFull elicitation flow with AskUserQuestion
Detailed briefExtract answers, ask only gaps
Existing spec uploadedValidate, suggest improvements, continue from Phase 2
"Just the spec"Generate SPECIFICATION.md only, offer to continue later
"Skip to tasks"Gather context, generate lightweight spec+impl, then tasks
"Just give me a prompt"Condensed discovery → direct PROMPT.md generation
"Help me choose a stack"Run tech stack advisor from ${CLAUDE_PLUGIN_ROOT}/references/tech-stacks.md
"What patterns should I use?"Consult ${CLAUDE_PLUGIN_ROOT}/references/design-patterns.md, ask about project

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.41%
按下载量换算297

Claude

28.69%
按下载量换算241

Cursor

18.34%
按下载量换算154

Gemini CLI

10.35%
按下载量换算87

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills