Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

architect架构师

Agent Skill

architect 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

25

GitHub Stars

公开资料未说明

下载量

196
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nicolas-codemate/claudecodeconfig --skill architect

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • architect 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Architect Skill - Implementation Plan Design

This skill provides architectural guidance for creating high-quality implementation plans. It focuses on universal principles applicable to any technology stack.

When to Use

  • During the PLAN phase of AEP workflow
  • When reviewing an existing implementation plan
  • When designing a new feature architecture
  • When refactoring or restructuring code

Core Principles

1. Atomic Phases

Each phase MUST be:

  • Self-contained: Can be understood without reading other phases
  • Independently deployable: Could theoretically be deployed alone
  • Reversible: Can be rolled back without affecting other phases
  • Testable: Has clear validation criteria

Rule of thumb: If a phase touches more than 3 files, it's probably too big.

2. Dependency Management

GOOD: Linear dependency chain
Phase 1 → Phase 2 → Phase 3

GOOD: Independent phases (can run in parallel)
Phase 1 ──┐
Phase 2 ──┼→ Phase 4
Phase 3 ──┘

BAD: Circular dependencies
Phase 1 ←→ Phase 2

Always ask: "Can this phase be completed if the next phase fails?"

3. Risk Ordering

Order phases by risk level (lowest risk first):

  1. Infrastructure - New files, directories, configs (low risk)
  2. Data structures - Types, interfaces, schemas (low-medium risk)
  3. Core logic - Business rules, algorithms (medium risk)
  4. Integration - Connecting components (medium-high risk)
  5. Migration - Data changes, breaking changes (high risk)

4. Validation at Every Step

Each phase MUST specify:

  • What to validate (tests, linter, manual check)
  • Expected outcome
  • How to verify success

Phase Design Checklist

Before finalizing each phase, verify:

[ ] SCOPE
    [ ] Does this phase have a single, clear goal?
    [ ] Are all changes directly related to that goal?
    [ ] Would splitting this phase improve clarity?

[ ] FILES
    [ ] Are there 3 or fewer files modified?
    [ ] If more, is there a strong reason?
    [ ] Are all file paths explicit and correct?

[ ] DEPENDENCIES
    [ ] Are all dependencies on previous phases explicit?
    [ ] Can this phase run if the next phase fails?
    [ ] Are external dependencies documented?

[ ] VALIDATION
    [ ] Is there a concrete way to validate this phase?
    [ ] Are tests specified (new or existing)?
    [ ] Is the expected outcome clear?

[ ] ROLLBACK
    [ ] Can changes be reverted without side effects?
    [ ] Are database migrations reversible?
    [ ] Is there a rollback procedure documented?

[ ] COMMIT MESSAGE
    [ ] Does it follow conventional commits?
    [ ] Does it accurately describe the change?
    [ ] Is it in English and imperative mood?

Plan-Level Checklist

Before finalizing the complete plan:

[ ] COMPLETENESS
    [ ] Does the plan fully address the original request?
    [ ] Are edge cases considered?
    [ ] Is error handling included?

[ ] ORDERING
    [ ] Are phases in optimal order (lowest risk first)?
    [ ] Are dependencies respected?
    [ ] Could any phases be parallelized?

[ ] TESTING STRATEGY
    [ ] Are unit tests included where appropriate?
    [ ] Are integration tests planned?
    [ ] Is manual verification documented?

[ ] DOCUMENTATION
    [ ] Will code changes require doc updates?
    [ ] Are API changes documented?
    [ ] Are breaking changes clearly marked?

[ ] RISKS
    [ ] Are potential risks identified?
    [ ] Are mitigations proposed?
    [ ] Is there a fallback if something goes wrong?

Universal Patterns

Pattern: Feature Flag Approach

For risky features, consider:

Phase 1: Add feature behind flag (disabled)
Phase 2: Implement feature logic
Phase 3: Add tests
Phase 4: Enable flag (or remove)

Benefit: Can ship incrementally, easy rollback.

Pattern: Strangler Fig

For replacing existing code:

