infrawise 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +6 -1
  2. package/dist/index.js +1891 -553
  3. package/package.json +19 -4
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Infrawise
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/infrawise)](https://www.npmjs.com/package/infrawise)
4
+ [![Publish to npm](https://github.com/Sidd27/infrawise/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/Sidd27/infrawise/actions/workflows/npm-publish.yml)
5
+ [![CI](https://github.com/Sidd27/infrawise/actions/workflows/ci.yml/badge.svg)](https://github.com/Sidd27/infrawise/actions/workflows/ci.yml)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
7
+
3
8
  **Understand your infrastructure, not just your code.**
4
9
 
5
10
  Infrawise is a CLI tool that scans your TypeScript codebase, maps every function-to-database relationship into a graph, detects anti-patterns (full table scans, missing indexes, hot partitions, N+1 queries), and exposes all of it as an MCP server — so AI coding assistants like Claude Code have live, deterministic knowledge of your infrastructure when helping you write database code.
@@ -359,7 +364,7 @@ The analysis is entirely deterministic — no LLM is involved in extracting or a
359
364
 
360
365
  | Requirement | Version |
361
366
  |---|---|
362
- | Node.js | 22+ |
367
+ | Node.js | 24+ |
363
368
  | pnpm | 9+ |
364
369
  | AWS CLI | any (for integration testing) |
365
370