@jerome1337/ccc
v1.0.0
Published
Reusable Claude Code rules, CLAUDE.md, and AGENTS.md
Downloads
55
Maintainers
Readme
ccc
Reusable Claude Code Config, rules, skills, CLAUDE.md, RTK.md and AGENTS.md for your projects.
Contents
claude-rules/
├── CLAUDE.md # Claude Code project instructions (security, RTK reference)
├── RTK.md # Rust Token Killer instructions (token-optimized CLI proxy)
├── AGENTS.md # General AI agent instructions (conventions, structure, workflow)
├── rules/ # Claude Code rules (auto-loaded by .claude/rules/)
│ ├── architecture.md # Monorepo structure, stack, import conventions
│ ├── code-style.md # Naming, exports, Biome, comments, reusability
│ ├── commands.md # Dev commands (build, lint, db, turbo)
│ └── patterns.md # Frontend patterns, auth routes, AI integration
└── README.mdUsage
npx @jerome1337/ccc initThis copies the following into your project:
| Source | Destination |
|---|---|
| CLAUDE.md | ./CLAUDE.md |
| AGENTS.md | ./AGENTS.md |
| RTK.md | ./RTK.md |
| rules/*.md | ./.claude/rules/*.md |
Existing files are skipped by default. Use --force to overwrite:
npx @jerome1337/ccc init --forceHow It Works
- CLAUDE.md — Loaded automatically by Claude Code at the project root. Contains security guidelines and references RTK.md.
- AGENTS.md — Read by AI coding agents (Claude, Cursor, Copilot, etc.) for project conventions.
- rules/ — Files in
.claude/rules/are automatically loaded by Claude Code based on theiralwaysApply/globsfrontmatter. All rules here usealwaysApply: true.
Customization
These rules are tailored for a Next.js 16 + Turborepo + Bun + Drizzle + Biome + shadcn/ui stack. To adapt for a different project:
- Update
rules/architecture.mdwith your project structure - Update
rules/commands.mdwith your dev commands - Update
rules/patterns.mdwith your architecture patterns - Adjust
rules/code-style.mdnaming conventions if different
