CC-Workshop AGENTS.md

Project instructions for CC Workshop, a macOS desktop application for managing Claude Code skills, MCP servers, and project instruction files. It explains the Tauri desktop architecture, where data is stored, and how the Rust backend communicates with the React interface.

In plain words
What is it for?
Use them when developing CC Workshop, working on its React components or Rust commands, managing local skills and configurations, or tracing communication between the two application parts.
Why use it?
They help an agent understand the application’s structure and follow its conventions when changing the interface, backend, or stored resources.

Instructions file for CodexOpenCode

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.

agentmods
npx agentmods add instructions/o0000-code/cc-workshop/agents-md
Clone the repo
git clone --depth 1 https://github.com/O0000-code/CC-Workshop

Made for: Codex, OpenCode.

Per session 1,428 This file is loaded in full into every session.
When invoked 1,428 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01428 $0.01428
Opus 5 $0.00714 $0.00714
Sonnet 5 $0.00286 $0.00286
Haiku 4.5 $0.00143 $0.00143

Measured yesterday against content hash ea9ae19f2460, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 156 lines

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) from src/utils/tauri.ts
  • safeInvoke wraps @tauri-apps/api/core invoke with Tauri environment detection
  • Backend commands are annotated with #[tauri::command] and registered in lib.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

Read the full file on GitHub · 156 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. yesterday First seen · 156 lines · 1,428 tokens per session scan A ea9ae19f2460

Subscribe to this mod's changes

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.