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.
npx skills add jessepwj/CCteam-creator --skill ccteam-creator-cngit clone --depth 1 https://github.com/jessepwj/CCteam-creatorWrote 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/jessepwj/ccteam-creator/ccteam-creator-cn)<a href="https://agentmods.dev/skills/jessepwj/ccteam-creator/ccteam-creator-cn"><img src="https://agentmods.dev/badge/skills/jessepwj/ccteam-creator/ccteam-creator-cn/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jessepwj/ccteam-creator/ccteam-creator-cn"><img src="https://agentmods.dev/badge/skills/jessepwj/ccteam-creator/ccteam-creator-cn.svg" alt="Reviewed on agentmods" width="80" 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.00226 | $0.09146 |
| Opus 5 | $0.00113 | $0.04573 |
| Sonnet 5 | $0.00045 | $0.01829 |
| Haiku 4.5 | $0.00023 | $0.00915 |
Grade B, and why
CCteam-creator-cn scanned grade B with 1 finding 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 11d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat ~/.claude/plugins/cache/ccteam/CCteam-creator/*/.claude-plugin/plugin.json 2>/dev/null || \ How it starts
The opening of the file, as written. The whole thing — 589 lines — stays where its author put it; the contents beside it link to each section on GitHub.
团队项目设置
为复杂项目设置多智能体团队,使用持久化文件进行规划和进度追踪。
前置条件
在开始第 1 步之前,你(team-lead)必须直接读取所有参考文件到自己的上下文中:
Read references/onboarding.md
Read references/templates.md
Read references/roles.md
不要委托给子智能体(Explore、general-purpose 等)去读取。子智能体只会返回摘要,丢失关键细节——你需要完整的模板和入职 prompt 才能正确生成文件和启动智能体。
流程
第 0 步 Update Check(自动):后台拉取最新 version 对比本地,如有新版一行通知后继续
第 0 步 Detect(自动):检查 .plans/ 是否已存在 → 如有,提供恢复选项
- 需求咨询 — 向用户介绍团队机制、了解需求
- 确认方案 — 汇总需求,让用户确认团队配置
- 创建规划文件(含智能体子目录)
- 创建团队 + 生成智能体
- 确认设置 + 引导用户压缩上下文
第 0 步 Update Check:版本自检(自动 — 在一切之前,~2 秒)
在进入任何其他步骤之前,做一次轻量的版本检查。不需要用户同意,不要问任何问题。
-
远程版本:WebFetch
https://raw.githubusercontent.com/jessepwj/CCteam-creator/master/.claude-plugin/plugin.json,prompt 写:"What is the value of the version field? Respond with just the version string." -
本地版本:用 Bash 读本地 plugin.json(按顺序试以下路径,用第一个存在的):
cat ~/.claude/plugins/cache/ccteam/CCteam-creator/*/.claude-plugin/plugin.json 2>/dev/null || \ cat ~/.claude/plugins/cache/ccteam/CCteam-creator-cn/*/.claude-plugin/plugin.json 2>/dev/null || \ cat ~/.claude/skills/CCteam-creator/.claude-plugin/plugin.json 2>/dev/null从输出中提取 version 字段。
-
对比:
- 远程 ≤ 本地 或 WebFetch 失败 或 本地 plugin.json 找不到 → 完全静默 跳过,直接进入下一步。不要打印"版本检查通过"之类的确认
- 远程 > 本地 → 打印一行通知(仅一行,然后立即继续,不等用户回复):
ℹ️ CCteam-creator 有新版本可用(<本地版本> → <远程版本>)。下次启动 Claude Code 时自动生效,本次 session 继续使用 <本地版本>。如需立即生效:
/plugin marketplace update ccteam→/exit→ 重启 → 重新触发本 skill。
硬性规则:
- ❌ 不要问用户"是否继续使用旧版本" — 不要做任何确认
- ❌ 不要尝试 Bash 更新 plugin 缓存 — 那是 Claude Code 的职责,不是 skill 的
- ❌ 不要把版本检查作为 TodoWrite/TaskCreate 里的可见任务 — 它应当在后台无感完成
- ❌ 如果网络失败,不要重试 — 直接进入下一步
- ✅ 最多一行通知,然后立即进入下一步
第 0 步 Detect:检测已有项目(自动 — 在一切之前)
开始搭建前,检查当前工作目录是否存在 .plans/ 目录。
如果 .plans/ 存在:
- 读取项目 CLAUDE.md(自动加载)获取团队花名册和项目上下文
- 扫描
.plans/的项目目录——如有多个则列出 - 告诉用户:"发现已有项目 [名称],团队成员 [花名册]。恢复该项目还是新建?"
- 恢复:
a. 检查
.plans/<project>/team-snapshot.md是否存在 b. 如快照存在:读快照头的元数据。对比 skill 源文件时间戳 vs 快照生成时间:- 源文件未变:使用快照中的缓存入职 prompt,直接启动智能体(跳过读 skill 参考文件)
- 源文件已变:通知用户:"Skill 文件在快照生成后被修改了。用缓存配置快速恢复,还是重新读最新 skill 文件来获取最新协议?"用户选择 c. 快照不存在:回退为读所有 skill 参考文件(onboarding.md、roles.md)来重建入职 prompt,然后启动智能体 d. 启动后,检查 TaskList / 读取各 agent progress 文件接续工作
- 新建:正常进入第 1 步
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 589 lines · 226 tokens per session scan B 2cdea3f344c3
CCteam-creator-cn is a skill published in the GitHub repository jessepwj/CCteam-creator (306 stars, last pushed 5mo ago), licensed MIT. It adds 226 tokens to every session and 9,146 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
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…
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…
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…