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

architect-plan建筑师计划

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/badrusiddique/enggenie-skill --skill architect-plan

简介

architect-plan 创建分阶段、可独立部署的实施计划,每个步骤包含完整可运行的代码。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中规划复杂功能模块的开发和上线流程。
  • 通过 GitHub 安装,使用 npx skills add 命令添加技能,强调阶段间质量门禁和进度保存。
  • 安装前建议确认权限范围,注意是否会触发文件写入、测试执行或部署脚本运行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

enggenie:architect-plan

Create implementation plans that are phased, independently deployable, and contain complete code in every step. No placeholders. No hand-waving. Every phase can be deployed to production before the next phase begins. If a step says "write a test," the actual test code is right there. If a step says "add a route," the route definition is spelled out.

This is not a flat task list. This is a deployment-sequenced plan with gates between phases. Each phase ships alone or it does not ship at all.


Announcement

When this skill is invoked, announce:

I'm using enggenie:architect-plan to create an implementation plan.

Entry Conditions

Activate this skill when ANY of the following are true:

  • An approved design exists from enggenie:architect-design
  • An approved spec exists from enggenie:pm-refine
  • The user directly requests an implementation plan, task breakdown, or phased plan

Planning Steps

Step 1: Early Scope Check

Before starting the plan, verify scope is manageable:

  • Count the repos/services involved. If more than 3, suggest decomposition into separate plans.
  • Check if the feature spans frontend + backend + infrastructure. If yes, confirm with the user that a single plan is appropriate.
  • If the spec (from pm-refine) already has phases, use those as your starting decomposition.

Step 2: Check for Spec and Jira Context

If the user references a Jira ticket (e.g., "Pick up PROJ-1234", "Plan PROJ-1234"):

Read the Jira ticket first using MCP tools. The ticket contains the handoff context written by the PM — spec file link, key decisions, edge cases, and constraints. Extract:

  • Spec file path from the "For Dev" section
  • Key decisions from the "Key Decisions" section
  • Edge cases and constraints
  • Then READ the linked spec file. Do not summarize from the Jira description alone — the spec file has the full detail.

If Jira MCP is not available, ask the user: "I can't read PROJ-1234 directly. Can you share the spec file path or paste the ticket description?"

If no Jira ticket is referenced but a spec file exists:

If enggenie:pm-refine produced a spec, READ IT. Do not summarize from memory. Open the file.

Inherit from the spec:

  • Phases and their ordering
  • Target repos and services
  • Acceptance criteria for each requirement
  • Edge cases and error scenarios
  • Non-functional requirements (performance, security, etc.)

If neither exists:

Ask the user: "No spec or Jira ticket found. Should I work from your description, or should we run enggenie:pm-refine first?"

Step 3: Codebase Discovery

Use an Explorer subagent (model: sonnet, execution: background) to search the codebase.

The Explorer searches the codebase for:

  • Existing patterns that the implementation should reuse (not reinvent)
  • Utility functions, helpers, shared modules already available
  • Naming conventions, file organization, import patterns
  • Test patterns and test infrastructure already in place
  • Configuration patterns (env vars, feature flags, dependency injection)

If memory-recall is available, search for prior art: "Last time we built something like X, we used pattern Y in repo Z." Pull that context forward.

Do not proceed to task breakdown until discovery is complete. The plan must build on what exists, not ignore it.

Step 4: Doc Discovery

Use a Doc Discovery subagent (model: haiku, execution: standard) to read external documentation.

The Doc Discovery agent reads external API documentation and extracts:

  • Specific method signatures and parameters needed
  • Authentication patterns and token handling
  • Rate limits, pagination, and error response formats
  • SDK versions and breaking changes between versions

Capture exact method names and signatures. The plan will reference these directly -- no "consult the docs" deferrals.

Step 5: File Map

Produce a complete file map. Every file that will be created, modified, or deleted, with a one-line responsibility statement.

Files to CREATE:
  src/services/billing/invoice-generator.ts    - generates invoice PDFs from order data
  src/services/billing/invoice-generator.test.ts - unit tests for invoice generation
  src/api/routes/invoices.ts                   - REST endpoints for invoice CRUD

Files to MODIFY:
  src/api/routes/index.ts                      - register new invoice routes
  src/services/billing/index.ts                - export invoice-generator module
  src/config/permissions.ts                    - add invoice-related permission scopes

Files to DELETE:
  (none)

Every file in the plan must appear in this map. Every file in this map must appear in the plan. No orphans.

Step 6: Phased Task Breakdown

Build the plan using this structure. Phases are ordered by deployment dependency -- downstream services first, then middleware, then upstream consumers.

## Phase 1 -- <service-name> (downstream)
Branch: <branch-name>

### Task 1.1: [component]
Files: create/modify/test exact paths
- [ ] Write failing test (actual test code included below)
- [ ] Run test, verify it fails (exact command + expected output)
- [ ] Write minimal implementation (actual code included below)
- [ ] Run test, verify it passes (exact command)
- [ ] Commit

### Task 1.2: [component]
Files: create/modify/test exact paths
- [ ] Write failing test (actual test code included below)
- [ ] Run test, verify it fails (exact command + expected output)
- [ ] Write minimal implementation (actual code included below)
- [ ] Run test, verify it passes (exact command)
- [ ] Commit

### Deployment Readiness -- Phase 1
- [ ] All tests pass (`npm test` or equivalent -- exact command)
- [ ] No breaking changes to existing contracts
- [ ] Backward compatibility verified (existing callers still work)
- [ ] User verifies: [specific manual check, not vague "looks good"]
- [ ] Phase can be deployed independently before Phase 2 begins

## Phase 2 -- <service-name> (middleware)
Depends on: Phase 1 deployed
Branch: <branch-name>

