Apo
Description
**A proof of concept for intent-driven communication with LLMs.**
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Apo
**A proof of concept for intent-driven communication with LLMs.**
Agentic coding involves communicating with an LLM in natural language, leading to conversational drift. Increasingly, this drift also involves turning agency in ideation and decisionmaking over to the coding agents.
Apo explores a simple idea: what if you structured your intent *before* the agent started working in the codebase? Drawing from speech act theory, apo uses six "intention primitives" (WANT, DON'T, LIKE, FOR, ENSURE, TRUST) that capture the dimensions people need to specify so an LLM can capture their intent.
**This is a prototyping tool, not a production workflow system.** The apo tool here is currently a proof of concept, designed for solo developers and quick builds — the kind of work where you're talking to Claude Code and want to get something right on the first pass. It's not (yet) built for engineering teams, CI/CD pipelines, or enterprise workflows. The contribution is the framework (the six primitives and how they interact).
Before / After
**Without structured intent**, a typical prompt:
"Build me an expense tracker with categories"
The agent fills in the blanks with its own preferences. It picks a database, an auth system, an API shape. You get something that works, but the agent made the design decisions, not you.
**With Apo**, you think through the full picture first:
## WANT
- CRUD operations for expenses
- Summary with totals by category
## DON'T
- No external database
- No authentication system
## LIKE
- Stripe's API design
## FOR
- Personal finance prototype
- Single user, runs locally
## ENSURE
- Negative amounts throw an error
- Categories are case-insensitive
## TRUST
- [autonomous] Choose the data structure
- [ask] Modifying the public API signature
Now you've made the decisions, not the agent. Scope, boundaries, context, acceptance criteria, and delegation rules are all explicit before a single line of code gets written.
G
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11