codecartographer-pi 0.12.0 → 0.12.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 (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  [![npm version](https://img.shields.io/npm/v/codecartographer-pi.svg)](https://www.npmjs.com/package/codecartographer-pi)
10
10
  [![Node](https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg)](package.json)
11
11
 
12
- > **A structured pipeline for reverse-engineering unfamiliar codebases with an LLM.** Drop it into any repo, point an LLM at the guide, and walk away with a layered analysis: architecture map, behavioral contracts, protocol documentation, defect report, porting bundle, and a language-agnostic reimplementation spec. Every finding is evidence-tagged. Every phase output is validated before the next one starts.
12
+ > **Evidence-backed software cartography for coding agents.** Turn an unfamiliar repository into validated architecture, contracts, defects, and a reimplementation specification—then combine explicitly confirmed specifications with a product vision to produce a provenance-backed implementation plan.
13
13
 
14
14
  ```text
15
15
  ● CodeCartographer
@@ -34,7 +34,7 @@
34
34
  | **Opt-in LLM steering** of the next phase's seed prompt | `/codecarto-next --llm-steer` |
35
35
  | **Forward synthesis** — vision + confirmed library specs → provenance-backed project plan | `pipeline-synthesis.yaml` |
36
36
 
37
- > **Forward-flow synthesis is available on the development branch.** Publish completed reimplementation specs from Pi or MCP, then run the `synthesis` pipeline to turn a product vision and explicitly confirmed library entries into a conflict-aware `project-plan.md` with a decision-level provenance ledger.
37
+ Publish completed reimplementation specs from Pi or MCP, then run the `synthesis` pipeline to turn a product vision and explicitly confirmed library entries into a conflict-aware `project-plan.md` with a decision-level provenance ledger.
38
38
 
39
39
  OpenAI Build Week reviewers: see the [new-vs-existing scope and one-command demo](docs/build-week-2026.md).
40
40
 
@@ -42,7 +42,7 @@ OpenAI Build Week reviewers: see the [new-vs-existing scope and one-command demo
42
42
 
43
43
  ## Install
44
44
 
45
- Three surfaces, in recommended order. All three share the same `core/` and produce byte-identical phase prompts but the user experience differs by surface, and new features (live widget, dashboard, auto-runner, the upcoming library + synthesis workflows) land on Pi first, MCP second, drop-in last.
45
+ Three surfaces, in recommended order. All three share the same `core/` and produce byte-identical phase prompts. Pi provides the richest orchestration UX; Pi and MCP both support the executable library and synthesis workflows; drop-in mode provides the analysis framework without those runtime operations.
46
46
 
47
47
  1. **Pi extension** — recommended for interactive use. First-class UX.
48
48
  2. **MCP server** — for Claude Code, Codex, opencode, Cursor, Claude Desktop, and any other MCP-capable agent.
@@ -86,6 +86,8 @@ Add to your host config (`~/.config/claude-code/config.json`, `claude_desktop_co
86
86
  }
87
87
  ```
88
88
 
89
+ Official MCP Registry server name: `io.github.HuginnIndustries/codecartographer`.
90
+
89
91
  ### Drop-in template (one-off / evaluation)
90
92
 
91
93
  Use this to try CodeCartographer in any repo without installing anything, or in environments where neither Pi nor an MCP-capable agent is available. Works with any LLM that can read and write files.
package/package.json CHANGED
@@ -1,14 +1,19 @@
1
1
  {
2
2
  "name": "codecartographer-pi",
3
- "version": "0.12.0",
4
- "description": "CodeCartographer packaged for Pi as an extension-driven workflow wrapper.",
3
+ "version": "0.12.2",
4
+ "mcpName": "io.github.HuginnIndustries/codecartographer",
5
+ "description": "Evidence-backed reverse engineering and human-gated software planning for Pi and MCP coding agents.",
5
6
  "type": "module",
6
7
  "keywords": [
7
8
  "pi-package",
8
9
  "pi",
9
10
  "codecartographer",
10
11
  "reverse-engineering",
11
- "llm"
12
+ "llm",
13
+ "mcp",
14
+ "software-planning",
15
+ "code-analysis",
16
+ "synthesis"
12
17
  ],
13
18
  "license": "MIT",
14
19
  "author": "James Sesler",