neat.is 0.2.5

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 (2) hide show
  1. package/README.md +36 -0
  2. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # neat.is
2
+
3
+ NEAT keeps a live semantic graph of a software system — code, infrastructure, runtime — and exposes it to AI agents over MCP.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g neat.is
9
+ ```
10
+
11
+ That gives you three binaries:
12
+
13
+ - `neat` — CLI (init, watch, list, skill, etc.)
14
+ - `neatd` — daemon (start, stop, status, reload)
15
+ - `neat-mcp` — MCP stdio server for Claude Code and other agents
16
+
17
+ ## Quick start
18
+
19
+ ```bash
20
+ neat init /path/to/your/repo --project myrepo
21
+ neatd start
22
+ ```
23
+
24
+ Snapshot lands at `<repo>/neat-out/myrepo.json`. The daemon watches for file changes and OTel traces and keeps the graph live.
25
+
26
+ ## What's in the box
27
+
28
+ `neat.is` is an umbrella that pulls in:
29
+
30
+ - [`@neat.is/core`](https://www.npmjs.com/package/@neat.is/core) — graph engine, extractors, REST + OTel ingest
31
+ - [`@neat.is/mcp`](https://www.npmjs.com/package/@neat.is/mcp) — MCP server exposing graph queries to agents
32
+ - [`@neat.is/claude-skill`](https://www.npmjs.com/package/@neat.is/claude-skill) — drop-in Claude Code skill
33
+
34
+ ## License
35
+
36
+ BUSL-1.1. See [neat.is](https://neat.is) for details.
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "neat.is",
3
+ "version": "0.2.5",
4
+ "description": "NEAT — live semantic graph of a software system, queryable from AI agents over MCP. Install once, get the neat / neatd / neat-mcp CLIs.",
5
+ "license": "BUSL-1.1",
6
+ "homepage": "https://neat.is",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/NEAT-Technologies/Neat.git",
10
+ "directory": "packages/neat.is"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "files": ["README.md"],
16
+ "dependencies": {
17
+ "@neat.is/core": "^0.2.5",
18
+ "@neat.is/mcp": "^0.2.5",
19
+ "@neat.is/claude-skill": "^0.2.5"
20
+ }
21
+ }