co-creation-docs

co-creation-docs is a skill for Claude Code, Codex from zts212653/clowder-ai. It costs 46 tokens per session (1,939 once invoked), scanned A, original, MIT.

A workflow for jointly reviewing and delivering documentation, with different handling for advice-only reviews and approved file changes.

In plain words
What is it for?
It helps review Markdown and other documents, classify conflicts and reversibility, choose direct delivery or a pull request, and run suitable validation.
Why use it?
It prevents documentation edits from being written, committed, or pushed without clear permission and adjusts checks to the change's risk.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps review Markdown and other documents, classify conflicts and reversibility, choose…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zts212653/clowder-ai/co-creation-docs
About the project

Clowder AI is a self-hosted workspace where AI agents from different model families work together as a persistent team, retaining identities, shared evidence, and memory across tasks. It is for people who want to coordinate multiple AI agents without repeatedly rebuilding their context.

zts212653/clowder-ai · 2,906 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zts212653/clowder-ai --skill co-creation-docs
Clone the repo
git clone --depth 1 https://github.com/zts212653/clowder-ai

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for co-creation-docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/zts212653/clowder-ai/co-creation-docs.svg)](https://agentmods.dev/skills/zts212653/clowder-ai/co-creation-docs)
Your own site
<a href="https://agentmods.dev/skills/zts212653/clowder-ai/co-creation-docs"><img src="https://agentmods.dev/badge/skills/zts212653/clowder-ai/co-creation-docs.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,939 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.01939
Opus 5 $0.00023 $0.00970
Sonnet 5 $0.00009 $0.00388
Haiku 4.5 $0.00005 $0.00194

Measured 7d ago against content hash 07841f5ac9f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

co-creation-docs 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 7d 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.

cat-cafe-skills/co-creation-docs/SKILL.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Co-Creation Docs Lane

价值门禁

Clowder AI 曾把纯文档 PR #2837 跑成 worktree → full gate → cloud review → tracking;operator 在同一 thread 两次追问,并有更早的同型纠偏。这个 skill 保护的是家里特有的交付边界:内容判断与代码级流水线都按真实风险触发,不把“有 Markdown diff”本身当成流程出生证。

先判意图

意图 动作
review_only 只给内容意见;禁止写文件、commit、push
co_create_and_land 继续下面的分类与交付

用户说“review”不等于授权落盘。用户明确说“这些可以修正/落盘/提交”才进入第二行。

分类证据

先问“方案感觉笨重吗”:显然满足以下四项时,猫可直接自判 delivery=direct_push,不运行 classifier,不扫全量 PR,也不建 worktree:

  • changed files 全是普通 docs-only 内容;
  • 不修改 SOP / skill / script / schema / 权限等执行或治理面;
  • 没有已知的同路径并发或冲突信号;
  • ≤1 commit 可回滚,且不影响外部用户、数据或契约。

拿不准,发现冲突信号,或准备进入 worktree / PR / cloud / full gate 前,才列出完整 changed files(含 untracked)、核 main 方向,并给 classifier 两个显式输入:

  • conflict=none|detected|unknown;已知在飞 PR 或共享路径争用时才查具体 PR paths;
  • reversibility=one_commit|high|unknown

运行:

pnpm classify:co-creation-docs -- \
  --base origin/main \
  --conflict none \
  --reversibility one_commit

one_commit 只在“≤1 commit 可回滚 + 不影响外部用户/数据/契约”时成立。拿不准就填 unknown;classifier 会要求 PR。classifier 是升档前的风险证据,不是 direct push 的许可仪式。

按输出交付

delivery=direct_push

  1. 跑轻量增量校验;如果用了 classifier,就消费它返回的 validation
  2. 判断 contentReview=required|reuse|skip:出现新的观点、架构取舍或事实判断才 required;operator 已逐字共创、机械登记/拼写、或已有 verdict 覆盖时 reuse/skip
  3. 只暂存本次文档,检查 staged diff。
  4. commit body 写 Why + 自己的模型签名;push origin main
  5. 回报 changed files、validation、review decision、commit SHA、push 结果。

这条路径不建 worktree、不建 PR、不触发 cloud review、不跑 full gate。

delivery=pull_request

  1. 用独立分支避免争用;仍只跑 classifier 返回的 docs validation。
  2. 新实质内容才找非作者猫做内容 review;已有 verdict 或可证明机械合并用 continuityProof 复用,不因 SHA 变化重审。
  3. cloudReview=required 才触发 cloud;fullGate=required 才跑 full gate。
  4. evidence 闭合后由在场 merge owner 使用 squash merge,不额外召唤一只猫只为按按钮。

PR、cloud、full gate 是三个独立结论。冲突或治理风险可要求 PR,但不自动把 docs 变成代码;家规 / SOP / skill 语境由本地跨族猫覆盖治理语义,context-blind cloud 没有独立风险面时不选择。代码、测试、安全边界或外部契约才升级 cloud / full gate。

lane=regular_development

切到 docs/SOP.md 的五轴风险路由。脚本、skill、SOP definition 或第一方执行面不能伪装成“也是 Markdown”,但 regular 只决定载体进入开发车道,不自动串联 planning / TDD / local + cloud / full gate;由行为、数据、安全、契约、不可逆风险分别触发。

Read the full file on GitHub · 125 lines

Changes

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.

  1. 7d ago First seen · 125 lines · 46 tokens per session scan A 07841f5ac9f7

Subscribe to this mod's changes

co-creation-docs is a skill published in the GitHub repository zts212653/clowder-ai (2,906 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 1,939 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens