@orangepro/orangepro-mcp 0.2.12 → 0.2.13
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.
- package/README.md +19 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,27 @@
|
|
|
1
|
-
# OrangePro
|
|
1
|
+
# OrangePro MCP
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@orangepro/mcp-server )
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@orangepro/mcp-server )
|
|
6
|
+
[](https://glama.ai/mcp/servers/OrangeproAI/orangepro-mcp )
|
|
2
7
|
|
|
3
8
|
**Find the behaviors your tests miss. Generate grounded tests that actually run.**
|
|
4
9
|
|
|
5
10
|
`opro` builds a knowledge graph from your local checkout, maps every behavior in your code, shows which ones are tested and which aren't, and generates integration-level tests grounded in real symbols — not hallucinated imports. It runs as a CLI and a local stdio MCP server.
|
|
6
11
|
|
|
12
|
+
Once you run the mcp server against a repo, you can get behavior-coverage/html
|
|
13
|
+
**<a href="https://orangeproai.github.io/orangepro-mcp/twenty-crm-behavior-coverage.html" target="_blank">→ Live example: Twenty CRM behavior coverage report</a>**
|
|
14
|
+
|
|
15
|
+
<img width="895" alt="OrangePro system map — entry lanes, services, evidence tiers" src="https://github.com/user-attachments/assets/1ceba779-e0ec-4ec1-99ce-001bc3589b42" />
|
|
16
|
+
|
|
17
|
+
*Fig 1: System map — entry lanes (GraphQL, HTTP, Jobs) flowing into services, sized by traffic, colored by evidence tier, red-ringed by risk.*
|
|
18
|
+
|
|
19
|
+
<img width="818" height="1284" alt="Screenshot 2026-07-30 at 4 38 35 PM" src="https://github.com/user-attachments/assets/1c41475d-be2a-4c6d-ace6-c6546573bf97" />
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
*Fig 2: Priority gaps — top 20 unproven behaviors ranked by blast radius, with generated test drafts and applicable testing categories.*
|
|
23
|
+
|
|
24
|
+
---
|
|
7
25
|
Install the target repository's dependencies first, then run OrangePro from that repository:
|
|
8
26
|
|
|
9
27
|
```bash
|
|
@@ -35,7 +53,6 @@ orangepro_generated/ ← contained generated tests; existing source file
|
|
|
35
53
|
The report opens on a **system map** of your repo — entry lanes (GraphQL/HTTP/Jobs) flowing into the services they reach, sized by traffic, colored by evidence tier, risk-ringed — identical on every run. Each completed rerun shows a **delta banner** against the previous completed run. The report discloses when bounded path enumeration prunes additional branch expansions. Every behavior gets a plain-English description; every top risk gets a deterministic context line and a state-aware next step.
|
|
36
54
|
|
|
37
55
|
Run `opro export` when you want a machine-readable evidence pack.
|
|
38
|
-
<img width="895" height="960" alt="Screenshot 2026-07-08 at 1 18 01 AM" src="https://github.com/user-attachments/assets/73b8a812-2eab-43a1-8aed-4289545e630b" />
|
|
39
56
|
|
|
40
57
|
---
|
|
41
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orangepro/orangepro-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OrangePro (`opro`) — a local-first, BYOK CLI + MCP server that builds an evidence graph from a local checkout, ingests runtime coverage, and generates grounded tests. Metadata-only exports; no source upload; generated tests stay local.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -131,4 +131,4 @@
|
|
|
131
131
|
"unplugin-swc": "^1.5.9",
|
|
132
132
|
"vitest": "^3.2.0"
|
|
133
133
|
}
|
|
134
|
-
}
|
|
134
|
+
}
|