Borrowing it
Nothing to install: this file belongs to SilenceInsect/AIDocxWorkFlow. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/SilenceInsect/AIDocxWorkFlow/main/.cursor/skills/aidocx-workflow-conversation/SKILL.mdgit clone --depth 1 https://github.com/SilenceInsect/AIDocxWorkFlowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/silenceinsect/aidocxworkflow/aidocx-workflow-conversation)<a href="https://agentmods.dev/skills/silenceinsect/aidocxworkflow/aidocx-workflow-conversation"><img src="https://agentmods.dev/badge/skills/silenceinsect/aidocxworkflow/aidocx-workflow-conversation.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00066 | $0.08554 |
| Opus 5 | $0.00033 | $0.04277 |
| Sonnet 5 | $0.00013 | $0.01711 |
| Haiku 4.5 | $0.00007 | $0.00855 |
Grade A, and why
aidocx-workflow-conversation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 759 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AIDocxWorkFlow 编排契约
v35 新增四大能力:
- S1 项目级需求检测 — 显式识别项目需求 vs 单次需求,找到或创建项目目录
- 项目级-模块级知识沉淀 — 后续阶段收到项目级需求时整理知识沉淀到知识库
- 8 expert 并行 + merge-expert 串行收尾 — 8 个模块专家并行产出 TP/TC,merge-expert 专门合并,防止主 agent 长上下文脱轨
- S6 强制公共级 xlsx — 不受 project_name 影响,始终产出公共级 xlsx
本 skill 不再承担"完整手工操作指南"职责。 它只定义一件事:对话层如何通过
run_stage()/run_pipeline()驱动运行时编排。
1. 目标
- 统一单阶段与多阶段入口,避免脚本绕过 gate / ledger / review 资产。
- 让“人看到的入口说明”和“代码实际编排路径”保持一致。
- 把旧式“分阶段手工说明”降级为历史兼容背景,而不是当前推荐入口。
2. 唯一推荐入口
from ai_workflow.conversation_skills import run_stage, run_pipeline
单阶段
result = run_stage("S6", req_name="游戏道具商城系统", project_name="<project_name>", version="v3.01")
print(result["status"])
多阶段
pipeline = run_pipeline(
["S5", "S6", "S7"],
req_name="游戏道具商城系统",
project_name="<project_name>",
version="v3.01",
)
for item in pipeline["stages"]:
print(item["stage"], item["status"])
阶段开始前:旧产物清理询问(v8 实战决策)
run_stage() / run_pipeline() / run_s1_pipeline() 在执行每个阶段前会自动检测
该阶段目录是否存在且非空——若命中,会在 preflight 之前询问:
┌─ [AIDocxWorkFlow] 阶段开始前询问 ─────────────────────────────┐
│ 检测到阶段目录已存在且非空,是否删除旧产物后重新执行? │
└──────────────────────────────────────────────────────────────┘
阶段 :S6
需求 :游戏道具商城系统
版本 :v3.01
阶段目录 :workflow_assets/游戏道具商城系统/v3.01/「S6 测试用例生成」
现有文件数 :7
现有总大小 :28.4 KB
最近修改 :2026-07-09T23:54:17
文件清单 :
- test_cases.json
- test_cases.md
- ...
请选择:
[Y] 删除旧产物,重新跑该阶段(推荐)
[N] 保留旧产物,跳过该阶段(status=SKIPPED)
[A] 中止整个流水线(abort)
决策语义:
| 用户输入 | 行为 | 返回 status |
|---|---|---|
Y |
shutil.rmtree(stage_dir) 删除整个阶段目录(含 raw + ledger),重新执行 |
阶段正常推进 |
N / 空回车 |
保留旧产物,跳过该阶段 | SKIPPED + skip_reason=user_chose_keep_existing |
A |
中止整个流水线 | SystemExit(run_pipeline 抛出后停) |
| 非交互环境(无 TTY) | 默认 auto_keep(不阻塞 CI) |
SKIPPED + skip_reason=non_interactive_env_default_keep |
作用域:
run_stage("S6", ...)→ 仅 S6 询问run_pipeline(["S5","S6","S7"], ...)→ 每个阶段独立询问(不会批量问)run_s1_pipeline(...)→ S1 子模块入口同样询问(覆盖直接调用场景)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 759 lines · 66 tokens per session scan A 0c82aa77184b
aidocx-workflow-conversation is a skill published in the GitHub repository SilenceInsect/AIDocxWorkFlow (2 stars, last pushed 1mo ago), licensed MIT. It adds 66 tokens to every session and 8,554 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…