Intents
An intent is a natural-language description of what you want. a21e parses it into structured fields — primary task, success criteria, constraints, risk tolerance — then routes it through the execution pipeline.Prompt synthesis
a21e doesn’t just forward your message to a model. It compiles an optimized prompt by:- Technique selection — matching your intent to curated prompt strategies (chain-of-thought, few-shot examples, role prompting, etc.)
- Context injection — adding your workspace preferences, memory, persona directives, and repository context
- Constraint enforcement — applying org-level policies and user preferences
- Quality gating — scoring the output and capturing feedback for future improvement
Model tiers
| Tier | Behavior | Best for |
|---|---|---|
auto | a21e selects the best model based on task complexity | Most requests |
economy | Fastest, lowest cost | Simple lookups, formatting |
standard | Balanced quality and speed | Code generation, writing |
premium | Highest capability models | Complex analysis, architecture |
Deliberation
For complex decisions, a21e can run multi-model deliberation:- Multiple models each generate a plan independently
- Each model critiques the other models’ plans
- A consensus vote determines the best approach
- The winning plan is optionally executed
Credits
1 credit = 1 enhancement — one pass through the prompt synthesis and execution pipeline.- Managed mode: credits cover prompt engineering + LLM inference
- BYOK mode: credits cover prompt engineering only (you pay the LLM provider directly)
Memory
a21e maintains persistent memory across sessions:- Corrections — “I prefer snake_case, not camelCase” is remembered for future requests
- Preferences — language, framework, coding style, verbosity
- Context — project details, architecture decisions, team conventions
Workspaces
A workspace binds together:- Repository context — connect a GitHub repo for code-aware responses
- Preferences — default model tier, risk tolerance, verbosity
- Persona — custom system instructions for all responses
- StylePrint — extracted design tokens for consistent output style