Integrate
AlienMonster gives your coding agent strategic context. Your agent reads your strategy repo before making non-trivial changes and takes recorded decisions and assumptions into account.
What lives on disk
Running npx alienmonster init writes a .alienmonster/ directory to your repo, plus five agent config files at the repo root. The directory starts nearly empty โ your first strategy session is what fills it.
export, sync, and watch copy your strategy from the AlienMonster server down to .alienmonster/ so that agents reading local files can access it.
Read more in The .alienmonster/ directory.
How agents know to use it
Five agent config files at your repo root tell coding agents where the strategy lives and when to consult it:
CLAUDE.md,AGENTS.md, and.cursorrulesโ each contains a managed section with strategy context and instructions..claude/settings.jsonโ adds a PreToolUse hook that runsalienmonster statusbefore each tool call..cursor/rules/alienmonster.mdcโ Cursor's rule file.
Read more in Agent config files.
Supported agents
| Agent | Support | Setup |
|---|---|---|
| Claude Code | Full โ MCP tools + file-based context | npx alienmonster connect |
| Cursor | Full โ MCP tools + file-based context | npx alienmonster connect |
| Claude.ai | Limited โ the browser cannot read local files, but MCP queries work. | Settings โ Connectors in Claude.ai |
Sync model
Your strategy lives authoritatively on the AlienMonster server. The .alienmonster/ directory on disk is a cache that mirrors it. status shows whether your cache is current. sync refreshes it if it is not. watch keeps it live via server-sent events.
Read more in Sync model.