@josephyoung/pi-file-reference 0.1.2 → 0.1.3

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 (3) hide show
  1. package/AGENTS.md +3 -3
  2. package/LICENSE +2 -2
  3. package/package.json +5 -3
package/AGENTS.md CHANGED
@@ -37,11 +37,11 @@ Then bump version and push:
37
37
 
38
38
  ```bash
39
39
  npm version patch # bump version, creates commit + tag
40
- git push origin main --tags # push to main triggers CI (package.json change)
40
+ git push origin main --tags # push to main + tag; CI triggers on package.json change
41
41
  ```
42
42
 
43
43
  - GitHub Actions workflow: `.github/workflows/publish.yml`
44
44
  - Trigger: push to main when `package.json` changes, or `workflow_dispatch`
45
- - CI checks if version > npm latest before publishing (idempotent)
45
+ - Uses Node 24 (npm 11) for OIDC support — Node 22's npm 10 OIDC is broken
46
46
  - Uses npm Trusted Publishing (OIDC) — no tokens or OTP needed
47
- - OIDC runs on `refs/heads/main` — ensure npm Trusted Publisher is configured for branch `main`
47
+ - Runs on `refs/heads/main` — npm Trusted Publisher must accept branch `main`
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Joseph Cheng
3
+ Copyright (c) 2026 @josephyoung/pi-file-reference
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@josephyoung/pi-file-reference",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
- "description": "Pi extension that resolves @filepath references in AGENTS.md and injects file content into system prompt",
5
+ "description": "Pi extension: resolve @filepath (files & directories) in AGENTS.md, inject into system prompt",
6
6
  "type": "module",
7
7
  "keywords": [
8
8
  "pi-package",
9
9
  "pi",
10
- "extension"
10
+ "extension",
11
+ "context",
12
+ "file-reference"
11
13
  ],
12
14
  "homepage": "https://github.com/josephyoung/pi-file-reference#readme",
13
15
  "bugs": {