Packaged Agent Skill
Install the aglang Codex skill so agents know when to read AGENTS.md, run aglc checks, and treat architecture verdicts as coding feedback.
Give agents a live interface to your architecture rules, so they can validate work in progress while coding and still get solver-backed enforcement before commits land.
Install the CLI and the packaged agent skill:
npm install -g @collivity/aglang
aglc install-agent-skillThen bootstrap a project:
aglc add /path/to/your/projectaglc add creates the starter architecture spec, compiled artifact, git hook, and project-specific agent manifest. Full getting-started guide →
The packaged skill gives agents generic aglang behavior; the project repo supplies its own rules through AGENTS.md, skill.json, and architecture.o.
AGENTS.md before coding.aglc check-file --arch architecture.o --file <path> --json.aglc check --arch architecture.o --project . --all --json..ag architecture specs or generated architecture artifacts.aglang is a dual-compiler system exposed as an agent workflow. Your .ag spec compiles to SMT-LIB math formulas; during coding or commit checks, a second compiler extracts what changed code actually does and feeds it to the solver:
Your .ag spec Your codebase (file or project)
│ │
▼ ▼
[aglc compile] [AST extractors — 8 languages]
│ │
▼ ▼
architecture.o FlowFact[] (what code talks to what)
(SMT constraints) │
│ │
└────────────── solver-backed check ────────┘
│
SAT → pass ✓ │ UNSAT → reject with proof ✗Agents use the same interface while code is still in progress; pre-commit hooks and CI use it as the final enforcement point. The solver is deterministic math — no LLM guesses. Full pipeline walkthrough →