AI 工作资产化诊断器
中文速查
- 中文名:AI 工作资产化诊断器 / 资产化路由器
- 英文稳定名:
ai-work-assetization-diagnoser
- 分类:Skill/Agent 治理
- 你可以这样叫我:
这段工作是不是值得做成 Skill、这个 prompt 应该沉淀成 workflow 还是 Skill、帮我判断该资产化到哪层、这个 AI 工作流要不要做成 Loop
- 适合:判断一段可重复 AI 工作应该沉淀到哪个资产层,给出最小下一步 artifact 和验证信号。
- 不适合:直接创建 Skill、直接实现自动化系统、普通日志根因定位、一次性事实查询、没有复用价值的闲聊。
Overview
这个 Skill 是 Router / Gate,不是执行器。它回答三个问题:
- 这段 AI 工作是否值得沉淀。
- 如果值得,最小有用资产层是什么。
- 为什么不是相邻层级。
默认输出应短、可执行、有证据。不要把所有重复任务都升级成 Skill,也不要把所有自动化想法都升级成 Loop。
Asset Layers
| Layer |
Use When |
Example Artifact |
| Do Not Assetize |
低频、一次性、强主观、输入不可稳定复用、风险高或验收口径不存在。 |
保留聊天记录或一次性笔记。 |
| Prompt |
步骤简单,主要复用表达方式。 |
Prompt template, checklist prompt. |
| Context Pack |
关键难点是资料、约束、样例和反例组织。 |
Context folder, source bundle, glossary. |
| Workflow |
有稳定步骤、角色、输入输出和人工推进点。 |
SOP, runbook, workflow doc. |
| Skill |
高频可复用,有明确触发语、输入、输出、边界和验收方式。 |
SKILL.md + references/scripts. |
| Loop |
需要多轮状态、恢复、触发器、检查点、重试或人工接管。 |
Loop contract, state files, update log. |
| System |
多个 Skill/Loop/Agent 组合,涉及权限、成本、审计、评估或团队级运行。 |
Product/system PRD, architecture plan. |
Workflow
Identify input shape
- AI conversation
- repeated manual task
- prompt or prompt pack
- team workflow
- successful delivery trace
- failed or over-engineered asset proposal
Extract evidence
- user goal and business context
- input materials and constraints
- repeated steps
- output artifact
- human decision points
- validation or acceptance criteria
- frequency and reuse audience
- state, retry, handoff, or automation needs
Score only what matters
- repeatability
- input stability
- output stability
- validation clarity
- context dependency
- human judgment dependency
- failure cost
- reuse audience
Recommend one primary asset layer
- Give the smallest layer that would create real reuse.
- Explain why the lower layer is insufficient.
- Explain why the higher layer is overkill.
- Include do-not-assetize if that is the best answer.
Name the smallest next artifact
- Prompt: one reusable prompt with slots.
- Context Pack: file list and required metadata.
- Workflow: step list and handoff format.
- Skill: trigger description, non-triggers, output contract, references.
- Loop: state files, stop conditions, Human Gate.
- System: PRD / architecture / eval plan before implementation.
Define reuse signal
- What would prove this asset is worth deepening?
- What failure signal should stop further investment?
Output Contract
Use this structure:
## Assetization Diagnosis
- Current shape: <conversation / prompt / context / workflow / skill candidate / loop candidate / system candidate>
- Recommended layer: <Do Not Assetize / Prompt / Context Pack / Workflow / Skill / Loop / System>
- Confidence: <High / Medium / Low>
## Evidence
- ...
## Why This Layer
- ...
## Why Not Adjacent Layers
- Lower layer is insufficient because ...
- Higher layer is overkill because ...
## Smallest Next Artifact
- ...
## Reuse Signal To Watch
- ...
## Do Not Do
- ...
For batch scenarios, use a compact table with columns:
- Scenario
- Current shape
- Recommended layer
- Evidence
- Smallest next artifact
- Reuse signal
- Priority
Boundary Rules
- If the user asks to create the actual Skill after diagnosis, hand off to
skill-creator.
- If the user asks whether an idea is a good product, use
ai-collaboration-calibration or decision-research.
- If the user asks to turn a product idea into a PRD, use
prd-architect.
- If the user asks to review an existing Skill, use
skill-reviewer when available.
- If the user provides trace/logs and wants root cause, use a trace/debug skill, not this one.
- If the work is high responsibility, such as medical, legal, financial, safety, hiring, or compliance decisions, recommend human review and avoid closed-loop automation.
Non-Assetization Cases
Recommend not assetizing, or only a lightweight note, when:
- The task happened once and is unlikely to recur.
- The input varies so much that templates would mislead.
- The output depends on taste or senior judgment with no stable rubric.
- The cost of a wrong answer is high and no verification exists.
- The user cannot name a reuse audience.
- A simpler checklist would solve the problem.
Definition Of Done
- The recommendation is one primary asset layer, not a vague list.
- Adjacent layers are explicitly accepted or rejected.
- The next artifact is small enough to create in one focused pass.
- The answer includes a reuse or failure signal.
- The diagnosis does not expose private context unless the user supplied and authorized it in this run.
Resources
references/asset-layer-rubric.md:当 Prompt / Context Pack / Workflow / Skill / Loop / System 边界不清时读取。
scripts/check_assetization_report.py:检查资产化诊断报告是否包含推荐层级、证据、最小下一步和复用信号。
Evaluation
Smoke prompts:
这段工作是不是值得做成 Skill?
这个 prompt 应该沉淀成 workflow 还是 Skill?
我们连续三次做了类似 AI 协作,帮我判断该资产化到哪层。
这只是一次性任务,不要过度沉淀。
Non-trigger prompts:
直接帮我创建一个 Skill。
看下这个 trace,定位根因。
帮我写一个 PRD。
查一下今天的新闻。
1---2name: ai-work-assetization-diagnoser3description: AI 工作资产化诊断器 / Assetization Router:当用户提供 AI 协作会话、重复任务、prompt、工作流描述、 团队 AI 使用场景或一次成功交付过程,并要求判断应该沉淀成 Prompt、Context Pack、Workflow、Skill、 Loop、System,或根本不值得沉淀时使用。它只做诊断、分层和下一步资产建议,不替代具体 Skill 创建、 PRD 起草、调研、实现或自动化执行。不用于普通事实查询、一次性文案、trace 根因分析或高责任专业判断。4---56# AI 工作资产化诊断器78## 中文速查910- 中文名:AI 工作资产化诊断器 / 资产化路由器11- 英文稳定名:`ai-work-assetization-diagnoser`12- 分类:Skill/Agent 治理13- 你可以这样叫我:`这段工作是不是值得做成 Skill`、`这个 prompt 应该沉淀成 workflow 还是 Skill`、`帮我判断该资产化到哪层`、`这个 AI 工作流要不要做成 Loop`14- 适合:判断一段可重复 AI 工作应该沉淀到哪个资产层,给出最小下一步 artifact 和验证信号。15- 不适合:直接创建 Skill、直接实现自动化系统、普通日志根因定位、一次性事实查询、没有复用价值的闲聊。1617## Overview1819这个 Skill 是 Router / Gate,不是执行器。它回答三个问题:20211. 这段 AI 工作是否值得沉淀。222. 如果值得,最小有用资产层是什么。233. 为什么不是相邻层级。2425默认输出应短、可执行、有证据。不要把所有重复任务都升级成 Skill,也不要把所有自动化想法都升级成 Loop。2627## Asset Layers2829| Layer | Use When | Example Artifact |30| --- | --- | --- |31| Do Not Assetize | 低频、一次性、强主观、输入不可稳定复用、风险高或验收口径不存在。 | 保留聊天记录或一次性笔记。 |32| Prompt | 步骤简单,主要复用表达方式。 | Prompt template, checklist prompt. |33| Context Pack | 关键难点是资料、约束、样例和反例组织。 | Context folder, source bundle, glossary. |34| Workflow | 有稳定步骤、角色、输入输出和人工推进点。 | SOP, runbook, workflow doc. |35| Skill | 高频可复用,有明确触发语、输入、输出、边界和验收方式。 | `SKILL.md` + references/scripts. |36| Loop | 需要多轮状态、恢复、触发器、检查点、重试或人工接管。 | Loop contract, state files, update log. |37| System | 多个 Skill/Loop/Agent 组合,涉及权限、成本、审计、评估或团队级运行。 | Product/system PRD, architecture plan. |3839## Workflow40411. **Identify input shape**42 - AI conversation43 - repeated manual task44 - prompt or prompt pack45 - team workflow46 - successful delivery trace47 - failed or over-engineered asset proposal48492. **Extract evidence**50 - user goal and business context51 - input materials and constraints52 - repeated steps53 - output artifact54 - human decision points55 - validation or acceptance criteria56 - frequency and reuse audience57 - state, retry, handoff, or automation needs58593. **Score only what matters**60 - repeatability61 - input stability62 - output stability63 - validation clarity64 - context dependency65 - human judgment dependency66 - failure cost67 - reuse audience68694. **Recommend one primary asset layer**70 - Give the smallest layer that would create real reuse.71 - Explain why the lower layer is insufficient.72 - Explain why the higher layer is overkill.73 - Include do-not-assetize if that is the best answer.74755. **Name the smallest next artifact**76 - Prompt: one reusable prompt with slots.77 - Context Pack: file list and required metadata.78 - Workflow: step list and handoff format.79 - Skill: trigger description, non-triggers, output contract, references.80 - Loop: state files, stop conditions, Human Gate.81 - System: PRD / architecture / eval plan before implementation.82836. **Define reuse signal**84 - What would prove this asset is worth deepening?85 - What failure signal should stop further investment?8687## Output Contract8889Use this structure:9091```markdown92## Assetization Diagnosis9394- Current shape: <conversation / prompt / context / workflow / skill candidate / loop candidate / system candidate>95- Recommended layer: <Do Not Assetize / Prompt / Context Pack / Workflow / Skill / Loop / System>96- Confidence: <High / Medium / Low>9798## Evidence99- ...100101## Why This Layer102- ...103104## Why Not Adjacent Layers105- Lower layer is insufficient because ...106- Higher layer is overkill because ...107108## Smallest Next Artifact109- ...110111## Reuse Signal To Watch112- ...113114## Do Not Do115- ...116```117118For batch scenarios, use a compact table with columns:119120- Scenario121- Current shape122- Recommended layer123- Evidence124- Smallest next artifact125- Reuse signal126- Priority127128## Boundary Rules129130- If the user asks to create the actual Skill after diagnosis, hand off to `skill-creator`.131- If the user asks whether an idea is a good product, use `ai-collaboration-calibration` or `decision-research`.132- If the user asks to turn a product idea into a PRD, use `prd-architect`.133- If the user asks to review an existing Skill, use `skill-reviewer` when available.134- If the user provides trace/logs and wants root cause, use a trace/debug skill, not this one.135- If the work is high responsibility, such as medical, legal, financial, safety, hiring, or compliance decisions, recommend human review and avoid closed-loop automation.136137## Non-Assetization Cases138139Recommend not assetizing, or only a lightweight note, when:140141- The task happened once and is unlikely to recur.142- The input varies so much that templates would mislead.143- The output depends on taste or senior judgment with no stable rubric.144- The cost of a wrong answer is high and no verification exists.145- The user cannot name a reuse audience.146- A simpler checklist would solve the problem.147148## Definition Of Done149150- The recommendation is one primary asset layer, not a vague list.151- Adjacent layers are explicitly accepted or rejected.152- The next artifact is small enough to create in one focused pass.153- The answer includes a reuse or failure signal.154- The diagnosis does not expose private context unless the user supplied and authorized it in this run.155156## Resources157158- `references/asset-layer-rubric.md`:当 Prompt / Context Pack / Workflow / Skill / Loop / System 边界不清时读取。159- `scripts/check_assetization_report.py`:检查资产化诊断报告是否包含推荐层级、证据、最小下一步和复用信号。160161## Evaluation162163Smoke prompts:164165- `这段工作是不是值得做成 Skill?`166- `这个 prompt 应该沉淀成 workflow 还是 Skill?`167- `我们连续三次做了类似 AI 协作,帮我判断该资产化到哪层。`168- `这只是一次性任务,不要过度沉淀。`169170Non-trigger prompts:171172- `直接帮我创建一个 Skill。`173- `看下这个 trace,定位根因。`174- `帮我写一个 PRD。`175- `查一下今天的新闻。`