/design
Design phase entry. Aggregates plan-level selection, task breakdown, and package output rules; loads references/assets/scripts on demand.
$ npx -y skills add evidentloop/sopify --skill design --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/design
Context preview
The summary Claude sees to decide when to auto-load this skill.
Design phase entry. Aggregates plan-level selection, task breakdown, and package output rules; loads references/assets/scripts on demand.
SKILL.md
design.SKILL.mdname: design
description: Design phase entry. Aggregates plan-level selection, task breakdown, and package output rules; loads references/assets/scripts on demand.
Design (Entry)
> Check the current system first, then choose the smallest sufficient path.
When to activate
- Entering the design phase (`workflow` / `plan_only` / `light_iterate`).
- Need to convert requirements into a plan package and task list.
Execution skeleton
1. Load `references/design-rules.md`. 2. Check existing implementation, governing contracts, applicable platform capabilities, and installed dependencies. 3. Choose the smallest sufficient path and select `light/standard/architecture`. 4. Generate the plan files from the matching `assets/` templates. 5. Produce tasks with explicit dependencies and verification. 6. Report `Ready` or `Needs decision` with evidence using `assets/output-summary.md`.
Resource navigation
- Long rules: `references/design-rules.md`
- Shared writing standards: `../references/shared-writing-dna.md` (apply to all output)
- Output contract: `../references/output-contract.md` (required sections, conditional enhancement, self-check)
- Templates: `assets/*.md`
- Deterministic level selector: `scripts/select_plan_level.py`
Deterministic logic first
Use the selector when `plan.level=auto` must be auditable:
python3 skills/en/skills/sopify/design/scripts/select_plan_level.py \
--file-count 6 \
--new-feature \
--cross-module
The script returns JSON with the suggested level and explicit reasons.
Boundaries
- This skill does not execute code changes directly; hand off to `develop`.
- This skill does not handle routing or protocol state writes; it defines the plan structure and task contract only.
Read more
name: design description: Design phase entry. Aggregates plan-level selection, task breakdown, and package output rules; loads references/assets/scripts on demand.
Design (Entry)
> Check the current system first, then choose the smallest sufficient path.
When to activate
- Entering the design phase (`workflow` / `plan_only` / `light_iterate`).
- Need to convert requirements into a plan package and task list.
Execution skeleton
1. Load `references/design-rules.md`. 2. Check existing implementation, governing contracts, applicable platform capabilities, and installed dependencies. 3. Choose the smallest sufficient path and select `light/standard/architecture`. 4. Generate the plan files from the matching `assets/` templates. 5. Produce tasks with explicit dependencies and verification. 6. Report `Ready` or `Needs decision` with evidence using `assets/output-summary.md`.
Resource navigation
- Long rules: `references/design-rules.md`
- Shared writing standards: `../references/shared-writing-dna.md` (apply to all output)
- Output contract: `../references/output-contract.md` (required sections, conditional enhancement, self-check)
- Templates: `assets/*.md`
- Deterministic level selector: `scripts/select_plan_level.py`
Deterministic logic first
Use the selector when `plan.level=auto` must be auditable:
python3 skills/en/skills/sopify/design/scripts/select_plan_level.py \ --file-count 6 \ --new-feature \ --cross-module
The script returns JSON with the suggested level and explicit reasons.
Boundaries
- This skill does not execute code changes directly; hand off to `develop`.
- This skill does not handle routing or protocol state writes; it defines the plan structure and task contract only.
Resumable AI coding — ask first, plans stay with the repo AI coding tools are fast. But when they jump to code before the facts are clear, speed turns into rework.
Other skills on sopify.
- /analyze
Analyze phase entry. Aggregates scoring, follow-up, and scope-check rules; loads references/assets/scripts on demand.
Open skill - /develop
Develop phase entry; routes task execution, state updates, KB sync, and plan close-out through references/assets/scripts.
Open skill - /kb
Manage long-lived `.sopify/` knowledge, including bootstrap, progressive materialization, reads, retention, and knowledge_sync policy.
Open skill - /templates
Knowledge-base document templates, loaded when long-lived knowledge files are created or materialized.
Open skill - /analyze
需求分析阶段入口;聚合评分、追问与范围判定规则,按需加载 references/assets/scripts。
Open skill - /develop
开发实施阶段入口;聚合任务执行、状态更新、知识库同步与收尾状态规则,按需加载 references/assets/scripts。
Open skill

