Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,20 @@ Add to your project's `.mcp.json`:

Restart Claude Code. The tools activate automatically.

### Optional: Initialize project config

After adding the MCP server (any option), run the setup wizard in your project directory to create a `.preflight/` config:

```bash
# Interactive wizard — sets up .mcp.json and .preflight/ config
npx preflight-dev

# Or manually copy the example configs:
cp -r node_modules/preflight-dev/examples/.preflight .preflight
```

The `.preflight/` directory is optional — preflight works with sensible defaults out of the box. But if you want to customize triage rules, add related projects for cross-service awareness, or tune thresholds, this is where you do it. Commit it to your repo so the whole team shares the same config.

### Option C: npm (global)

```bash
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"src/",
"bin/",
"dist/",
"examples/",
"README.md",
"LICENSE"
],
Expand Down
Loading