Summary
CX 工作流 — 技术设计与执行契约。当用户提到"技术设计"、"Design Doc"、 "API 设计"、"接口设计"、"架构设计"、"系统设计"时触发。 读取 PRD 生成设计文档,保存到本地 开发文档/CX工作流/功能/{feature_title}/设计.md。 该步骤只服务中大 feature…
m19803261706/cx-workflow · Archived
CX 工作流 — 技术设计与执行契约。当用户提到"技术设计"、"Design Doc"、 "API 设计"、"接口设计"、"架构设计"、"系统设计"时触发。 读取 PRD 生成设计文档,保存到本地 开发文档/CX工作流/功能/{feature_title}/设计.md。 该步骤只服务中大 feature 的执行契约,不强加给所有小功能。
npx skills add m19803261706/cx-workflow --skill cx-design
CX 工作流 — 技术设计与执行契约。当用户提到"技术设计"、"Design Doc"、 "API 设计"、"接口设计"、"架构设计"、"系统设计"时触发。 读取 PRD 生成设计文档,保存到本地 开发文档/CX工作流/功能/{feature_title}/设计.md。 该步骤只服务中大 feature…
This repository is archived — consider an actively maintained alternative.
CX 工作流 — 帮助与使用指南。展示纯 cx 3.1 的命令面、自动路由逻辑、 `--all` 语义和项目级真相模型…
7 installsCX 工作流 — 汇总发布与闭环。手动触发或在所有任务完成后进? 负责生成总结、同步 GitHub 镜像、?
5 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsArchitect and provision enterprise Azure infrastructure from workload descriptions. For cloud a…
402.8K installsOther skills from m19803261706/cx-workflow · top by installs.
npx skills add m19803261706/cx-workflow
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Parsed from SKILL.md frontmatter.
Files included with this skill beyond the listing page.
SKILL.md
3,608 B
SUMMARY.md
378 B
把中大 feature 的关键决策、接口契约和测试重点先锁住,再进入任务规划。
先阅读:
${CLAUDEPLUGINROOT}/core/workflow/README.md${CLAUDEPLUGINROOT}/core/workflow/protocols/design.md所有文件读写必须使用绝对路径。 禁止使用 ../ 相对路径。先用 git rev-parse --show-toplevel 获取绝对路径。
<HARD-GATE> 禁止在主分支(main/master)上执行设计阶段。必须在 feature worktree 中。 </HARD-GATE>
执行前检测:
check_output=$(bash ${CLAUDE_PLUGIN_ROOT}/scripts/cx-worktree.sh check \
--feature "{feature-slug}" \
--project-root "$(git rev-parse --show-toplevel)" 2>&1) || true
如果返回 on_main=true:
/cx:cx-prd 创建 worktree,或手动进入已有 worktreeAskUserQuestion 列出可用 worktree 供选择/cx:cx-design {功能名}
/cx:cx-design
cc adapter,不能绕过租约直接覆盖其他 runner 的 featurePROJECT_ROOT=$(git rev-parse --show-toplevel)
CX_DOCS_DIR="$PROJECT_ROOT/开发文档/CX工作流"
FEATURE_TITLE="{功能标题}"
FEATURE_SLUG="{feature-slug}"
FEATURE_DIR="$CX_DIR/功能/$FEATURE_TITLE"
PRD_FILE="$FEATURE_DIR/需求.md"
DESIGN_FILE="$FEATURE_DIR/设计.md"
内部关联始终使用 slug,目录展示使用中文标题。
需求.md设计文档最少包含这些章节:
对这些高风险内容给用户做确认:
普通实现细节不需要频繁打断。
优先调用共享 runner:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/cx-workflow-design.sh \
--feature <feature-slug> \
--runner cc \
--session-id <session-id>
写入:
开发文档/CX工作流/功能/{功能标题}/设计.md
同时把 feature 状态推进到可规划阶段,例如:
{
"slug": "feature-slug",
"status": "planned",
"docs": {
"prd": "需求.md",
"design": "设计.md"
}
}
只有在这些情况出现时,才建议进入 /cx:cx-adr: