帮助你为自适应智能体设计任务编排、评测门控与可复用技能提炼方案
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "dynamic-workflow-mode" 技能: 1. 下载 https://raw.githubusercontent.com/affaan-m/ECC/main/skills/dynamic-workflow-mode/SKILL.md 2. 保存为 ~/.claude/skills/dynamic-workflow-mode/SKILL.md 3. 装好后重载技能,告诉我可以用了
请为一个代码助手设计 dynamic workflow mode 任务骨架:包含任务分解、局部工具调用、阶段性检查点、失败回退策略,以及何时提炼为可复用 skill 的判断标准。
输出一套结构化工作流方案,说明各阶段职责、切换条件与技能沉淀标准。
我有一个会自动生成数据报告的 AI 代理,请帮我设计 eval gates:分别检查数据完整性、结论一致性、格式合规性,并定义每个 gate 的通过阈值和失败后的处理动作。
得到一套可执行的评测门设计,包括指标、阈值、触发时机和失败补救流程。
请分析这个多步骤客服代理流程,找出适合沉淀为通用 skill 的子任务,例如意图分类、知识检索、回复润色,并给出模块边界、输入输出定义和复用建议。
输出技能拆分建议清单,明确每个模块的职责、接口和适用场景。
Use this skill when a coding agent can generate or adapt a task-local harness instead of only following a static command flow. The goal is to turn dynamic workflow mode into a disciplined system: temporary harnesses for one-off work, shared skill extraction for repeated work, and observable control pane checkpoints for teams.
Dynamic workflow mode should produce a task-local harness only when the harness is cheaper and safer than manually driving the same steps. The harness must have:
Use this structure before writing code:
# Dynamic Workflow Harness
Objective:
- Ship:
- Do not ship:
Inputs:
- Repo or workspace:
- External systems:
- Credentials policy:
Loop:
1. Discover current state.
2. Generate or update the smallest useful artifact.
3. Run eval checks.
4. Record status and handoff.
5. Stop on failed gate, unclear ownership, or unsafe external action.
Eval:
- Command:
- Expected pass signal:
- Failure owner:
Handoff:
- Status:
- Evidence:
- Next action:
Promote a task-local harness into a shared skill only when at least two of these are true:
When extracting, write the skill first in skills/<name>/SKILL.md. Add command shims only if a legacy slash-entry surface is still required.
Dynamic workflow mode becomes team-usable when it exposes state. Record these checkpoints whenever the task spans more than one session:
If the repo has ECC2 state enabled, prefer adding or reading checkpoints through the ECC control pane or state-store-backed scripts instead of scattering untracked notes.
Every dynamic harness needs a task-specific eval. Pick the cheapest reliable gate:
…
为 Quarkus 项目执行发布前验证闭环,涵盖构建、测试、扫描与差异审查。
为多种代码智能体提供可移植工作区,支持议题驱动协作与会话连续执行。