pi-jscpd 0.1.0 → 0.1.1

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 CHANGED
@@ -7,6 +7,18 @@ published releases use [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.1] - 2026-09-05
11
+
12
+ ### Changed
13
+
14
+ - Simplified README installation guidance, kept detailed Effect internals in the
15
+ architecture guide, and added links to the maintainer's other Pi packages.
16
+
17
+ ### Security
18
+
19
+ - Removed the one-time npm bootstrap credential path and repository secret after
20
+ the registry confirmed `0.1.0`; future releases use trusted publishing only.
21
+
10
22
  ## [0.1.0] - 2026-09-05
11
23
 
12
24
  ### Added
@@ -95,5 +107,6 @@ published releases use [Semantic Versioning](https://semver.org/).
95
107
  - Project paths, child output, reports, temporary directories, cancellation,
96
108
  configuration trust, and lifecycle cleanup are bounded and fail open.
97
109
 
98
- [Unreleased]: https://github.com/revazi/pi-jscpd/compare/v0.1.0...HEAD
110
+ [Unreleased]: https://github.com/revazi/pi-jscpd/compare/v0.1.1...HEAD
111
+ [0.1.1]: https://github.com/revazi/pi-jscpd/compare/v0.1.0...v0.1.1
99
112
  [0.1.0]: https://github.com/revazi/pi-jscpd/releases/tag/v0.1.0
package/README.md CHANGED
@@ -18,20 +18,9 @@ languages, and statistics.
18
18
  pi install npm:pi-jscpd
19
19
  ```
20
20
 
21
- The package includes pinned jscpd `5.1.2` and Effect `3.22.1` runtime
22
- dependencies plus an on-demand `jscpd` agent skill—there is no separate analyzer
23
- installation and no runtime download.
24
- Effect owns bounded process execution, analyzer probing, temporary report
25
- workspaces, adapter serialization, trusted configuration and signal reads,
26
- canonical source-path validation, baseline generations, changed-file attribution,
27
- acknowledgement transactions, verification checkpoints, scoped scheduling,
28
- automatic finding delivery, scan/changed/status/Fallow application workflows,
29
- and one managed runtime/layer graph per extension instance. Legacy Promise/service
30
- paths are removed from those layers, and host-launched baseline work is settled at
31
- lifecycle boundaries. If your project already installs
32
- a compatible jscpd locally, or `jscpd`/`cpd` is available on `PATH`, the
33
- extension uses that installation first and keeps the bundled version as a
34
- fallback.
21
+ `pi-jscpd` includes jscpd and its on-demand agent skill, so there is no
22
+ separate analyzer setup or runtime download. It prefers a compatible project or
23
+ `PATH` installation and otherwise uses its bundled analyzer.
35
24
 
36
25
  Start Pi in your project and verify the setup:
37
26
 
@@ -194,6 +183,16 @@ and limitations.
194
183
  See the [compatibility policy](docs/compatibility.md) for the exact tested
195
184
  fixtures and certification matrix.
196
185
 
186
+ ## More Pi packages by Revaz
187
+
188
+ | Package | Purpose |
189
+ | --- | --- |
190
+ | [`pi-fallow`](https://www.npmjs.com/package/pi-fallow) | Fallow codebase intelligence for Pi |
191
+ | [`pi-reads`](https://www.npmjs.com/package/pi-reads) | Source capture, cited reading, Obsidian, EPUB, PDF, and Kindle workflows |
192
+ | [`pi-career`](https://www.npmjs.com/package/pi-career) | Deterministic resume and career workflows |
193
+ | [`pi-tmux-orchestrator`](https://www.npmjs.com/package/pi-tmux-orchestrator) | Multi-agent coordination in tmux |
194
+ | [`@tasklight/pi-tasklight`](https://www.npmjs.com/package/@tasklight/pi-tasklight) | Tasklight notifications for Pi |
195
+
197
196
  ## Development
198
197
 
199
198
  ```sh
package/docs/release.md CHANGED
@@ -43,20 +43,18 @@ artifact, and cannot publish or create a GitHub release.
43
43
  lifecycle scripts disabled; and
44
44
  8. creates the matching GitHub release only after npm publication succeeds.
45
45
 
46
- Because npm cannot attach trusted-publisher settings before an unscoped package
47
- exists, the `v0.1.0` publish step alone may receive a short-lived granular
48
- `NPM_TOKEN` repository secret for first-publication bootstrap. Dependency
49
- installation and release validation do not receive it, and `npm publish` runs
50
- with lifecycle scripts disabled. Delete the secret and remove this fallback as
51
- soon as npm confirms `0.1.0`; all later releases must use OIDC only. Default
52
- GitHub permissions are empty; the release job receives only `contents: write`
53
- for the GitHub release and `id-token: write` for trusted publishing.
54
-
55
- Before later tags are pushed, the repository's protected `npm` environment and
56
- npm trusted-publisher binding must match the exact repository and
57
- `.github/workflows/release.yml`. Authentication details, token values, `.npmrc`
58
- files, screenshots, and credential output must never be committed or copied into
59
- issues or CI logs.
46
+ The first publication used a short-lived granular token isolated to the
47
+ lifecycle-disabled publish step because npm could not attach trusted-publisher
48
+ settings before the unscoped package existed. That repository secret and
49
+ workflow fallback were deleted immediately after npm confirmed `0.1.0`.
50
+
51
+ All later releases must use OIDC only. Default GitHub permissions are empty; the
52
+ release job receives only `contents: write` for the GitHub release and
53
+ `id-token: write` for trusted publishing. Before another tag is pushed, the
54
+ repository's protected `npm` environment and npm trusted-publisher binding must
55
+ match the exact repository and `.github/workflows/release.yml`. Authentication
56
+ details, token values, `.npmrc` files, screenshots, and credential output must
57
+ never be committed or copied into issues or CI logs.
60
58
 
61
59
  ## Version and changelog procedure
62
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-jscpd",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A Pi-native, polyglot duplication guardrail powered by jscpd.",
5
5
  "type": "module",
6
6
  "license": "MIT",