Establishes the global AI development config repo from scratch: - Chunk 1: repo skeleton, install.sh, statusline, deploy manifest - Chunk 2: core instructions (coding/git/testing), CLAUDE.md rewrite (always-on + content index two-tier model), docs restructure, 6 ADRs, ROADMAP.md, .gitkeep placeholders - Bootstrap skills in .claude/skills/ (to be catalogued and migrated to .agents/skills/ in Chunk 3) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2.0 KiB
2.0 KiB
Warning
This is the repo meta-config. It tells Claude how to work inside this repository itself — structure, conventions, how to add skills/workflows/providers.
It is NOT the global config deployed to
~/.claude/. That file lives atproviders/claude-code/CLAUDE.md. Do not conflate the two.
Working in this repo
This repo is the global AI development configuration repository — the authoritative source for agent definitions, skills, workflows, and prompts across all projects.
Structure
core/— provider-agnostic source of truth (plain language, no tool-specific references).agents/skills/— canonical skills location (Agent Skills standard); populated in Chunk 3providers/claude-code/— Claude Code adapter (deployed to~/.claude/viainstall.sh)docs/— project documentation, PRDs, and issuesscripts/— install.sh (sync.sh and init-project.sh come in Chunk 6)tests/— test scripts
Key documents
Read these at the start of every session in this repo:
CONTEXT.md— domain language and principles; challenge any term that conflicts with itdocs/VISION.md— purpose, goals, roadmap, and long-term Management Application vision
Key rules
core/content must use plain imperative language — no tool names, provider APIs, or format assumptions- Never edit files deployed by
sync.shdirectly in a project; put customizations in override files providers/claude-code/CLAUDE.mdis the deployed global config — edit it there, not here
Chunk development workflow
Each chunk follows this sequence:
/grill-with-docs— grill vision/context before writing anything/to-prd— write the PRD from the grilling output/to-issues— break PRD into issues (docs/issues/until Gitea is set up)/tdd— implement each issue using TDD/improve-codebase-architecture— architecture review after implementation- Start a new session before the next chunk
Don't skip /tdd — it's the easy one to forget.