Skills Plugins MCP Prompt Model 博客 我的中心

architecture-decision-records

Capture architectural decisions made during Claude Code sessions as structured ADRs. Auto-detects decision moments, records context, alternatives considered, and rationale. Maintains an ADR log so future developers understand why the codebase is shaped the way it is.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=affaan-m-ecc-skills-architecture-decision-records-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name architecture-decision-records description Capture architectural decisions made during Claude Code sessions as structured ADRs. Auto-detects decision moments, records context, alternatives considered, and rationale. Maintains an ADR log so future developers understand why the codebase is shaped the way it is. metadata {"origin":"ECC"} Architecture Decision Records Capture architectural decisions as they happen during coding sessions. Instead of decisions living only in Slack threads, PR comments, or someone's memory, this skill produces structured ADR documents that live alongside the code. When to Activate User explicitly says "let's record this decision" or "ADR this" User chooses between significant alternatives (framework, library, pattern, database, API design) User says "we decided to..." or "the reason we're doing X instead of Y is..." User asks "why did we choose X?" (read existing ADRs) During planning phases when architectural trade-offs are discussed ADR Format Use the lightweight ADR format proposed by Michael Nygard, adapted for AI-assisted development: # ADR-NNNN: [Decision Title] **Date** : YYYY-MM-DD **Status** : proposed | accepted | deprecated | superseded by ADR-NNNN **Deciders** : [who was involved] ## Context What is the issue that we're seeing that is motivating this decision or change? [2-5 sentences describing the situation, constraints, and forces at play] ## Decision What is the change that we're proposing and/or doing? [1-3 sentences stating the decision clearly] ## Alternatives Considered ### Alternative 1: [Name] - **Pros** : [benefits] - **Cons** : [drawbacks] - **Why not** : [specific reason this was rejected] ### Alternative 2: [Name] - **Pros** : [benefits] - **Cons** : [drawbacks] - **Why not** : [specific reason this was rejected] ## Consequences What becomes easier or more difficult to do because of this change? ### Positive - [benefit 1] - [benefit 2] ### Negative - [trade-off 1] - [trade-off 2] ### Risks - [risk and mitigation] Workflow Capturing a New ADR When a decision moment is detected: Initialize (first time only) — if docs/adr/ does not exist, ask the user for confirmation before creating the directory, a README.md seeded with the index table header (see ADR Index Format below), and a blank template.md for manual use. Do not create files without explicit consent. Identify the decision — extract the core architectural choice being made Gather context — what problem prompted this? What constraints exist? Document alternatives — what other options were considered? Why were they rejected? State consequences — what are the trade-offs? What becomes easier/harder? Assign a number — scan existing ADRs in docs/adr/ and increment Confirm and write — present the draft ADR to the user for review. Only write to docs/adr/NNNN-decision-title.md after explicit approval. If the user declines, discard the draft without writing any files. Update the index — append to docs/adr/README.md Reading Existing ADRs When a user asks "why did we choose X?": Check if docs/adr/ exists — if not, respond: "No ADRs found in this project. Would you like to start recording architectural decisions?" If it exists, scan docs/adr/README.md index for relevant entries Read matching ADR files and present the Context and Decision sections If no match is found, respond: "No ADR found for that decision. Would you like to record one now?" ADR Directory Structure docs/ └── adr/ ├── README.md ← index of all ADRs ├── 0001-use-nextjs.md ├── 0002-postgres-over-mongo.md ├── 0003-rest-over-graphql.md └── template.md ← blank template for manual use ADR Index Format # Architecture Decision Records | ADR | Title | Status | Date | |-----|-------|--------|------| | [ 0001 ]( 0001-use-nextjs.md ) | Use Next.js as frontend framework | accepted | 2026-01-15 | | [ 0002 ]( 0002-postgres-over-mongo.md ) | PostgreSQL over MongoDB for primary datastore | accepted | 2026-01-20 | | [ 0003 ]( 0003-rest-over-graphql.md ) | REST API over GraphQL | accepted | 2026-02-01 | Decision Detection Signals Watch for these patterns in conversation that indicate an architectural decision: Explicit signals "Let's go with X" "We should use X instead of Y" "The trade-off is worth it because..." "Record this as an ADR" Implicit signals (suggest recording an ADR — do not auto-create without user confirmation) Comparing two frameworks or libraries and reaching a conclusion Making a database schema design choice with stated rationale Choosing between architectural patterns (monolith vs microservices, REST vs GraphQL) Deciding on authentication/authorization strategy Selecting deployment infrastructure after evaluating alternatives What Makes a Good ADR Do Be specific — "Use Prisma ORM" not "use an ORM" Record the why — the rationale matters more than the what Include rejected alternatives — future developers need to know what was considered State consequences honestly — every decision has trade-offs Keep it short — an ADR should be readable in 2 minutes Use present tense — "We use X" not "We will use X" Don't Record trivial decisions — variable naming or formatting choices don't need ADRs Write essays — if the context section exceeds 10 lines, it's too long Omit alternatives — "we just picked it" is not a valid rationale Backfill without marking it — if recording a past decision, note the original date Let ADRs go stale — superseded decisions should reference their replacement ADR Lifecycle proposed → accepted → [deprecated | superseded by ADR-NNNN] proposed : decision is under discussion, not yet committed accepted : decision is in effect and being followed deprecated : decision is no longer relevant (e.g., feature removed) superseded : a newer ADR replaces this one (always link the replacement) Categories of Decisions Worth Recording Category Examples Technology choices Framework, language, database, cloud provider Architecture patterns Monolith vs microservices, event-driven, CQRS API design REST vs GraphQL, versioning strategy, auth mechanism Data modeling Schema design, normalization decisions, caching strategy Infrastructure Deployment model, CI/CD pipeline, monitoring stack Security Auth strategy, encryption approach, secret management Testing Test framework, coverage targets, E2E vs integration balance Process Branching strategy, review process, release cadence Integration with Other Skills Planner agent : when the planner proposes architecture changes, suggest creating an ADR Code reviewer agent : flag PRs that introduce architectural changes without a corresponding ADR
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。