README
ΒΆ
π§ Codify
Context. Specs. Skills. Workflows. Everything your AI agent needs before writing the first line of code. ποΈ
Because an agent without context is an intern with root access.
[English] | EspaΓ±ol
Quick Start Β· Context Β· Specs Β· Skills Β· Workflows Β· MCP Server Β· Language Guides Β· Architecture
π― The Problem
You tell your agent: "Build a payments API in Go with microservices"
And the agent, with all its capability, improvises:
- Folder structures nobody asked for
- Patterns that contradict your architecture
- Decisions you'll revert in the next session
- Zero continuity between sessions
It's not the agent's fault. It starts from scratch. Every. Single. Time. π
π‘ The Solution
Codify equips your AI agent with four things it needs to stop improvising:
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
β Context β β Specs β β Skills β β Workflows β
β β β β β β β β
β What the β β What to β β How to β β Multi-step β
β project is ββββββΆβ build next β β do things β β recipes β
β β β β β right β β on demand β
β generate β β spec β β skills β β workflows β
β analyze β β --with-specsβ β β β β
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
Memory Plan Abilities Orchestration
- Context gives the agent architectural memory β stack, patterns, conventions, domain knowledge
- Specs give the agent an implementation plan β features, acceptance criteria, task breakdowns
- Skills give the agent reusable abilities β how to commit, version, design entities, review code
- Workflows give the agent orchestration recipes β multi-step processes like feature development, bug fixing, releases
It follows the AGENTS.md standard β an open specification backed by the Linux Foundation for providing AI agents with project context. Files work out of the box with Claude Code, Cursor, Codex, and any agent that reads the standard.
β¨ Before and after
π± Without Codify
You: "Create a payments API in Go"
Agent: *creates main.go with everything in one file*
You: "No, use Clean Architecture"
Agent: *creates structure but mixes domain with infra*
You: "Repositories go in infrastructure"
Agent: *refactors for the third time*
You: "What about the BDD tests I asked for yesterday?"
Agent: "BDD tests? This is the first time you've mentioned that"
You: "At least commit this properly"
Agent: *writes "update code" as commit message*
Result: 45 minutes correcting the agent π€
π With Codify
You: "Create a payments API in Go"
Agent: *reads AGENTS.md, CONTEXT.md, DEVELOPMENT_GUIDE.md*
Agent: "I see you use DDD with Clean Architecture, PostgreSQL,
BDD testing with Godog, and idiomatic Go patterns.
I'll create the payments endpoint in internal/domain/payment/
following your patterns and concurrency conventions."
Agent: *reads SKILL.md for conventional commits*
Agent: "Done. Here's the commit following Conventional Commits:
feat(payment): add payment domain entity with Stripe integration"
Result: Coherent code from the first line β¨
β‘ Quick Start
Installation
# Homebrew (macOS/Linux β no Go required)
brew tap jorelcb/tap
brew install codify
# Or via go install
go install github.com/jorelcb/codify/cmd/codify@latest
# Or download pre-built binaries from GitHub Releases
# https://github.com/jorelcb/codify/releases
Four ways to equip your agent
Every command supports interactive mode β run without flags and menus guide you through all options. Or pass flags explicitly for CI/scripting.
# 1. Set your API key (Claude or Gemini)
export ANTHROPIC_API_KEY="sk-ant-..." # for Claude (default)
# or
export GEMINI_API_KEY="AI..." # for Gemini
# ββ Context: give your agent project memory ββ
codify generate
# Interactive menus for: name, description, preset, language, model, locale, output, specs
# Or pass all flags explicitly (zero prompts):
codify generate payment-service \
--description "Payment microservice in Go with gRPC, PostgreSQL and Kafka" \
--language go
# ββ Specs: give your agent an implementation plan ββ
codify spec payment-service \
--from-context ./output/payment-service/
# ββ Skills: give your agent reusable abilities ββ
codify skills
# Interactive menus for: category, preset, mode, target, install location
# No API key needed for static mode.
# ββ Workflows: give your agent orchestration recipes ββ
codify workflows
# Interactive menus for: preset, target, mode, locale, install location
# Supports Claude Code (SKILL.md) and Antigravity (native .md) targets.
What you'll see
π Generating context for: payment-service
Model: claude-sonnet-4-6
Preset: default
Language: go
[1/5] Generating AGENTS.md... β
[2/5] Generating CONTEXT.md... β
[3/5] Generating INTERACTIONS_LOG.md... β
[4/5] Generating DEVELOPMENT_GUIDE.md... β
[5/5] Generating IDIOMS.md... β
π Output: output/payment-service/
βββ AGENTS.md β Root file (tech stack, commands, conventions)
βββ context/
βββ CONTEXT.md β Architecture and technical design
βββ INTERACTIONS_LOG.md β Session log and ADRs
βββ DEVELOPMENT_GUIDE.md β Work methodology, testing, security
βββ IDIOMS.md β Language-specific patterns (Go)
β
Done! 5 files generated
Total tokens: ~18,200
π Context Generation
The foundation. Generates files following the AGENTS.md standard that give your agent deep project memory.
generate command β Context from a description
codify generate payment-service \
--description "Payment microservice in Go with gRPC and PostgreSQL" \
--language go
analyze command β Context from an existing project
Scans an existing codebase β auto-detects language, framework, dependencies, directory structure, README, infrastructure signals (Docker, CI/CD, Makefile) β and generates context files from what it finds.
codify analyze /path/to/my-project
Generated files
| File | What it does |
|---|---|
AGENTS.md |
Root file: tech stack, commands, conventions, structure |
CONTEXT.md |
Architecture, components, data flow, design decisions |
INTERACTIONS_LOG.md |
Session log and ADRs |
DEVELOPMENT_GUIDE.md |
Work methodology, testing practices, security, delivery expectations |
IDIOMS.md |
Language-specific concurrency, error handling, conventions (requires --language) |
Place these files at your project root. Compatible agents (Claude Code, Cursor, Codex, etc.) read them automatically.
Options
codify generate [project-name] [flags]
All flags are optional in a terminal β interactive menus prompt for missing values.
| Flag | Short | Description | Default |
|---|---|---|---|
--description |
-d |
Project description (required unless --from-file) |
(interactive) |
--from-file |
-f |
Read description from file (alternative to -d) |
β |
--preset |
-p |
Template preset (default, neutral) |
(interactive) |
--model |
-m |
LLM model (claude-* or gemini-*) |
auto-detected |
--language |
-l |
Language (activates idiomatic guides) | β |
--locale |
Output language (en, es) |
en |
|
--with-specs |
Also generate SDD specs after context | false |
|
--type |
-t |
Project type hint (api, cli, lib...) | β |
--architecture |
-a |
Architecture hint | β |
π Spec-Driven Development
From existing context, generates implementation-ready specifications. This enables AI Spec-Driven Development (AI SDD): your agent implements a spec, not an improvisation.
Your idea β generate (context) β spec (specifications) β Agent writes code with full context
spec command
codify spec payment-service \
--from-context ./output/payment-service/
--with-specs β Full pipeline in one command
Available on both generate and analyze. Chains context generation + spec generation + AGENTS.md update in a single run:
codify generate my-api \
--description "REST API in Go with PostgreSQL" \
--language go \
--with-specs
Generated spec files
| File | What it does |
|---|---|
CONSTITUTION.md |
Project DNA: stack, principles, constraints |
SPEC.md |
Feature specs with acceptance criteria |
PLAN.md |
Technical design and architecture decisions |
TASKS.md |
Task breakdown with dependencies and priority |
π§© Agent Skills
Skills are reusable Agent Skills (SKILL.md files) that teach your agent how to perform specific tasks β following Conventional Commits, applying DDD patterns, doing code reviews, versioning releases. They complement context files: context tells the agent what your project is, skills tell it how to do things right.
Two modes
| Mode | What it does | API key | Cost | Speed |
|---|---|---|---|---|
| Static | Delivers pre-built skills from the embedded catalog. Production-ready, ecosystem-aware frontmatter. | Not needed | Free | Instant |
| Personalized | LLM adapts skills to your project β examples use your domain, language, and stack. | Required | ~pennies | ~10s |
Interactive mode
Just run codify skills β the interactive menu guides you through every choice:
codify skills
# β Select category (architecture, testing, conventions)
# β Select preset (clean, neutral, conventional-commit, ...)
# β Select mode (static or personalized)
# β Select target ecosystem (claude, codex, antigravity)
# β Select install location (global, project, or custom)
# β Select locale
# β If personalized: describe your project, choose model
CLI mode
# Static: instant delivery, no API key
codify skills --category conventions --preset all --mode static
# Install globally β skills available from any project
codify skills --category conventions --preset all --mode static --install global
# Install to current project β shareable via git
codify skills --category architecture --preset clean --mode static --install project
# Personalized: LLM-adapted to your project
codify skills --category architecture --preset clean --mode personalized \
--context "Go microservice with DDD, Godog BDD, PostgreSQL"
# Architecture skills for Codex ecosystem
codify skills --category architecture --preset neutral --target codex
Install scopes
| Scope | Path (Claude) | Path (Codex) | Use case |
|---|---|---|---|
global |
~/.claude/skills/ |
~/.codex/skills/ |
Available from any project |
project |
./.claude/skills/ |
./.agents/skills/ |
Committed to git, shared with team |
Skill catalog
| Category | Preset | Skills |
|---|---|---|
architecture |
clean |
DDD entity, Clean Architecture layer, BDD scenario, CQRS command, Hexagonal port |
architecture |
neutral |
Code review, test strategy, safe refactoring, API design |
testing |
foundational |
Test Desiderata β Kent Beck's 12 properties of good tests |
testing |
tdd |
Test-Driven Development β Red-Green-Refactor (includes foundational) |
testing |
bdd |
Behavior-Driven Development β Given/When/Then (includes foundational) |
conventions |
conventional-commit |
Conventional Commits |
conventions |
semantic-versioning |
Semantic Versioning |
conventions |
all |
All convention skills combined |
Target ecosystems
Each ecosystem gets specific YAML frontmatter and output paths:
| Target | Frontmatter | Output path |
|---|---|---|
claude (default) |
name, description, user-invocable: true |
.claude/skills/ |
codex |
name, description |
.agents/skills/ |
antigravity |
name, description, triggers |
.agents/skills/ |
Options
codify skills [flags]
| Flag | Description | Default |
|---|---|---|
--category |
Skill category (architecture, testing, conventions) |
(interactive) |
--preset |
Preset within category | (interactive) |
--mode |
Generation mode: static or personalized |
(interactive) |
--install |
Install scope: global (agent path) or project (current dir) |
(interactive) |
--context |
Project description for personalized mode | β |
--target |
Target ecosystem (claude, codex, antigravity) |
claude |
--model -m |
LLM model (personalized mode only) | auto-detected |
--locale |
Output language (en, es) |
en |
--output -o |
Output directory (overrides --install) |
ecosystem-specific |
π Workflows
Workflows are multi-step orchestration recipes that AI agents execute on demand. Unlike skills (which teach how to do a specific task), workflows orchestrate sequences of tasks β from branch creation to PR merge, from bug report to fix deployment.
Codify generates workflows for two ecosystems:
| Target | Output format | Output path | Invocation |
|---|---|---|---|
| Claude Code | SKILL.md with prose instructions | .claude/skills/{workflow}/SKILL.md |
/workflow-name |
| Antigravity | Native .md with execution annotations (// turbo, // capture, etc.) |
.agent/workflows/{workflow}.md |
/workflow-name |
Two modes
| Mode | What it does | API key | Cost | Speed |
|---|---|---|---|---|
| Static | Delivers pre-built workflows from the embedded catalog. Ecosystem-aware frontmatter. | Not needed | Free | Instant |
| Personalized | LLM adapts workflows to your project β steps reference your tools, CI/CD, and deployment targets. | Required | ~pennies | ~10s |
Interactive mode
codify workflows
# β Select preset (feature-development, bug-fix, release-cycle, all)
# β Select target ecosystem (claude, antigravity)
# β Select mode (static or personalized)
# β Select locale
# β Select install location (global, project, or custom)
# β If personalized: describe your project, choose model
CLI mode
# Claude Code: generate workflow skills
codify workflows --preset all --target claude --mode static
# Claude Code: install globally
codify workflows --preset all --target claude --mode static --install global
# Claude Code: install to current project
codify workflows --preset feature-development --target claude --mode static --install project
# Antigravity: generate native workflow files
codify workflows --preset all --target antigravity --mode static
# Antigravity: install globally
codify workflows --preset all --target antigravity --mode static --install global
# Personalized: LLM-adapted to your project
codify workflows --preset all --target claude --mode personalized \
--context "Go microservice with CI/CD via GitHub Actions"
Target ecosystems
| Target | Frontmatter | File structure | Key difference |
|---|---|---|---|
claude |
name, description, user-invocable: true |
{workflow}/SKILL.md (subdirectory) |
Prose instructions β no execution annotations |
antigravity (default) |
description (max 250 chars) |
{workflow}.md (flat file) |
Native annotations: // turbo, // capture, // if, // parallel |
Install scopes
| Scope | Claude path | Antigravity path |
|---|---|---|
global |
~/.claude/skills/ |
~/.gemini/antigravity/global_workflows/ |
project |
.claude/skills/ |
.agent/workflows/ |
Workflow catalog
| Preset | Workflow | Description |
|---|---|---|
feature-development |
Feature Development | Branch β implement β test β PR β review lifecycle |
bug-fix |
Bug Fix | Reproduce β diagnose β fix β test β PR |
release-cycle |
Release Cycle | Version bump β changelog β tag β deploy |
all |
All workflows | All workflow presets combined |
Skills vs Workflows
| Skills | Workflows | |
|---|---|---|
| Purpose | Teach how to do a specific task | Orchestrate a sequence of tasks |
| Scope | Single concern (e.g., "write a commit") | End-to-end process (e.g., "develop a feature") |
| Invocation | Agent reads when relevant | User invokes via /command |
| Examples | Conventional Commits, DDD entity, code review | Feature development, bug fix, release cycle |
Options
codify workflows [flags]
| Flag | Description | Default |
|---|---|---|
--preset -p |
Workflow preset | (interactive) |
--target |
Target ecosystem: claude or antigravity |
antigravity |
--mode |
Generation mode: static or personalized |
(interactive) |
--install |
Install scope: global or project |
(interactive) |
--context |
Project description for personalized mode | β |
--model -m |
LLM model (personalized mode only) | auto-detected |
--locale |
Output language (en, es) |
en |
--output -o |
Output directory (overrides --install) |
target-specific |
π MCP Server
Use Codify as an MCP server β your AI coding agent calls the tools directly, no manual CLI needed.
Install
go install github.com/jorelcb/codify/cmd/codify@latest
Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"codify": {
"command": "codify",
"args": ["serve"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-...",
"GEMINI_API_KEY": "AI..."
}
}
}
}
Codex CLI
# Register the MCP server
codex mcp add codify -- codify serve
Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"codify": {
"command": "codify",
"args": ["serve"],
"env": {
"GEMINI_API_KEY": "AI..."
}
}
}
}
Set the API key(s) for the provider(s) you want to use. The provider is auto-detected from the
modelparameter. If the binary is not in your PATH, use the full path (e.g.,/Users/you/go/bin/codify).
Available MCP Tools
Generative tools (require LLM API key)
| Tool | Description |
|---|---|
generate_context |
Generate context files from a project description |
generate_specs |
Generate SDD specs from existing context files |
analyze_project |
Scan an existing project and generate context from its structure |
generate_skills |
Generate Agent Skills β supports static (instant) and personalized (LLM-adapted) modes |
generate_workflows |
Generate workflow files for Claude Code (SKILL.md) or Antigravity (native .md) β supports static and personalized modes |
All generative tools support locale (en/es) and model parameters. generate_context and analyze_project also accept with_specs. generate_skills accepts mode, category, preset, target, and project_context. generate_workflows accepts mode, preset, target (claude/antigravity), and project_context.
Knowledge tools (no API key needed)
| Tool | Description |
|---|---|
commit_guidance |
Conventional Commits spec and behavioral context for generating proper commit messages |
version_guidance |
Semantic Versioning spec and behavioral context for determining version bumps |
Knowledge tools inject behavioral context into the calling agent β the agent receives the spec and instructions, then applies them to the current task. Supports locale (en/es).
Example prompts
"Generate context for a payment microservice in Go with gRPC and PostgreSQL"
β Agent calls generate_context
"Analyze my project at /path/to/my-app and generate specs"
β Agent calls analyze_project with with_specs=true
"Generate convention skills for my project"
β Agent calls generate_skills with mode=static, category=conventions, preset=all
"Create DDD skills adapted to my Go project with Clean Architecture"
β Agent calls generate_skills with mode=personalized, project_context="Go with DDD..."
"Generate feature-development workflow for Claude Code"
β Agent calls generate_workflows with target=claude, preset=feature-development, mode=static
"Generate all workflows adapted to my Go project with GitHub Actions"
β Agent calls generate_workflows with target=claude, mode=personalized, preset=all, project_context="Go with GitHub Actions"
"Help me commit these changes following conventional commits"
β Agent calls commit_guidance, receives the spec, crafts the message
"What version should I release based on recent changes?"
β Agent calls version_guidance, receives semver rules, analyzes commits
π Language-Specific Guides
When you pass --language, the tool generates an additional IDIOMS.md file with patterns and conventions specific to that language. This is one of the most impactful features β it gives your agent deep knowledge of idiomatic patterns instead of generic advice.
| Language | What IDIOMS.md covers |
|---|---|
go |
Goroutines, channels, WaitGroups, context.Context, error wrapping with %w, table-driven tests |
javascript |
async/await, Promise.all, AbortController, worker threads, TypeScript, ESM, Jest patterns |
python |
asyncio, multiprocessing, type hints, pydantic, pytest fixtures, ruff |
# Go project with idiomatic guides
codify generate my-api -d "REST API in Go" --language go
# TypeScript SDK with JS idioms
codify generate my-sdk -d "SDK in TypeScript" --language javascript
# Python service with async patterns
codify generate my-service -d "FastAPI service" --language python
Without --language, the tool generates 4 files. With it, you get 5 β and significantly richer output.
π Presets
Choose the philosophy for your contexts:
--preset default (default)
Recommended: DDD + Clean Architecture + BDD. Includes:
- Strict layer separation (Domain β Application β Infrastructure β Interfaces)
- BDD testing with coverage targets (80% domain, 70% application)
- OpenTelemetry observability
- Mandatory dependency injection
- MUST/MUST NOT constraints
- Development methodology and self-validation checklist
codify generate my-api \
--description "Inventory management REST API in Go"
# Uses default preset automatically
--preset neutral
No architectural stance. Lets the LLM adapt the structure to the project:
codify generate my-api \
--description "Inventory management REST API in Go" \
--preset neutral
--from-file β Rich descriptions from files
For detailed project descriptions (design docs, RFCs, 6-pagers), use --from-file instead of --description:
codify generate my-api \
--from-file ./docs/project-description.md \
--language go
The file content becomes the project description. Supports any text format β markdown, plain text, etc. Mutually exclusive with --description.
ποΈ Architecture
Built in Go with what it preaches β DDD/Clean Architecture:
internal/
βββ domain/ π Pure business logic
β βββ project/ Project entity (aggregate root)
β βββ catalog/ Declarative skill + workflow catalogs and metadata registries
β βββ shared/ Value objects, domain errors
β βββ service/ Interfaces: LLMProvider, FileWriter, TemplateLoader
β
βββ application/ π Use cases (CQRS)
β βββ command/ GenerateContext, GenerateSpec, GenerateSkills, GenerateWorkflows
β βββ query/ ListProjects
β
βββ infrastructure/ π§ Implementations
β βββ llm/ LLM providers (Claude, Gemini) + prompt builder
β βββ template/ Template loader (locale + preset + language-aware)
β βββ scanner/ Project scanner (language, deps, framework detection)
β βββ filesystem/ File writer, directory manager, context reader
β
βββ interfaces/ π― Entry points
βββ cli/commands/ generate, analyze, spec, skills, workflows, serve, list
βββ mcp/ MCP server (stdio + HTTP transport, 7 tools)
Template system
templates/
βββ en/ English locale
β βββ default/ Recommended preset (DDD/Clean Architecture)
β β βββ agents.template
β β βββ context.template
β β βββ interactions.template
β β βββ development_guide.template
β βββ neutral/ Generic preset (no architectural opinions)
β β βββ (same files)
β βββ spec/ Specification templates (AI SDD)
β β βββ constitution.template
β β βββ spec.template
β β βββ plan.template
β β βββ tasks.template
β βββ skills/ Agent Skills templates (static + LLM guides)
β β βββ default/ Architecture: Clean (DDD, BDD, CQRS, Hexagonal)
β β βββ neutral/ Architecture: Neutral (review, testing, API)
β β βββ testing/ Testing: Foundational, TDD, BDD
β β βββ conventions/ Conventions (conventional commits, semver)
β βββ workflows/ Antigravity workflow templates
β β βββ feature_development.template
β β βββ bug_fix.template
β β βββ release_cycle.template
β βββ languages/ Language-specific idiomatic guides
β βββ go/idioms.template
β βββ javascript/idioms.template
β βββ python/idioms.template
βββ es/ Spanish locale (same structure)
The golden rule: Infrastructure β Application β Domain. Nothing in domain depends on anything external.
See context/CONTEXT.md for full architectural details.
π§ͺ Tests
# All tests
go test ./...
# BDD with Godog
go test ./tests/...
π Project status
v1.14.0 π
β Working:
- Multi-provider LLM support (Anthropic Claude + Google Gemini)
- Context generation with streaming (
generate,analyze) - SDD spec generation from existing context (
spec,--with-specs) - Agent Skills with dual mode (static/personalized), interactive guided selection, and declarative catalog
- Skills install β
--install globalor--install projectfor direct agent path installation - Skill categories (architecture, testing, conventions) with ecosystem-aware frontmatter (Claude, Codex, Antigravity)
- Workflows β multi-step orchestration recipes for Claude Code (SKILL.md) and Antigravity (native annotations)
- Workflow presets β feature-development, bug-fix, release-cycle (static + personalized modes, multi-target)
- Unified interactive UX β all commands prompt for missing parameters when run in a terminal
- MCP Server mode (stdio + HTTP transport) with 7 tools
- MCP knowledge tools (commit_guidance, version_guidance) β no API key needed
- Preset system (default: DDD/Clean, neutral: generic)
- AGENTS.md standard as root file
- Language-specific idiomatic guides (Go, JavaScript, Python)
- Anti-hallucination grounding rules in prompts
- CLI with Cobra + interactive menus (charmbracelet/huh)
- Homebrew formula distribution (macOS/Linux)
π§ Coming next:
- Claude Code composite evolution β hooks.json for deterministic validation + agents/*.md for subagent definitions
- End-to-end integration tests
- Retries and rate limit handling
- MCP server authentication (OAuth/BYOK for remote deployments)
π‘ FAQ
Which LLM providers are supported?
Anthropic Claude (default) and Google Gemini. Set ANTHROPIC_API_KEY for Claude or GEMINI_API_KEY for Gemini. The provider is auto-detected from the --model flag: claude-* models use Anthropic, gemini-* models use Google.
How much does each generation cost?
4-5 API calls for generate (depending on --language), 4 for spec. Skills in static mode are free (no API calls). Personalized skills use 1 API call per skill. Each generation costs pennies with either provider.
Do I need an API key for skills? Only for personalized mode. Static mode delivers pre-built skills instantly from the embedded catalog β no LLM, no API key, no cost.
What's the difference between static and personalized skills? Static skills are production-ready, generic best practices delivered instantly. Personalized skills use an LLM to adapt examples, naming, and patterns to your specific project context (language, domain, stack).
Are the templates fixed? They're structural guides, not renderable output. The LLM generates intelligent, project-specific content following the template structure.
Can I customize the templates?
You can create your own presets in templates/<locale>/. Each preset needs 4 files: agents.template, context.template, interactions.template, and development_guide.template. Language-specific templates go in templates/<locale>/languages/<lang>/idioms.template.
Which agents support the generated files? Any agent compatible with the AGENTS.md standard: Claude Code, Cursor, GitHub Copilot Workspace, Codex, and more.
What's the difference between Skills and Workflows?
Skills teach your agent how to do a single task (e.g., write a commit message, design a DDD entity). Workflows orchestrate a sequence of tasks into an end-to-end process (e.g., the full feature development lifecycle from branch to PR merge). Skills are passive (read when relevant), workflows are active (invoked via /command).
Do I need an API key for workflows? Only for personalized mode. Static mode delivers pre-built workflows instantly β no LLM, no API key, no cost.
Which ecosystems support workflows?
Claude Code (--target claude) and Antigravity (--target antigravity). Claude workflows produce SKILL.md files with prose instructions. Antigravity workflows produce native .md files with execution annotations (// turbo, // capture, etc.).
What's AI Spec-Driven Development?
A methodology where you generate context and specifications before writing code. Your agent implements a spec, not an improvisation. generate creates the blueprint, spec creates the implementation plan.
π Documentation
- π AGENTS.md β Project context for AI agents
- ποΈ Architecture β DDD/Clean Architecture details
- π Changelog β Change history
- π Specs β Technical specifications (SDD)
π License
Apache License 2.0 β see LICENSE.
Context. Specs. Skills. Workflows. Your agent, fully equipped. π§
"An agent without context is an intern with root access"
β If this helped you, give it a star β it keeps us building
Documentation
ΒΆ
Directories
ΒΆ
| Path | Synopsis |
|---|---|
|
cmd
|
|
|
codify
command
|
|
|
internal
|
|
|
domain/catalog
Package catalog define el registro declarativo de categorΓas y opciones de skills.
|
Package catalog define el registro declarativo de categorΓas y opciones de skills. |
|
tests
|
|