Phase 1: Create new implementation alongside old
Phase 2: Route new requests to new implementation
Phase 3: Migrate existing usages
Phase 4: Remove old implementation

Benefit: Never breaks existing functionality.

Pattern: Database Migration Safety

For schema changes:

Phase 1: Add new column (nullable)
Phase 2: Dual-write to old and new
Phase 3: Backfill existing data
Phase 4: Make new column required
Phase 5: Remove old column

Benefit: Zero-downtime migrations.

Pattern: API Evolution

For API changes:

Phase 1: Add new endpoint/field (don't remove old)
Phase 2: Update consumers to use new
Phase 3: Deprecate old endpoint/field
Phase 4: Remove old (after deprecation period)

Benefit: Backwards compatibility maintained.

Pattern: Test-First Integration

For complex integrations:

Phase 1: Write integration tests (failing)
Phase 2: Implement minimal passing version
Phase 3: Refine and optimize
Phase 4: Add edge case handling

Benefit: Clear success criteria from start.

Anti-Patterns to Avoid

Anti-Pattern: Big Bang Phase

Bad:

## Phase 1: Implement the feature
- Modify 15 files
- Add database tables
- Create API endpoints
- Add frontend components

Fix: Split into focused phases by layer/concern.

Anti-Pattern: Hidden Dependencies

Bad:

## Phase 2: Add validation
(secretly depends on Phase 4's utility functions)

Fix: Make dependencies explicit or reorder phases.

Anti-Pattern: Optimistic Validation

Bad:

**Validation**: Should work

Fix: Specify concrete command: make test, npm run lint, etc.

Anti-Pattern: Implicit Rollback

Bad:

## Phase 3: Migrate user data
(no mention of what happens if it fails)

Fix: Add rollback procedure or mark as high-risk.

Anti-Pattern: Kitchen Sink Commit

Bad:

**Commit message**: `feat: add feature and fix bugs and refactor`

Fix: One concern per phase = one clear commit message.

Plan File Format

Plans MUST follow this format:

---
feature: {ticket-id-slug}
ticket_id: {ticket-id}
created: {ISO timestamp}
status: pending
total_phases: {N}
---

# {ticket-id}: Implementation Plan - {title}

## Overview

{Brief description of what will be implemented}

---

## Phase 1: {Phase Title}

**Goal**: {What this phase accomplishes}

### Files to modify/create

- `path/to/file.ext` - Description of changes

### Validation

{Concrete command: make test, phpunit tests/Specific/, npm run lint, etc.}

### Commit message

{conventional commit: feat|fix|refactor(scope): description}

---

## Phase 2: {Phase Title}

...

---

## Summary

| Phase | Description | Files | Complexity |
|-------|-------------|-------|------------|
| 1 | ... | N | Low/Medium/High |
| 2 | ... | N | Low/Medium/High |

Important:

  • Frontmatter is REQUIRED for automation
  • Phase headers MUST follow format: ## Phase N: Title
  • Commit messages MUST be in code blocks
  • Validation MUST be concrete commands, not "should work"

Output Format

When using this skill during planning, structure architectural decisions as:

## Architectural Decisions

### Decision 1: [Title]
- **Context**: Why this decision is needed
- **Options considered**: What alternatives exist
- **Decision**: What was chosen
- **Rationale**: Why this option
- **Consequences**: What this implies for implementation

### Phase Structure Rationale
- Why phases are ordered this way
- Which phases could potentially be parallelized
- Where the highest risk lies

Integration with AEP

This skill is designed to be invoked during AEP's PLAN phase:

  1. AEP completes ANALYSE and EXPLORE
  2. Before creating the plan, invoke Architect skill
  3. Apply checklists to each phase
  4. Validate plan structure against anti-patterns
  5. Document architectural decisions
  6. Output final plan with confidence

Language

ALL OUTPUT MUST BE IN FRENCH when communicating with the user. Technical terms and commit messages remain in English.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.66%
按下载量换算68

Claude

28.54%
按下载量换算56

Cursor

18.6%
按下载量换算36

Gemini CLI

9.79%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills