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 agentmods add instructions/o0000-code/cc-workshop/agents-mdgit clone --depth 1 https://github.com/O0000-code/CC-WorkshopWhat 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 | $0.01428 | $0.01428 |
| Opus 5 | $0.00714 | $0.00714 |
| Sonnet 5 | $0.00286 | $0.00286 |
| Haiku 4.5 | $0.00143 | $0.00143 |
Grade A, and why
CC-Workshop AGENTS.md 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 yesterday.
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 — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CC Workshop -- AI Agent Project Guide
Project Overview
CC Workshop is a Tauri 2 desktop application for managing Claude Code Skills, MCP Servers, and CLAUDE.md configuration files. It provides a unified GUI to organize, import, export, and deploy these resources across projects.
- Platform: macOS only (minimum macOS 12.0)
- Identifier:
io.github.o0000-code.ensemble - Data directory:
~/.cc-workshop/(data.json, settings.json, skills/, mcps/, claude-md/)
Architecture
Tauri 2 dual-process model: a Rust backend (core logic + filesystem) communicates with a React frontend (UI + state) via Tauri IPC commands.
Directory Map
CC Workshop2/
├── src/ # React frontend
│ ├── components/ # UI components (10 groups: common, layout, skills, mcps, ...)
│ ├── pages/ # Page components (12 pages)
│ ├── stores/ # Zustand state management (12 stores)
│ ├── types/ # TypeScript type definitions
│ └── utils/ # Helpers (tauri.ts, constants.ts, parseDescription.ts, text.ts)
├── src-tauri/ # Rust backend
│ ├── src/
│ │ ├── commands/ # Tauri IPC commands (13 modules: skills, mcps, claude_md, ...)
│ │ ├── utils/ # Parser + path utilities
│ │ ├── types.rs # Shared data types (serde-serializable)
│ │ ├── lib.rs # Tauri app builder + command registration
│ │ └── main.rs # Entry point
│ └── Cargo.toml
├── docs/ # Project documentation
└── package.json
IPC Communication
- Frontend calls Rust via
safeInvoke<T>(command, args)fromsrc/utils/tauri.ts safeInvokewraps@tauri-apps/api/coreinvokewith Tauri environment detection- Backend commands are annotated with
#[tauri::command]and registered inlib.rs
Tech Stack
| Layer | Technology |
|---|---|
| Frontend | React 18 + TypeScript 5.9 |
| Styling | Tailwind CSS 4 (@tailwindcss/vite plugin) |
| State | Zustand 5 |
| Routing | react-router-dom 7 |
| Backend | Tauri 2.9 + Rust (edition 2021) |
| Build | Vite 6 (frontend) + Cargo (backend) |
| Icons | lucide-react |
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.
- yesterday First seen · 156 lines · 1,428 tokens per session scan A ea9ae19f2460
CC-Workshop AGENTS.md is an instructions file published in the GitHub repository O0000-code/CC-Workshop (18 stars, last pushed 3mo ago), licensed MIT. It adds 1,428 tokens to every session, about $0.0071 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.
Other instructions, from other repositories
codex-switch AGENTS.md
AGENTS.md instructions for ChArLiEdance/codex-switch, covering repository agents and platform isolation.
Ataru AGENTS.md
Instructions for lovstudio/Ataru, covering agents.md, design system, quick rules, color palette and common patterns.
Ataru CLAUDE.md
Instructions for lovstudio/Ataru, covering claude.md, design system, quick rules, color palette and common patterns.
ship-studio AGENTS.md
Instructions for ship-studio/ship-studio, covering agent instructions for ship studio, non-negotiables and layout in one breath.
DeepSeek-Harness-Desktop AGENTS.md
Instructions for web-casa/DeepSeek-Harness-Desktop, covering agents.md — dsh desktop, 项目本质, 不可违背的安全不变量, 版本单一事实源(改动版本时必须同时改全部) and harness 升级启动契约(bump pin 前必读).
codex-trace AGENTS.md
Instructions for PixelPaw-Labs/codex-trace, covering claude.md, commands, dev, lint and format.