@andresmassello/uscha 1.75.0 → 1.75.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/README.md CHANGED
@@ -40,7 +40,7 @@ Requires **Python 3.8+** on the machine (the engine is Python stdlib — no pip
40
40
  runtime dependencies). The npm package is a thin router; the canonical installer is
41
41
  `uscha-kit/install-uscha.py`.
42
42
 
43
- **Kit v1.75.0** <!-- uscha:version --> · [uscha.dev](https://uscha.dev) ·
43
+ **Kit v1.75.1** <!-- uscha:version --> · [uscha.dev](https://uscha.dev) ·
44
44
  [changelog](https://github.com/andresmassello/uscha/blob/main/uscha-kit/CHANGELOG.md)
45
45
  (the per-release changelogs live in the repo, not in the npm tarball)
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andresmassello/uscha",
3
- "version": "1.75.0",
3
+ "version": "1.75.1",
4
4
  "description": "Spec-driven development for LLM coding agents: 9 skills + a stdlib evidence engine. Facts block, guesses advise; the human approves.",
5
5
  "author": {
6
6
  "name": "Andres Massello",
@@ -5551,7 +5551,9 @@ def _bench_entry(entry_dir, name):
5551
5551
  greens = sum(1 for i in impls if i["oracle"]["green"])
5552
5552
  min_rate = min((i["oracle"]["passed"] / i["oracle"]["total"]) if i["oracle"]["total"]
5553
5553
  else 0.0 for i in impls)
5554
- distinct = rec["variance"]["all_distinct"] if rec["variance"] else (n == 1)
5554
+ # distinct is None when variance could not be computed (fewer than 2 resolvable impl files),
5555
+ # which is NOT the same as a byte-identical convergence -- keep the two reasons apart.
5556
+ distinct = rec["variance"]["all_distinct"] if rec["variance"] else None
5555
5557
  if stub_green:
5556
5558
  rec["verdict"], rec["reason"] = "FAIL", ("oracle satisfied by a degenerate stub -- not "
5557
5559
  "discriminating; the entry proves nothing")
@@ -5559,6 +5561,9 @@ def _bench_entry(entry_dir, name):
5559
5561
  rec["verdict"], rec["reason"] = "FAIL", "a compilation does not validate against the pinned IR"
5560
5562
  elif n < 3:
5561
5563
  rec["verdict"], rec["reason"] = "PENDING", "fewer than 3 compilations (have %d)" % n
5564
+ elif distinct is None:
5565
+ rec["verdict"], rec["reason"] = "FAIL", ("cannot assess distinctness -- fewer than 2 "
5566
+ "resolvable implementation files on disk")
5562
5567
  elif not distinct:
5563
5568
  rec["verdict"], rec["reason"] = "FAIL", ("implementations converged to a byte-identical "
5564
5569
  "pair -- a disguised implementation")
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
3
3
  "name": "uscha",
4
- "version": "1.75.0",
4
+ "version": "1.75.1",
5
5
  "displayName": "Uscha",
6
6
  "description": "Spec-driven development for LLM coding agents: 9 skills (discovery, adr-refine, reverse-discovery, characterize, devloop, sysdoc, rubric, mirador, status) + a stdlib measurement engine (qa_ledger.py, 47 subcommands + universal installer + npm/npx router). Facts block, guesses advise; the human approves.",
7
7
  "author": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uscha",
3
- "version": "1.75.0",
3
+ "version": "1.75.1",
4
4
  "description": "Uscha spec-driven development methodology for coding agents. Includes npm/npx router.",
5
5
  "author": {
6
6
  "name": "Andres Massello",
@@ -1,6 +1,6 @@
1
1
  # uscha-kit
2
2
 
3
- **Kit version:** v1.75.0 <!-- uscha:version --> · **[uscha.dev](https://uscha.dev)**
3
+ **Kit version:** v1.75.1 <!-- uscha:version --> · **[uscha.dev](https://uscha.dev)**
4
4
 
5
5
  Spec-driven orchestrator + multi-repo QA for Claude Code, with a deterministic ledger.
6
6
  **Nine skills** (`uscha-discovery`, `uscha-adr-refine`, `uscha-devloop`, `uscha-sysdoc`, `uscha-reverse-discovery`,
package/uscha-kit/VERSION CHANGED
@@ -1 +1 @@
1
- uscha-kit 1.75.0
1
+ uscha-kit 1.75.1
@@ -5551,7 +5551,9 @@ def _bench_entry(entry_dir, name):
5551
5551
  greens = sum(1 for i in impls if i["oracle"]["green"])
5552
5552
  min_rate = min((i["oracle"]["passed"] / i["oracle"]["total"]) if i["oracle"]["total"]
5553
5553
  else 0.0 for i in impls)
5554
- distinct = rec["variance"]["all_distinct"] if rec["variance"] else (n == 1)
5554
+ # distinct is None when variance could not be computed (fewer than 2 resolvable impl files),
5555
+ # which is NOT the same as a byte-identical convergence -- keep the two reasons apart.
5556
+ distinct = rec["variance"]["all_distinct"] if rec["variance"] else None
5555
5557
  if stub_green:
5556
5558
  rec["verdict"], rec["reason"] = "FAIL", ("oracle satisfied by a degenerate stub -- not "
5557
5559
  "discriminating; the entry proves nothing")
@@ -5559,6 +5561,9 @@ def _bench_entry(entry_dir, name):
5559
5561
  rec["verdict"], rec["reason"] = "FAIL", "a compilation does not validate against the pinned IR"
5560
5562
  elif n < 3:
5561
5563
  rec["verdict"], rec["reason"] = "PENDING", "fewer than 3 compilations (have %d)" % n
5564
+ elif distinct is None:
5565
+ rec["verdict"], rec["reason"] = "FAIL", ("cannot assess distinctness -- fewer than 2 "
5566
+ "resolvable implementation files on disk")
5562
5567
  elif not distinct:
5563
5568
  rec["verdict"], rec["reason"] = "FAIL", ("implementations converged to a byte-identical "
5564
5569
  "pair -- a disguised implementation")
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.75.0",
2
+ "version": "1.75.1",
3
3
  "project": null,
4
4
  "defaults": {
5
5
  "coverage_threshold": 60,