pi-context-map 0.1.2 → 0.1.4

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/CHANGELOG.md +27 -0
  2. package/package.json +2 -8
package/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [0.1.4] - 2026-06-14
6
+ ### Fixed
7
+ - Fixed a critical runtime crash in `pi-coding-agent` caused by an incompatible manifest format in `package.json`. Changed extension declaration to a simple path array.
8
+
9
+ ## [0.1.3] - 2026-06-14
10
+ ### Fixed
11
+ - Aligned package manifest with official Pi specifications.
12
+ - Moved core libraries to `peerDependencies` to prevent bundling conflicts.
13
+
14
+ ## [0.1.2] - 2026-06-14
15
+ ### Added
16
+ - Professional README.md with badges and usage guides.
17
+ - MIT License.
18
+
19
+ ## [0.1.1] - 2026-06-14
20
+ ### Added
21
+ - Initial release of the context mapping logic.
22
+ - Integration with the Pi extension API.
23
+
24
+ ## [0.1.0] - 2026-06-14
25
+ ### Initial Release
26
+ - Implementation of `ContextAnalyzer` and `ReportGenerator`.
27
+ - Basic `/context-map` command functionality.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-context-map",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "A Pi extension that visualizes the current session context window and token distribution.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,13 +19,7 @@
19
19
  "author": "ZachDreamZ",
20
20
  "license": "MIT",
21
21
  "pi": {
22
- "extensions": [
23
- {
24
- "name": "context-map",
25
- "entry": "dist/index.js",
26
- "description": "Visualizes the session context window and token distribution."
27
- }
28
- ]
22
+ "extensions": ["dist/index.js"]
29
23
  },
30
24
  "dependencies": {},
31
25
  "peerDependencies": {