pi-openspec-context 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.
- package/CHANGELOG.md +14 -1
- package/README.md +10 -4
- package/package.json +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [0.1.
|
|
8
|
+
## [0.1.2] - 2026-08-23
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Published the updated README to NPM with both NPM and GitHub Pi installation commands.
|
|
12
|
+
- Removed the invalid local `file:../pi-test-harness` runtime dependency from package metadata; the test harness is now development-only.
|
|
13
|
+
|
|
14
|
+
## [0.1.1] - 2026-08-23
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Updated README installation instructions to highlight both `pi install pi-openspec-context` (NPM) and `pi install github:raphaelbahat/pi-openspec-context` (GitHub).
|
|
18
|
+
- Removed stale reference extension installation commands.
|
|
19
|
+
- Linked directly to official OpenSpec installation documentation.
|
|
20
|
+
|
|
21
|
+
## [0.1.0] - 2026-08-23
|
|
9
22
|
|
|
10
23
|
### Added
|
|
11
24
|
|
package/README.md
CHANGED
|
@@ -19,8 +19,14 @@ A lightweight Pi extension that automatically injects OpenSpec context into syst
|
|
|
19
19
|
|
|
20
20
|
### As a Pi Package
|
|
21
21
|
|
|
22
|
+
You can install `pi-openspec-context` directly into Pi from either NPM or GitHub:
|
|
23
|
+
|
|
22
24
|
```bash
|
|
25
|
+
# Install from NPM
|
|
23
26
|
pi install pi-openspec-context
|
|
27
|
+
|
|
28
|
+
# Or install from GitHub
|
|
29
|
+
pi install github:raphaelbahat/pi-openspec-context
|
|
24
30
|
```
|
|
25
31
|
|
|
26
32
|
### Global Installation (for local development)
|
|
@@ -48,9 +54,9 @@ npm install --save-dev pi-openspec-context
|
|
|
48
54
|
## Prerequisites
|
|
49
55
|
|
|
50
56
|
### Required
|
|
51
|
-
- **
|
|
52
|
-
-
|
|
53
|
-
- Verify: `openspec --version`
|
|
57
|
+
- **OpenSpec CLI**: Must be installed and accessible in your PATH.
|
|
58
|
+
- Please follow the official [OpenSpec Installation Documentation](https://github.com/Fission-AI/OpenSpec/blob/main/docs/installation.md) to set up the CLI.
|
|
59
|
+
- Verify with: `openspec --version`
|
|
54
60
|
|
|
55
61
|
### Optional
|
|
56
62
|
- Pi coding agent v0.84.0 or later (typically included with Pi installation)
|
|
@@ -103,7 +109,7 @@ Optional environment variable to override the default timeout:
|
|
|
103
109
|
|
|
104
110
|
**Solution**:
|
|
105
111
|
1. Verify OpenSpec is installed: `which openspec`
|
|
106
|
-
2.
|
|
112
|
+
2. If missing, follow the [OpenSpec Installation Documentation](https://github.com/Fission-AI/OpenSpec/blob/main/docs/installation.md).
|
|
107
113
|
3. Check PATH is configured: `echo $PATH`
|
|
108
114
|
4. Restart Pi after installing OpenSpec
|
|
109
115
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "pi-openspec-context",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"description": "Lightweight Pi extension for automatic OpenSpec context injection into system prompts",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Raphael Bahat <raphael@earendil.works>",
|
|
@@ -45,9 +45,7 @@
|
|
|
45
45
|
"eslint": "^9.0.0",
|
|
46
46
|
"typescript": "^5.4.0",
|
|
47
47
|
"typescript-eslint": "^8.67.0",
|
|
48
|
-
"vitest": "^1.6.0"
|
|
49
|
-
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"@gaodes/pi-test-harness": "file:../pi-test-harness"
|
|
48
|
+
"vitest": "^1.6.0",
|
|
49
|
+
"@gaodes/pi-test-harness": "^1.0.3"
|
|
52
50
|
}
|
|
53
51
|
}
|