Project-agnostic, composable configuration system for AI-assisted development workflows.
Install with a single command:
curl -sL https://raw.githubusercontent.com/MatiasComercio/agentic-config/main/install.sh | bash
# Preview mode (no changes):
curl -sL https://raw.githubusercontent.com/MatiasComercio/agentic-config/main/install.sh | bash -s -- --dry-runThen in any project:
claude
/agentic setupA centralized configuration system for AI-assisted development tools (Claude Code, Antigravity, Codex CLI, Gemini CLI) with three core principles:
- Project-agnostic - Commands and skills work in any codebase without modification
- Composable - Commands invoke other commands, creating compounding automation
- Flexible installation - Works at repo root, subdirectory, or with external specs storage
Commands build upon each other to create powerful workflows:
/full-life-cycle-pr Complete PR from idea to submission
|
+---> /po_spec Phased orchestrator (DAG-aware parallelization)
|
+---> /o_spec E2E orchestrator (8-stage workflow)
|
+---> /spec Single stage execution
Example: /full-life-cycle-pr feat/oauth "Add OAuth2" creates a branch, decomposes the feature into phases, implements each phase through 8 stages, squashes commits, and creates a PR - all with a single confirmation.
See Commands & Skills Index for the complete catalog and detailed composition patterns.
Symlinked (instant updates):
agents/- Core workflow definitions.claude/commands/- Claude Code commands.claude/skills/- Claude Code skills.gemini/commands/- Gemini CLI integration.codex/prompts/- Codex CLI integration
Copied (project-customizable):
AGENTS.md- Project-specific guidelinesPROJECT_AGENTS.md- Project overrides (never touched by updates)
| Command | Description |
|---|---|
/agentic setup |
Setup new project |
/agentic update |
Update to latest version |
/spec STAGE path |
Execute single workflow stage |
/o_spec path |
Run full 8-stage workflow |
/full-life-cycle-pr branch "desc" |
Complete PR workflow |
See Commands & Skills Index for all 33 commands and 19 skills.
AGENTS.md- Template with standard guidelines (receives updates)PROJECT_AGENTS.md- Your customizations (never touched by updates)
Updates merge cleanly without conflicts.
| Type | Package Manager | Type Checker | Linter |
|---|---|---|---|
| typescript | pnpm | tsc | eslint |
| ts-bun | bun | tsc | eslint |
| python-poetry | poetry | pyright | ruff |
| python-uv | uv | pyright | ruff |
| rust | cargo | cargo check | clippy |
| generic | custom | custom | custom |
Project type is auto-detected or specified with --type flag.
- Commands & Skills Index - Complete catalog with composition examples
- External Specs Storage - Configure external specs repository
- Agent Management Guide - Detailed agent usage
- Playwright CLI Setup - E2E browser testing
Broken symlinks:
# In agentic-config repo
/init
# In other projects
~/.agents/agentic-config/scripts/setup-config.sh --force .Version mismatch:
~/.agents/agentic-config/scripts/update-config.sh .See Contributing Guidelines for development workflow.