### Task 2.1: [component]
...

### Deployment Readiness -- Phase 2
- [ ] All tests pass
- [ ] Integration with Phase 1 verified
- [ ] User verifies: [specific manual check]
- [ ] Phase can be deployed independently before Phase 3 begins

Rules for task breakdown:

  • Each task step is 2-5 minutes of work. If you cannot finish a step in 5 minutes, it is too big. Break it down further.
  • TDD sequence: failing test first, then implementation, then green. Always.
  • Every task has exact file paths. Not "the config file" -- the actual path.
  • Every task has a commit checkpoint. Small commits. One logical change per commit.
  • Phases are deployment boundaries. The system must be stable and shippable at every phase boundary.

Step 7: No Placeholders -- Enforced

Every step in the plan contains real, complete content. The following are violations:

  • "Add appropriate error handling" -- specify WHICH errors and HOW they are handled
  • "Similar to Task N" -- write it out again, fully
  • "TBD" or "TODO" or "implement later" -- if it is not ready to specify, it is not ready to plan
  • "See docs for details" -- the details are IN the plan or they do not exist
  • "Add tests as needed" -- specify WHICH tests with WHAT assertions
  • "Configure as appropriate" -- specify the exact configuration values
  • "Handle edge cases" -- name each edge case and its handling

If you cannot be specific about a step, that step is not ready for the plan. Remove it or research it until you can be specific.

Step 8: Self-Review

Use a Plan Reviewer subagent to validate the plan before presenting it.

The reviewer checks four things:

Spec Coverage -- Every requirement in the spec has at least one task that implements it. Every acceptance criterion has at least one test that validates it. Missing coverage is a blocking defect.

Placeholder Scan -- Search the entire plan for: TBD, TODO, "implement later", "as needed", "as appropriate", "similar to", "see above", "etc.", "and so on". Any match is a blocking defect.

Type Consistency -- Method names, function signatures, type definitions, and interface shapes must match across all tasks that reference them. If Task 1.2 defines generateInvoice(order: Order): Invoice then Task 2.1 must call it with that exact signature, not createInvoice(data: any).

Scope Check -- The plan covers a single subsystem or feature. If the plan touches multiple independent systems with no shared dependency, it should be split into separate plans. One plan, one deployable unit of change.

Fix all defects found by the reviewer before presenting the plan.


Plan Header Format

Every plan starts with this header:

# [Feature Name] Implementation Plan

> Execute with: enggenie:dev-implement

**Goal:** [one sentence -- what the user gets when this is done]
**Approach:** [2-3 sentences -- how the implementation is structured]
**Spec:** [path to spec file if one exists, or "None -- built from user description"]
**Prior Art:** [patterns found by memory-recall, or "None found"]

Subagent Context Preservation

When subagents (Explorer, Doc Discovery, Plan Reviewer) complete their work, explicitly capture their key findings back to the main conversation before proceeding:

  • Existing patterns and utilities discovered by the Explorer
  • API signatures and methods extracted by Doc Discovery
  • Review defects and suggestions from the Plan Reviewer
  • File paths that will be created or modified

Do not assume the orchestrating agent retains subagent context automatically. Extract and summarize findings before incorporating them into the plan.


Recommended Model

Primary: opus Why: Multi-phase planning with deployment gates requires understanding complex dependencies, service boundaries, and sequencing. Opus produces more thorough plans with fewer missed edge cases.

This is a recommendation. Ask the user: "This skill works best with opus for thorough implementation planning. Confirm or override?" Do not proceed until the user responds.


Plans Directory

Save plans to the enggenie/ directory at the project root with the plan_ prefix. This keeps all skill artifacts in one place — specs, designs, ADRs, and plans are co-located per feature.

enggenie/
  plan_[feature-slug].md

Example: enggenie/plan_heist-timer.md

If the project has an existing convention for plan storage configured in CLAUDE.md, follow that instead.


Exit Action

When the plan is complete and passes self-review:

  1. Save the plan to enggenie/plan_[feature-slug].md (e.g., enggenie/plan_heist-timer.md)
  2. Present the full plan to the user for review
  3. Wait for explicit approval -- do not proceed without it

Update Jira with Plan Context

If a Jira ticket is associated with this work, add a comment to the ticket with:

## Implementation Plan
- Plan file: [path in repo]
- Phases: [count] phases, [count] tasks total
- Key design decisions:
  - [Decision 1 — e.g., "Client-side timer with useEffect, synced to Firestore expiry field"]
  - [Decision 2 — e.g., "Warning state at 30min threshold, red visual treatment"]
- Constraints discovered during planning:
  - [Constraint 1 — e.g., "Firestore listener already exists in heists/[id]/page.tsx, reuse it"]

This ensures the next person in the chain (Dev implementing, QA testing, or another Dev picking up mid-sprint) can read the ticket and understand what was planned and why.

After the user approves, offer the execution choice:

Plan ready. Jira updated with plan context. Execute with enggenie:dev-implement?

Do not auto-execute. The user decides when to start building.


What This Skill Is Not

  • This is not a flat task list. Flat lists have no deployment boundaries and no dependency ordering. This skill produces phased, deployment-sequenced plans.
  • This is not a design document. Design decisions should already be made (by enggenie:architect-design) before this skill runs.
  • This is not a spec. Requirements should already be refined (by enggenie:pm-refine) before this skill runs.
  • This is not implementation. No code is written by this skill. Code happens in enggenie:dev-implement.

This skill produces one thing: a phased, deployment-sequenced, placeholder-free implementation plan that a developer (human or agent) can execute step by step without ambiguity.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.37%
按下载量换算22

Claude

30.46%
按下载量换算19

Cursor

20.68%
按下载量换算13

Gemini CLI

10.78%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills