claudex-setup 1.16.1 → 1.16.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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.16.2] - 2026-04-03
4
+
5
+ ### Changed
6
+ - bumped the local release line to `1.16.2` so the next publish does not overwrite the already-live `1.16.1` npm release
7
+ - synchronized README, docs, launch copy, and proof-facing state to distinguish clearly between public npm latest (`1.16.1`) and local release prep (`1.16.2`)
8
+
9
+ ### Fixed
10
+ - release-truth drift across package metadata, docs, and public-facing proof references
11
+
12
+ ## [1.16.1] - 2026-04-03
13
+
14
+ ### Added
15
+ - `feedback` command validation on the public npm package line
16
+ - stronger secret detection coverage for Anthropic-style keys
17
+ - deep-review sanitization and secret redaction hardening
18
+ - watch-mode resilience improvements across recursive and non-recursive platforms
19
+
20
+ ### Changed
21
+ - increased verified check count from `84` to `85`
22
+ - proof-backed product copy and case-study traceability improvements
23
+
3
24
  ## [1.10.3] - 2026-04-02
4
25
 
5
26
  ### Added
package/README.md CHANGED
@@ -51,7 +51,7 @@ Tested on 4 real projects — not demos:
51
51
 
52
52
  Most common gaps found: missing secrets protection, no deny rules, no mermaid diagram, no hooks in settings.
53
53
 
54
- > Scores measured with claudex-setup@1.10.3 on 2026-04-03. Current npm latest: 1.16.0, so exact scores may differ slightly on the newer release.
54
+ > Scores measured with claudex-setup@1.10.3 on 2026-04-03. Current npm latest: 1.16.1, so exact scores may differ slightly on the newer release.
55
55
  >
56
56
  > Canonical proof artifacts: [Index](https://github.com/DnaFin/claudex/blob/main/research/proof-artifacts/README.md) | [CLAUDEX trace](https://github.com/DnaFin/claudex/blob/main/research/proof-artifacts/claudex-self-dogfood-proof-trace-2026-04-03.md) | [VTCLE trace](https://github.com/DnaFin/claudex/blob/main/research/proof-artifacts/vtcle-proof-trace-2026-04-03.md) | [Social trace](https://github.com/DnaFin/claudex/blob/main/research/proof-artifacts/social-proof-trace-2026-04-03.md) | [Polymiro trace](https://github.com/DnaFin/claudex/blob/main/research/proof-artifacts/polymiro-proof-trace-2026-04-03.md)
57
57
  >
@@ -129,8 +129,6 @@ That prints a compact top-3 quick scan with one clear next command.
129
129
  | `npx claudex-setup deep-review` | **Deep Review** - AI-powered config analysis (Claude Code or API key, selected config only) |
130
130
  | `npx claudex-setup insights` | **Insights** - View community aggregate stats |
131
131
 
132
- > Note: the `feedback` command is currently validated on the main working tree for the next release. If your installed npm build does not expose it yet, use the rest of the trust-first flow and pick it up on the next publish.
133
-
134
132
  ### Options
135
133
 
136
134
  | Flag | Effect |
@@ -266,8 +264,6 @@ npx claudex-setup feedback
266
264
 
267
265
  Feedback stays under `.claude/claudex-setup/outcomes/` and is used only as a local ranking signal. Recommendations with repeated positive outcomes get a measured boost; recommendations with repeated negative or rejected outcomes get pushed down.
268
266
 
269
- If your currently installed npm build does not expose `feedback` yet, treat this as next-release behavior rather than current npm-latest behavior.
270
-
271
267
  `watch` uses native `fs.watch` with recursive directory watches where the platform supports them, and an expanded directory fallback elsewhere. That keeps nested `.claude/` and `.github/` changes visible on Linux too, while staying zero-dependency. Native filesystem watch semantics can still be noisier on very large repos or network filesystems, so the command is best treated as fast local feedback rather than a CI-grade signal.
272
268
 
273
269
  ## Use Inside Claude Code
@@ -331,7 +327,7 @@ jobs:
331
327
  runs-on: ubuntu-latest
332
328
  steps:
333
329
  - uses: actions/checkout@v4
334
- - uses: DnaFin/claudex-setup@v1.16.0
330
+ - uses: DnaFin/claudex-setup@v1.16.1
335
331
  with:
336
332
  threshold: 50
337
333
  ```
@@ -17,7 +17,7 @@ Use these links as the canonical sources behind public claims:
17
17
  Measured-result boundary to preserve:
18
18
 
19
19
  - before/after scores were measured with `claudex-setup@1.10.3` on `2026-04-03`
20
- - current npm latest is `1.16.0`
20
+ - current npm latest is `1.16.1`
21
21
  - current product surface is `85 checks`
22
22
 
23
23
  ## Post 1: Reddit r/ClaudeAI
@@ -175,7 +175,7 @@ Case studies:
175
175
 
176
176
  **Tweet 5:**
177
177
  Measured results were captured on `claudex-setup@1.10.3` on `2026-04-03`.
178
- Current npm latest is `1.16.0`, so exact scores can move slightly, but the proof packet is explicit about that boundary.
178
+ Current npm latest is `1.16.1`, so exact scores can move slightly, but the proof packet is explicit about that boundary.
179
179
 
180
180
  **Evidence anchor:** proof artifact index + per-repo traces
181
181
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudex-setup",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "Score your repo's Claude Code setup against 85 checks. See gaps, apply fixes selectively with rollback, govern hooks and permissions, and benchmark impact — without breaking existing config.",
5
5
  "main": "src/index.js",
6
6
  "bin": {