Skip to content

Infrawise v0.10.0

Choose a tag to compare

@Sidd27 Sidd27 released this 08 Jun 08:39

What's new

infrawise start — one command to set everything up

Replaces the multi-step initanalyzedev + manual MCP config flow with a single command:

```bash
cd your-project
infrawise start --claude # setup + open Claude Code
infrawise start --cursor # setup + open Cursor
infrawise start --windsurf # setup + open Windsurf
infrawise start # setup only, open your editor manually
```

What it does in order:

  1. Runs interactive init if infrawise.yaml is missing
  2. Analyzes your infrastructure (or loads from cache if < 24h old)
  3. Writes .mcp.json / .cursor/mcp.json / Windsurf global config so your editor auto-connects on every future launch
  4. Launches the editor if a flag was given

After the first run, just open your editor — no infrawise command needed.

stdio transport now matches dev

infrawise stdio (the transport your editor auto-spawns via .mcp.json) now includes:

  • File watching — hot-reloads the code graph when .ts/.js files change, same as infrawise dev
  • 24h cache TTL — re-analyzes at session start only when the cache is stale

Demo scripts updated

Both demo/localstack/start.sh and demo/local/start.sh now use infrawise start --claude — seed your environment and open Claude in one step.

Fixes

  • Removed stale "Run infrawise dev" footer from infrawise analyze output