@solrum/aim
v0.2.1
Published
AI Implementation Manager — workflow enforcement, mistake tracking, and chunked execution for any AI coding tool
Maintainers
Readme
AIM — AI Implementation Manager
AIM makes AI coding tools actually follow your project's rules. Instead of hoping Claude/Cursor/Windsurf remembers your architecture after 30 turns, AIM actively injects the right rule at the right time — and blocks edits when something's wrong.
The Problem
AI coding tools share 3 common failure modes:
- Context decay — Rules loaded at session start get compressed away after 20-30 turns. The AI "forgets" your conventions mid-task.
- No checkpoints — After approving a plan, the AI runs 50 tool calls straight. One mistake at step 5 cascades through steps 6-50.
- Same mistakes, different day — The AI makes the same architectural violation across sessions because there's no memory between them.
How AIM Fixes This
Just-in-time rules — Instead of loading everything upfront, AIM injects only the relevant rules right before each edit. Editing a migration file? You get database safety rules. Touching a domain entity? You get layer dependency rules.
Mandatory checkpoints — Large tasks get decomposed into chunks. After each chunk, AIM blocks further edits until you run build + tests. No more cascade failures.
Mistake memory — When a pattern violation is detected, AIM records it. Next time the AI touches a similar file, it sees "you've made this mistake 3 times before — here's how to avoid it."
Install
npm install -g @solrum/aim
aim installnpm install -g installs the CLI. aim install downloads aim-core to ~/.aim/core/ (git clone). Requires Node.js 18+ and git.
Quick Start
# 1. Install aim-core (one-time setup)
aim install
# 2. Initialize in your project (auto-detects stack, installs knowledge packs)
cd your-project
aim init
# That's it. AIM is now active.
# Open your AI tool and use the /aim-* commands:| Command | What it does |
|---------|-------------|
| /aim-kickstart | Bootstrap a new project — brainstorm features, design architecture, create roadmap |
| /aim-plan | Break a feature into verified chunks before coding |
| /aim-implement | Execute a plan with checkpoints and context refresh per chunk |
| /aim-review | Code review against your architecture rules |
| /aim-analyze | Post-implementation analysis — what went well, what didn't |
| /aim-index | Update the codebase map after changes |
| /aim-roadmap | View and manage the project roadmap by phase |
| /aim-todo | Track implementation progress — view, resume, add, complete tasks |
| /aim-learn | Learn and document codebase patterns, conventions, architecture |
| /aim-mistake | Record, view, or manage mistakes in the mistake database |
Supported Tools
| Tool | Mode | What you get |
|------|------|-------------|
| Claude Code | Full | Runtime hooks (active enforcement) + all 10 skills |
| Cursor | Lite | .cursorrules with baked-in conventions + skills as prompts |
| Windsurf | Lite | .windsurfrules with baked-in conventions + skills as prompts |
| Other | Generic | Skills as reference prompts in .aim/prompts/ |
# Default is claude-code. Switch with:
aim adapt cursor
aim adapt windsurfKnowledge Packs
AIM ships with 6 knowledge packs that get auto-installed based on your stack:
- PostgreSQL — Migration safety, indexing rules, connection pooling patterns
- API Design — REST conventions, error handling, versioning strategies
- Testing — Unit/integration/e2e patterns, test architecture
- Docker — Dockerfile optimization, compose patterns
- Security — Input validation, auth patterns, dependency safety
- CI/CD — GitHub Actions, deployment strategies, quality gates
Install community packs:
aim pack install @aim-community/pack-redis
aim pack listWhat Gets Created
After aim init, your project has:
your-project/
aim.json # Project config (stack, rules, workflow, phases, modelRouting)
.aim/
runtime/ # Hook scripts (auto-managed)
packs/ # Installed knowledge packs
context-index.json # Codebase architecture map (after /aim-index)
mistakes.json # Mistake database (grows over time)
violations.json # Current violations (self-heals)
metrics.json # Usage metrics
.claude/
settings.json # Claude Code hooks (auto-managed, merged into existing)
commands/aim-*.md # Skill filesFiles in .aim/runtime/ and .claude/commands/aim-* are auto-managed. Don't edit them manually — they get overwritten on aim adapt --update.
Configuration
aim.json controls AIM's behavior:
{
"stack": "typescript",
"framework": "nestjs",
"database": "postgresql",
"enrichPrompts": true,
"maxMistakeContext": 3,
"enforcement": {
"default": "nudge",
"overrides": {
"domain/|entity/": "gate"
}
},
"workflow": {
"requirePlan": "warn",
"requireVerification": true,
"buildCommand": "npm run build",
"testCommand": "npm test"
},
"phases": {
"migration": ["db/migrations/"],
"domain-model": ["domain/models/", "entities/"],
"repository-impl": ["infrastructure/persistence/repositories/"]
},
"modelRouting": {
"enabled": true,
"planningModel": "claude-opus-4-6",
"implementModel": "claude-sonnet-4-6",
"planningKeywords": ["plan", "design", "analyze", "architect"],
"implementKeywords": ["implement", "add", "fix", "build"]
},
"rules": { "useUniversal": true, "useStackRules": true },
"mistakes": {
"projectFile": ".aim/mistakes.json",
"useGlobal": true,
"autoRecord": true
},
"knowledge": {
"useStackPractices": true,
"useTechNotes": true,
"maxItemsPerChunk": 3
}
}Enforcement levels:
nudge(default) — Shows rules as suggestionsgate— AI must acknowledge rules before editingblock— Edit blocked until conditions met (e.g., plan required)
CLI Reference
AIM — AI Implementation Manager
Usage:
aim install Download aim-core to ~/.aim/core/
aim update Update aim-core to latest version
aim init [tool] Scan project, generate aim.json + .aim/ + runtime
aim init [tool] --refresh Re-scan without overwriting aim.json
aim index [--refresh] Build or refresh context index
aim mistake <add|list|stats> Manage mistake database
aim knowledge <add|list> Manage custom knowledge fragments
aim adapt <tool> Generate hooks + skills + runtime
aim adapt <tool> --update Update runtime scripts to latest version
aim adapt <tool> --remove Remove AIM hooks (keeps user hooks)
aim stats Show effectiveness metrics
aim doctor Validate setup and diagnose issues
aim pack <command> Manage community knowledge packs
Tools: claude-code, cursor, windsurf, genericRun aim or aim help to see this help text.
Troubleshooting
# Something not working?
aim doctor
# Hooks not firing in Claude Code?
aim adapt claude-code --update
# Want to start fresh?
aim adapt claude-code --remove
rm -rf .aim/
aim initLicense
MIT
