{"id":48250501,"url":"https://github.com/darkroomengineering/cc-settings","last_synced_at":"2026-04-04T20:51:34.410Z","repository":{"id":332436819,"uuid":"1132940205","full_name":"darkroomengineering/cc-settings","owner":"darkroomengineering","description":"Vulcan may be a good name","archived":false,"fork":false,"pushed_at":"2026-04-03T15:01:33.000Z","size":738,"stargazers_count":17,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T18:35:17.337Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darkroomengineering.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-12T16:56:22.000Z","updated_at":"2026-04-03T15:01:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/darkroomengineering/cc-settings","commit_stats":null,"previous_names":["darkroomengineering/cc-settings"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/darkroomengineering/cc-settings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkroomengineering%2Fcc-settings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkroomengineering%2Fcc-settings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkroomengineering%2Fcc-settings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkroomengineering%2Fcc-settings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darkroomengineering","download_url":"https://codeload.github.com/darkroomengineering/cc-settings/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkroomengineering%2Fcc-settings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31413284,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T20:51:33.647Z","updated_at":"2026-04-04T20:51:34.396Z","avatar_url":"https://github.com/darkroomengineering.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Darkroom Claude Code Settings\n\nOpen-source AI coding configuration for [darkroom.engineering](https://darkroom.engineering) projects.\n\n**v8.0** — Layered config, portable standards, progressive complexity.\n\n---\n\n## What Changed in v8\n\nPrevious versions shipped a 538-line monolithic CLAUDE.md loaded into every conversation and every agent spawn — ~5,000 tokens of config overhead per agent, compounding to ~198K tokens across a full orchestration pipeline. A third of API spend was re-reading configuration.\n\nv8 splits this into layers:\n\n| Layer | File | Approx. Tokens | Loaded |\n|-------|------|----------------|--------|\n| **Standards** | `AGENTS.md` | ~1,500 | Per-project, all AI tools |\n| **Claude Config** | `CLAUDE.md` | ~1,200 | Claude Code only |\n| **Orchestration** | `profiles/maestro.md` | ~1,000 | Opt-in, power users |\n| **Rules** | `rules/*.md` | ~500 each | On-demand by file type |\n\n**Before:** Every agent loaded 5,000+ tokens of config. 9-agent pipeline = 45K tokens just for config.\n**After:** Base cost is ~2,700 tokens. Orchestration is opt-in. Rules load contextually.\n\n---\n\n## Install\n\n```bash\nbash \u003c(curl -fsSL https://raw.githubusercontent.com/darkroomengineering/cc-settings/main/setup.sh)\n```\n\nRestart Claude Code.\n\n\u003cdetails\u003e\n\u003csummary\u003eAlternative methods\u003c/summary\u003e\n\n**Clone and run locally:**\n```bash\ngit clone https://github.com/darkroomengineering/cc-settings.git /tmp/darkroom-claude\nbash /tmp/darkroom-claude/setup.sh\n```\n\n**Plugin install (requires GitHub SSH keys):**\n```\n/plugin install darkroomengineering/cc-settings\n```\n\u003c/details\u003e\n\n### What Gets Installed\n\n```\n~/.claude/\n├── CLAUDE.md           # Claude-Code-specific config (slim)\n├── AGENTS.md           # Portable coding standards (reference copy)\n├── settings.json       # Permissions, hooks, MCP servers\n├── agents/             # 10 specialized agents\n├── skills/             # 33 auto-invocable skills\n├── profiles/           # Workflow profiles (maestro, nextjs, etc.)\n├── rules/              # Path-conditioned rules (load on-demand)\n├── contexts/           # Ecosystem contexts\n├── scripts/            # Hook and utility scripts\n├── lib/                # Shared bash utilities\n├── docs/               # Reference documentation\n├── learnings/          # Local persistent memory\n└── handoffs/           # Session state backups\n```\n\n---\n\n## Getting Started\n\nSee **[USAGE.md](./USAGE.md)** for the progressive onboarding guide (Level 0-4: from \"just talk\" to full orchestration).\n\n---\n\n## Cross-Tool Compatibility\n\n`AGENTS.md` is the [open standard](https://agents.md) for AI coding instructions, supported by Codex, Cursor, Copilot, Windsurf, and 20+ other tools.\n\nFor projects using multiple AI tools:\n```bash\n# Symlink so both Claude Code and other tools read the same file\nln -s AGENTS.md CLAUDE.md\n```\n\nClaude Code reads `CLAUDE.md`. Other tools read `AGENTS.md`. The symlink gives both the same content.\n\n---\n\n## Knowledge System\n\nTwo-tier knowledge management:\n\n| Tier | Storage | Scope |\n|------|---------|-------|\n| **Shared** | GitHub Project board | Team-wide decisions, conventions, gotchas |\n| **Local** | Auto-memory + learnings | Personal preferences, session context |\n\n```bash\n# Store locally (default)\n/learn store bug \"useAuth causes hydration — use dynamic import\"\n\n# Store to team knowledge base\n/learn store --shared gotcha \"Sanity API returns UTC dates\"\n```\n\nSee [docs/knowledge-system.md](./docs/knowledge-system.md) for setup.\n\n---\n\n## Profiles\n\n| Profile | When To Use |\n|---------|-------------|\n| `maestro` | Full orchestration — delegate everything to agents |\n| `nextjs` | Next.js App Router web apps |\n| `react-native` | Expo mobile apps |\n| `tauri` | Tauri desktop apps (Rust + Web) |\n| `webgl` | 3D web (R3F, Three.js, GSAP) |\n\n---\n\n## Documentation\n\n| Doc | Content |\n|-----|---------|\n| [AGENTS.md](./AGENTS.md) | Portable coding standards and guardrails |\n| [USAGE.md](./USAGE.md) | Progressive onboarding guide |\n| [docs/knowledge-system.md](./docs/knowledge-system.md) | Two-tier knowledge setup |\n| [skills/README.md](./skills/README.md) | Skill system |\n| [hooks/README.md](./hooks/README.md) | Hook configuration |\n| [docs/hooks-reference.md](./docs/hooks-reference.md) | All 14 hook events |\n| [docs/settings-reference.md](./docs/settings-reference.md) | settings.json fields |\n| [docs/frontmatter-reference.md](./docs/frontmatter-reference.md) | YAML frontmatter fields for agents, skills, rules |\n| [docs/feature-agents-guide.md](./docs/feature-agents-guide.md) | Creating project-specific feature agents |\n| [docs/github-workflow.md](./docs/github-workflow.md) | GitHub-native workflow with Issues and Projects |\n| [docs/thread-types.md](./docs/thread-types.md) | Thread type decision tree for orchestration |\n| [docs/enhanced-todos.md](./docs/enhanced-todos.md) | Todo complexity sizing and token budgeting |\n| [docs/parallel-batch-detection.md](./docs/parallel-batch-detection.md) | Parallel batch detection algorithm |\n\n---\n\n## Platform Support\n\n- **macOS** — Native (Homebrew)\n- **Linux** — Native (apt, dnf, pacman)\n- **Windows** — Via Git Bash, WSL, or MSYS2\n\n---\n\n## Contributing\n\n1. Fork the repo\n2. Edit configs locally\n3. Test: `bash setup.sh`\n4. Validate: `bash tests/safety-net-test.sh`\n5. Submit PR with conventional commits (`feat:`, `fix:`, `refactor:`, `docs:`)\n\n### Project Structure\n\n```\nAGENTS.md              # Portable coding standards (source of truth)\nCLAUDE-FULL.md         # Claude-Code config (installed as ~/.claude/CLAUDE.md)\nsetup.sh               # Installer\nsettings.json          # Permissions, hooks, MCP\nagents/                # Agent definitions\nskills/                # Skill definitions\nprofiles/              # Workflow + platform profiles\nrules/                 # Path-conditioned rules\ncontexts/              # Ecosystem contexts\nscripts/               # Bash scripts\nlib/                   # Shared bash libraries\ndocs/                  # Reference docs\ntests/                 # Validation tests\n```\n\n---\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkroomengineering%2Fcc-settings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarkroomengineering%2Fcc-settings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkroomengineering%2Fcc-settings/lists"}