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

sdd-proposeSDD 建议

Agent Skill

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

总安装

445

周安装

18

GitHub Stars

公开资料未说明

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fearovex/claude-config --skill sdd-propose

简介

sdd-propose 创建变更提案,定义范围边界和技术路线选择依据。

  • 适用于变更立项前的共识建立阶段。
  • 必须包含清晰的意图说明和可衡量验收标准。
  • 未经批准的提案不会触发后续 specs 或 design 生成。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

sdd-propose

Creates a change proposal with clear intent, defined scope, and technical approach.

Triggers: /sdd-propose <change-name>, create proposal, define change, sdd proposal


Purpose

The proposal defines the WHAT and WHY before entering into technical details. It is the scope contract of the change. Without an approved proposal, there are no specs or design.


Process

Skill Resolution

When the orchestrator launches this sub-agent, it resolves the skill path using:

1. .claude/skills/sdd-propose/SKILL.md     (project-local — highest priority)
2. ~/.claude/skills/sdd-propose/SKILL.md   (global catalog — fallback)

Project-local skills override the global catalog. See docs/SKILL-RESOLUTION.md for the full algorithm.


Step 0a — Load project context

Follow skills/_shared/sdd-phase-common.md Section F (Project Context Load). Non-blocking.

Step 0b — Domain context preload

This step is non-blocking: any failure (missing directory, unreadable file, no match) MUST produce at most an INFO-level note in the output. This step MUST NOT produce status: blocked or status: failed on its own.

  1. List candidate files: list all .md files in ai-context/features/. Exclude _template.md and any file whose name begins with an underscore (_). If the directory does not exist or is empty after exclusions, skip this step silently and proceed to Step 1.
  2. Apply the filename-stem matching heuristic:

- Split the <change-name> on hyphens (-) to obtain stems. - Discard any single-character stems. - For each candidate file, compute its domain slug (filename without .md). - A match occurs when: the domain slug appears anywhere in <change-name> OR any change-name stem appears anywhere in the domain slug (case-insensitive comparison).

  1. Load matching files: for each file that matches, read its full contents and treat them as enrichment context for proposal authoring. If multiple files match, load all of them. If a file cannot be read (e.g. permissions issue), log an INFO note and continue — do not block.
  2. If no file matches: skip silently. Proceed to Step 1 without error or warning.
  3. When files are loaded: note the loaded paths in the Step 6 output summary and include them in the artifacts list (marked as read, not written).

Algorithm reference:

stems = change_name.split("-").filter(s => s.length > 1)
for each feature_file in ai-context/features/ (excluding _ prefix files):
  domain = feature_file.stem  (filename without .md)
  if domain in change_name OR any stem in domain -> match

Examples:

  • change add-payments-gateway -> stems [add, payments, gateway] -> matches features/payments.md
  • change auth-token-refresh -> stems [auth, token, refresh] -> matches features/auth.md
  • change improve-project-audit -> stems [improve, project, audit] -> no match -> skip silently

Step 0c — Spec context preload

Follow skills/_shared/sdd-phase-common.md Section G (Spec Context Preload). Non-blocking.


Step 1 — Read prior context

I load the exploration artifact from engram:

  • mem_search(query: "sdd/{change-name}/explore")mem_get_observation(id) for full content.
  • If not found: skip — no prior exploration available.

If ai-context/architecture.md exists, I consult it for coherence.

Step 2 — Understand the request in depth

If the request is ambiguous, I ask:

  • What is the problem or need that motivates this change?
  • Are there known constraints (performance, compatibility, etc.)?
  • Are there parts that are explicitly OUT of scope?

Step 3 — Write proposal

Step 3a — Generate Supersedes section

Before writing the proposal, I scan for replacement/removal intent:

  1. Read the exploration artifact (if available) and check ## Branch Diff, ## Prior Attempts, and ## Contradiction Analysis sections:

- mem_search(query: "sdd/{change-name}/explore")mem_get_observation(id). - If not found: skip exploration input.

  1. Scan the user's description and any pre-seeded ## Context Notes in the proposal for patterns: "remove X", "no longer X", "delete X", "replace X with Y".
  2. From the above, build the ## Supersedes section:

- If nothing is being removed or replaced: state "None — this is a purely additive change." - If removals or replacements are found: list each item under ### REMOVED, ### REPLACED, or ### CONTRADICTED subsections as appropriate.

  1. Validation: if a Supersedes entry claims to "remove" something but describes adding, emit a MUST_RESOLVE warning and pause for user confirmation.

Step 3b — Persist proposal

I persist the proposal artifact to engram:

Call mem_save with topic_key: sdd/{change-name}/proposal, type: architecture, project: {project}, content = full proposal markdown. Do NOT write any file.

If Engram MCP is not reachable: skip persistence. Return proposal content inline only.

Content format:

# Proposal: [change-name]

Date: [YYYY-MM-DD]
Status: Draft

