Get started with AlienMonster

AlienMonster is a strategy repository that lives next to your code. Follow the four steps below to set up your first project.

1

Create a project in AlienMonster

From your dashboard, click the + New project button. Give it a name โ€” AlienMonster creates a strategy repo for you.

2

Capture your strategy

Talk to the AlienMonster Facilitator in Claude.ai โ€” it asks structured questions and captures your thinking as strategic primitives.

To connect AlienMonster to Claude.ai:

  1. Open Claude.ai and go to Settings โ†’ Connectors
  2. Click Add custom connector
  3. Paste the MCP URL: https://alienmonster.ai/mcp
  4. Authorize via OAuth when Claude.ai prompts
  5. Start a new conversation โ€” the Facilitator is now available

Full setup details: Capturing strategy in Claude.ai โ†’

Customize

Skills
Connectors
3

Scaffold on your machine

Open your terminal. Pick the command that matches where you are:

  • Creating a fresh project from scratch
    npx alienmonster init my-project
    Init creates the directory for you โ€” don't pre-create it.
  • Already in a project directory (empty or with code)
    cd my-project && npx alienmonster init
    Drop the name argument to initialize the current directory.
$ npx alienmonster init my-project
๐Ÿ‘พ Created my-project/ with initial commit.
ย 
Next steps:
cd my-project
npx alienmonster login
npx alienmonster connect
ย 
$ cd my-project && npx alienmonster login
โœ“ Logged in as you@example.com
ย 
$ npx alienmonster connect
โœ… Claude Code: registered via `claude mcp add`
init scaffolds the project offline. login opens a browser for device-flow authentication โ€” you'll see a device code and enter it in the browser. connect registers the MCP server with Claude Code and Cursor.
4

Keep coding with context

Your coding agent now reads your strategy repo before making changes.

Claude Code.alienmonster/ loaded
Should I use Stripe or Paddle for payments?
โš™get_relevant_powersยท payments, billing

Paddle. This was already decided for your project โ€” check the strategy repo.

[.alienmonster/decisions.md ยท DEC-DEC-001]
Paddle chosen over Stripe for automatic EU VAT handling. Key constraint: ~60% of target users are in Germany and France.

I'll scaffold the Paddle integration around that constraint. Want me to start with webhook handling or checkout setup first?

Illustrative example. Your strategy will reference primitives from your own sessions.
Without AlienMonster, the agent would give you a generic comparison. With it, the agent knows the decision was already made and why.

Was this page helpful? YesNo