by alexeykrol
Meta-documentation framework for AI-assisted development with Claude Code
# Add to your Claude Code skills
git clone https://github.com/alexeykrol/claude-code-starterDual-agent meta-framework for structured AI-assisted development with Claude Code and Codex.
Repository name remains
claude-code-starterfor backward compatibility.
RU version: README_RU.md
.claude/SNAPSHOT.md, .claude/BACKLOG.md, .claude/ARCHITECTURE.md.Check:
node --version
python3 --version
init-project.sh to the root of your host project.No comments yet. Be the first to share your thoughts!
./init-project.sh
Installer now asks for project profile:
software — for application/service/source-code projects.content — for course/book/article/research/script projects.Each profile gets its own memory layout and generation logic.
codexclaudestart/fistart runs cold start protocol:
Context files are resolved by profile:
.claude/SNAPSHOT.md, .claude/BACKLOG.md, .claude/ARCHITECTURE.md.claude/content/SNAPSHOT.md, .claude/content/BACKLOG.md, .claude/content/ARCHITECTURE.md/fi runs completion protocol:
claude-code-starter/
├── CLAUDE.md # Claude adapter entry
├── AGENTS.md # Codex adapter entry
├── init-project.sh # Installer for host projects
├── CHANGELOG.md
├── README.md
├── README_RU.md
├── .claude/
│ ├── commands/ # Claude workflows/prompts
│ ├── protocols/ # Silent protocol specs
│ ├── scripts/quick-update.sh # Claude updater entry
│ └── templates/ # State/config templates
├── .codex/
│ ├── commands/ # Executable Codex workflows
│ │ └── quick-update.sh # Codex updater entry
│ └── contracts/
├── src/framework-core...