## Intent

[One clear sentence: what problem it solves or what need it covers]

## Motivation

[Why this is necessary now. Business or technical context.]

## Supersedes

[ALWAYS present — even if nothing is superseded. If purely additive: "None — this is a purely additive change."]

### REMOVED (if applicable)

- **[Feature or component name]** (`path/to/file`)
  Reason: [why it is being removed]

### REPLACED (if applicable)

| Old | New | Reason |
|-----|-----|--------|
| [old feature] | [new feature] | [why] |

### CONTRADICTED (if applicable)

- **[Feature or behavior]**: prior context says "[X]", this proposal says "[NOT X]"
  Resolution: [contract superseded / breaking change / deprecation period / stakeholder coordination required]

## Scope

### Included

- [deliverable 1]
- [deliverable 2]
- [deliverable 3]

### Excluded (explicitly out of scope)

- [what will NOT be done and why]

## Proposed Approach

[High-level description of the technical solution.
Does not go into implementation detail — that is the design's job.
Explains the "how" at a conceptual level.]

## Affected Areas

| Area/Module | Type of Change       | Impact          |
| ----------- | -------------------- | --------------- |
| [area]      | New/Modified/Removed | Low/Medium/High |

## Risks

| Risk   | Probability     | Impact          | Mitigation        |
| ------ | --------------- | --------------- | ----------------- |
| [risk] | Low/Medium/High | Low/Medium/High | [how to mitigate] |

## Rollback Plan

[How to revert if something goes wrong.
Must be concrete: which files, which commands, which steps.]

## Dependencies

- [What must exist/be completed before starting]
- [Changes in other parts of the system that this requires]

## Success Criteria

- [ ] [measurable and verifiable criterion 1]
- [ ] [measurable and verifiable criterion 2]
- [ ] [measurable and verifiable criterion 3]

## Effort Estimate

[Low (hours) / Medium (1-2 days) / High (several days)]

Step 4 — Preserve conversation context

This step is non-blocking: if no conversation context is available, skip silently.

  1. Scan the user's original request and any pre-seeded ## Context Notes in proposal for:

- Explicit removal/replacement intents ("remove X", "no longer needed", "delete Y") - Platform or environment constraints ("mobile must not", "not on web", "desktop only") - Cautions or provisional notes ("careful with Z", "provisional, pending W")

  1. If any of the above are found, append a ## Context section to proposal:
## Context

Recorded from conversation at [YYYY-MM-DDTHH:MMZ]:

### Explicit Intents

- **[intent]**: [exact wording or paraphrase from user]

### Platform Constraints

- **[constraint]**: [description]

### Provisional Notes

- **[note]**: [description and condition]
  1. If nothing notable is found: skip this section — do NOT add an empty ## Context section.

Step 5 — Contradiction Resolution documentation

This step is non-blocking: only runs if contradictions were detected in exploration.

  1. Read the exploration artifact's ## Contradiction Analysis section:

- mem_search(query: "sdd/{change-name}/explore")mem_get_observation(id) → extract section. - If not found: skip — no exploration available.

  1. For each CERTAIN contradiction found, add a ## Contradiction Resolution section to proposal documenting each one and its resolution approach:
## Contradiction Resolution

### [Feature or behavior name]

**Prior context**: [what the prior spec or archived change said]
**This proposal**: [what this change intends to do instead]
**Resolution approach**: [one of: contract superseded / breaking change with migration / deprecation period / stakeholder coordination required]
  1. For each UNCERTAIN contradiction: do NOT add it here — those may be handled by the orchestrator before propose runs as part of a multi-phase flow. If propose runs via direct invocation, document the UNCERTAIN contradictions in ## Risks instead.

Step 6 — Summary to orchestrator

I return a clear executive summary:

Proposal created: [change-name]

Intent: [one line]
Scope: [N deliverables included, M excluded]
Approach: [one line]
Risk: Low/Medium/High
Next step: specs + design (can run in parallel)

Output to Orchestrator

{
  "status": "ok|warning|blocked",
  "summary": "Proposal [name]: [intent in one line]. Risk [level].",
  "artifacts": ["engram:sdd/{change-name}/proposal"],
  "next_recommended": ["sdd-spec", "sdd-design"],
  "risks": ["[main risk if any]"]
}

Rules

  • ALWAYS create the proposal — it is the entry point for all subsequent phases
  • Every proposal MUST have a rollback plan and success criteria
  • Success criteria must be MEASURABLE and VERIFIABLE (not vague)
  • Excluded scope is as important as included scope — it prevents scope creep
  • I do not go into implementation details — that is the job of sdd-design
  • If the proposal is trivial (1-2 line change), I indicate it and suggest skipping the full cycle

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.22%
按下载量换算51

Claude

29.97%
按下载量换算42

Cursor

17.63%
按下载量换算25

Gemini CLI

9.18%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills