@chrono-meta/fh-gate 1.4.73 → 1.4.75

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 (42) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/CHEATSHEET.md +1 -1
  3. package/CLAUDE.md +14 -1
  4. package/docs/ETHOS.md +106 -0
  5. package/docs/OUTPUT_EVIDENCE.md +118 -0
  6. package/docs/WHY.md +42 -0
  7. package/knowledge/patterns/ensemble_union_detection_task_pattern.md +125 -0
  8. package/knowledge/shared/GLOSSARY.md +77 -0
  9. package/knowledge/shared/harness-core/harness_frontier_diagnosis_2026-06-02.md +1 -1
  10. package/knowledge/shared/harness-core/meta_harness_engineering_definition.md +1 -1
  11. package/knowledge/shared/learnings/subagent_invocations_log.yaml +9 -0
  12. package/knowledge/shared/patterns/multi-persona-review.md +88 -0
  13. package/knowledge/shared/plugin-catalog/recommended_plugins.md +117 -0
  14. package/package.json +28 -1
  15. package/plugins/fh-commons/.claude-plugin/plugin.json +1 -1
  16. package/plugins/fh-meta/.claude-plugin/plugin.json +2 -2
  17. package/plugins/fh-meta/CHANGELOG.md +617 -0
  18. package/scripts/below_floor_scan.sh +91 -0
  19. package/scripts/chamber_run.sh +184 -0
  20. package/scripts/degrade_direction_scan.sh +17 -2
  21. package/scripts/fh_env_delta_scan.sh +108 -0
  22. package/scripts/memory_link_check.py +237 -0
  23. package/scripts/memory_nearcheck.py +131 -0
  24. package/scripts/package_coverage_check.sh +140 -0
  25. package/scripts/selfcheck.sh +47 -0
  26. package/scripts/session_close_check.sh +31 -1
  27. package/scripts/sidecar_wait.sh +76 -0
  28. package/scripts/substrate_jump_detector.sh +60 -0
  29. package/scripts/test_card_drift_probe.sh +77 -0
  30. package/scripts/test_degrade_scan_shell_probes.sh +26 -0
  31. package/scripts/test_marker_floor_lanes.sh +45 -0
  32. package/scripts/test_memory_link_check.sh +134 -0
  33. package/scripts/test_session_close_lanes.sh +99 -0
  34. package/scripts/tier_census_grep.sh +54 -0
  35. package/templates/.claude/rules/session.md +153 -0
  36. package/templates/contrib_session.md +34 -0
  37. package/templates/degrade_direction_scan.sh +17 -2
  38. package/templates/goal-quench-hook-setup.md +152 -0
  39. package/templates/starter_profile.md +83 -0
  40. package/templates/temper_check.sh +46 -0
  41. package/plugins/fh-meta/skills/context-bridge-dispatch/SKILL.md +0 -32
  42. package/plugins/fh-meta/skills/self-marketing-lint/SKILL.md +0 -30
@@ -0,0 +1,88 @@
1
+ ---
2
+ name: multi-persona-review (parallax)
3
+ description: Generalized architecture for multi-persona parallel artifact review — parallel isolated personas + shared output protocol + neutral synthesizer. The domain-agnostic, IP-stripped pattern named "parallax" for FH; embodied as sim-conductor Step 1.5. Use when designing or explaining structured multi-viewpoint review (code, spec, design, plan).
4
+ type: reference
5
+ tags: [pattern, multi-persona, review, parallax, sim-conductor, verify-axis]
6
+ ---
7
+
8
+ # Multi-Persona Parallel Review — the `parallax` pattern
9
+
10
+ > **parallax**: depth — the hidden, the omitted — is only perceivable from multiple viewpoints. One
11
+ > standpoint is flat; the shift *between* standpoints reveals what a single seat cannot. The name is the
12
+ > thesis: structured multi-standpoint coverage finds categorically more than any one viewpoint.
13
+
14
+ **Provenance**: generalized and domain-stripped from a field marketplace implementation (`deep-insight`,
15
+ a company-internal term — not adopted here). The domain-agnostic *architecture* is portable; the
16
+ domain-specific personas were field extensions and are excluded. In FH this pattern is a **mode of
17
+ `sim-conductor`** (Step 1.5), not a separate skill — see `asset-placement-gate` verdict (2026-06-06):
18
+ it overlaps sim-conductor ~80–90%, so the distinctive patterns were absorbed, not forked.
19
+
20
+ ## The architecture (6 + 1 patterns)
21
+
22
+ 1. **Parallel isolated persona spawn** — N personas run as parallel agents (`Task(subagent_type=…)` /
23
+ parallel Agents), each in its own context, no inter-agent communication. Isolation is mechanical: it
24
+ lets each persona reach an independent verdict, which is what makes cross-persona agreement meaningful.
25
+ 2. **Shared output protocol (constitution)** — every persona, whatever its lens, emits the same shape:
26
+
27
+ ```
28
+ ### Strengths (0–3, from this persona's viewpoint)
29
+ ### Concerns
30
+ Critical — compile/runtime failure · clear logic error · data corruption · security leak
31
+ Important — significant user/service impact in a plausible scenario
32
+ Suggestion — optional improvement
33
+ (each: [file:line or quoted span] one-line summary — rationale)
34
+ ### Open questions (0–3 needed for a decision)
35
+ ### Absence check (outside-vantage personas: what does the artifact FAIL to specify that this
36
+ standpoint needs — discoverability, undocumented contract, unstated assumption?)
37
+ ```
38
+ 3. **Neutral synthesizer** — a NON-persona aggregator that injects no opinion: never a conclusion no
39
+ persona stated · preserve attribution (who said what) · priority labels verbatim · no forced consensus
40
+ or forced conflict. It reports Common opinions (2+ agree) and Conflicts (A vs B, each with rationale).
41
+ 4. **Persona taxonomy (group aliases)** — `dev` (fe/be/…), `biz` (pm/designer/…), `review`
42
+ (qa/compliance/devil-advocate), `user` (newcomer/power-user), `all`. Sourced, not hardcoded.
43
+ 5. **FP judgment discipline** — only escalate when confident. Never escalate: pre-existing issues ·
44
+ style without a quotable rule · linter-catchable · speculative · subjective (→ Suggestion). *If not
45
+ confident, do not mark it* — false positives erode reviewer trust.
46
+ 6. **Devil's advocate as a structural member** — not a special case; a standard member of `review`. Every
47
+ objection carries a rationale (no contrarianism for its own sake); the faster others converge, the
48
+ harder it hunts the weak point.
49
+ 7. **External-harness persona sourcing** (FH addition) — a lens may be sourced from an installed *sibling
50
+ harness*, not only the built-in palette: e.g. gstack `/review` (staff-engineer), `/cso`
51
+ (security-officer), `/qa` (QA-lead). The orchestrator runs FH; the sibling supplies the specialist
52
+ lens. Isomorphic to `steel-quench` Step 0.4 (Specialized Reviewer Discovery) + Wave 5 (external CLIs).
53
+
54
+ ## The two-layer severity (why it's required, not redundant)
55
+
56
+ Per-persona `Critical/Important/Suggestion` (each persona's own judgment in isolation) → synthesizer
57
+ triages to `M/S/R` (cross-persona). An isolated persona **cannot** assign `S = found by 3+ personas` —
58
+ that depends on agreement it never sees. So the per-persona → synthesized split is *required by isolation*,
59
+ not duplicate vocabulary.
60
+
61
+ ## What this pattern's value actually IS (honest, from the R9 experiment arc)
62
+
63
+ Established by controlled experiment (companion-store `RESULT9`, codex, capability-controlled, 2026-06-06):
64
+
65
+ - **It is NOT de-biasing.** Ownership had ≈ zero effect (a model self-reviewing blunt = an outsider
66
+ blunt). It is NOT "seeing what the author structurally can't": when explicitly asked, an author finds
67
+ their own omissions about as well as an outsider (clean replication refuted the "non-self-administrable"
68
+ claim).
69
+ - **What is real**: the gradient **`blunt < single-rubric < multi-persona`** — structured multi-standpoint
70
+ coverage finds categorically more (a single-flaw prompt missed SSRF; a single rubric missed the
71
+ consumer-contract axis a newcomer surfaces). Different standpoints make different issues *visible*.
72
+ - **So the value is**: **pure rubric/standpoint supply + routine enforcement** — the pattern assembles and
73
+ *routinely runs* the structured multi-standpoint rubric (including the omission/absence check) that a
74
+ builder would not assemble or run on themselves. **Fully copyable utility, zero cognitive-moat.**
75
+ Isolation's role is mechanical (independent verdicts → honest cross-persona triage + decorrelation), not
76
+ cognitive.
77
+
78
+ This framing is falsifiable and matches FH's utility-not-moat positioning: the personas are a copyable
79
+ marketplace; the marginal value is making the structured sweep routine, not exclusivity.
80
+
81
+ ## Where it lives in FH
82
+
83
+ - **Operational home**: `sim-conductor` Step 1.5 (Persona Output Protocol + Neutral Synthesizer). Area D
84
+ (artifact validation) is the focused multi-persona review entry point.
85
+ - **Sourcing kinship**: `steel-quench` Step 0.4 + Wave 5 (external reviewer/CLI discovery).
86
+ - **6-axis**: a validated pattern for **Axis 5 (Verify)** — structured multi-viewpoint review of a
87
+ near-complete artifact, complementary to steel-quench (adversarial hardening) and phantom-quench
88
+ (source grounding).
@@ -0,0 +1,117 @@
1
+ ---
2
+ name: forge-harness Recommended Plugins Catalog
3
+ description: Persistent record of plugin-recommender skill execution results. The primary asset for plugin-recommender skill Step 2 [1st priority] Curated List. Updated cumulatively each time the skill runs.
4
+ date: 2026-05-08
5
+ version: 0.1
6
+ ---
7
+
8
+ # forge-harness Recommended Plugins Catalog
9
+
10
+ > Primary search asset for the plugin-recommender skill. Updated cumulatively each run.
11
+
12
+ ## Run History
13
+
14
+ | Run | Date | Context | Result |
15
+ |:--:|---|---|---|
16
+ | 1 | 2026-05-07/08 | `.claudeignore` + model switching / project automation path | Organization GHE 0 items / Claude Code built-in sufficient / external OSS simulation phase |
17
+ | 2 | 2026-05-08 | UX Writing QA / NLP — self-simulation | Top asset utilization + md-wiki activation / external NLP plugin simulation phase |
18
+ | 3 | 2026-05-08 | Virtual: full-stack (React + Spring Boot) — self-simulation | `.claudeignore` big effect (node_modules·target·build) + model switching / external LSP·ESLint simulation phase |
19
+ | 4 | 2026-05-08 | **Organization GHE Tier 1 cross-recommendation simulation** — 5 repos | ★★★ 2 items + ★★ 3 items found / harness return value 4 paths |
20
+ | 5 | 2026-05-08 | **Organization GHE Tier 2 sister asset cross-recommendation simulation** — 6 repos | ★★★ 1 item + ★★ 4 items + ★ 2 items / Tier 1+2 cumulative n=11 |
21
+
22
+ ## Category 0.5 — claude-plugins-official (Tier 1 official — check BEFORE building or searching elsewhere)
23
+
24
+ > **No-reinvention rule (meta-harness 철칙)**: if an official plugin covers the capability, use it —
25
+ > do not rebuild it as an FH skill or hunt third-party. FH builds only what adds *governance* on top.
26
+ > Source: [`anthropics/claude-plugins-official/plugins`](https://github.com/anthropics/claude-plugins-official/tree/main/plugins)
27
+ > — inventory snapshot 2026-06-10 (36 plugins), **name-based grouping; verify each plugin's actual
28
+ > behavior via its README before install — do not trust the group label alone. Re-enumerate the
29
+ > directory when recommending; this list goes stale.**
30
+
31
+ | Group | Plugins | FH / mapped-project relevance |
32
+ |---|---|---|
33
+ | **Language servers (12)** | clangd · csharp · gopls · jdtls · kotlin · lua · php · pyright · ruby · rust-analyzer · swift · typescript (`*-lsp`) | Full-Harness Mode step 4: match to the mapped project's language — instant capability boost, zero FH build |
34
+ | **Dev workflow** | feature-dev · commit-commands · pr-review-toolkit · code-review · code-simplifier · code-modernization · frontend-design | Field-project execution layer. Role split: code work → these; FH-asset coherence → FH skills |
35
+ | **Authoring/extension** | skill-creator · plugin-dev · hookify · mcp-server-dev · agent-sdk-dev | Drafting tools. **FH 6-item gate still applies to anything they produce** |
36
+ | **Setup/session** | claude-code-setup · claude-md-management · mcp-tunnels · session-report · explanatory/learning-output-style | ⚠️ `claude-md-management` overlaps FH territory — role split: file mechanics → plugin; methodology/governance → FH. Evaluate before adopting |
37
+ | **Other** | security-guidance · ralph-loop · math-olympiad · playground · example-plugin · cwc-makers | `security-guidance`: candidate complement to Pre-Publish gate — evaluate |
38
+
39
+ ## Category 1 — Claude Code Built-in (Standard usage / no install)
40
+
41
+ | Item | Mechanism | Usage path |
42
+ |---|---|---|
43
+ | **`.claudeignore`** | `.gitignore` syntax / per-session token cost 20-40% ↓ | `cp templates/.claudeignore <project>/.claudeignore` |
44
+ | **`/model` + model switching** | Switch models mid-session | `/model opus` / `/model sonnet` / `/model haiku` |
45
+
46
+ ## Category 2 — Forge-Harness Meta Skills (already installed / use fully)
47
+
48
+ - **fh-meta 5 skills**: `harvest-loop` · `verify-bidirectional` · `frontier-digest` · `cross-ecosystem-synergy-detection` · `plugin-recommender`
49
+ - **`hub-persona-auditor`** + **`fact-checker`** agents
50
+ - **Active onboarding protocol** (forge-harness `CLAUDE.md`) — greeting/start trigger → 5-skill cascade
51
+
52
+ ## Category 3 — Organization Internal Tools / MCP (install as needed)
53
+
54
+ > Replace this section with your organization's specific MCP tools and internal plugins.
55
+
56
+ | Item | Source | Usage path |
57
+ |---|---|---|
58
+ | **`<your-mcp-plugin>`** | `<your-org>/<your-plugin-repo>` | Configure in `.mcp.json` / refer to your organization's MCP setup guide |
59
+
60
+ ### Examples of what to put here:
61
+ - Calendar / task management MCP (e.g., Google Calendar, Jira)
62
+ - Internal wiki / docs MCP
63
+ - Slack / messaging MCP
64
+ - Organization-specific API adapters
65
+
66
+ ## Category 4 — External OSS (evaluate then decide / simulation phase)
67
+
68
+ | Item | Evaluation | Priority |
69
+ |---|---|---|
70
+ | TestSprite MCP | May be covered by internal tools | ⚠ Follow-up |
71
+ | TestCollab MCP | May be covered by internal tools | ⚠ Follow-up |
72
+ | claude-code-skills (levnikolaevich) | Possible overlap with fh-meta 5 skills | ⚠ Follow-up |
73
+ | ClaudeMarketplaces.com (4,200+ skills) | Additional search area — not covered in 1st run | ⚠ Follow-up |
74
+ | awesome-claude-skills (ComposioHQ) | Curated list — not covered in 1st run | ⚠ Follow-up |
75
+
76
+ ## Domain-Specific Simulation Matrix (n=3 accumulated)
77
+
78
+ | Domain | ★★★ Immediate | ★★ Gradual | ★ Follow-up evaluation |
79
+ |---|---|---|---|
80
+ | **QA automation** (test prep automation) | `.claudeignore` · active onboarding · `verify-bidirectional` | `harvest-loop` | domain-specific test plugins |
81
+ | **Technical writing / docs QA** | `.claudeignore` · active onboarding · `<your-wiki-mcp>` · `verify-bidirectional` | `<your-messaging-mcp>` | NLP plugin |
82
+ | **Virtual full-stack** (React + Spring Boot) | `.claudeignore` (node_modules·target big effect) · active onboarding · `/model opus` for reasoning | `verify-bidirectional` | ESLint MCP · TS LSP |
83
+
84
+ ### Common 3 items (all domains ★★★)
85
+ **`.claudeignore`** + **active onboarding protocol** + **harness meta skills**
86
+
87
+ → These 3 are automatically applied in active onboarding Step 4 setup. Core of the user's fast path (direct implementation of harness mission — *"easy + no setup burden"*).
88
+
89
+ ### Domain-differentiated tools
90
+
91
+ | Domain area | Differentiated tool |
92
+ |---|---|
93
+ | QA domain | `verify-bidirectional` · `harvest-loop` |
94
+ | Frontend/full-stack | `/model opus` (coding/reasoning split) |
95
+ | Wiki/documentation | `<your-wiki-mcp>` (publish · update · sync) |
96
+ | Collaboration notifications | `<your-messaging-mcp>` |
97
+ | All domains | harness meta skills (cross-validation) |
98
+
99
+ ### n=3 simulation learnings (maturity improvement path)
100
+
101
+ 1. **Common 3 auto-applied** — active onboarding protocol naturally manifests (no user burden)
102
+ 2. **Domain-differentiated tools matched after user answer** (plugin-recommender 5-step)
103
+ 3. **External OSS decided after evaluation** (simplification guard — 80%+ covered by harness meta skills)
104
+ 4. **plugin-recommender skill v0.2 patch decision after 3+ runs** (currently at 3 runs)
105
+
106
+ ## Update obligation (cumulative each run)
107
+
108
+ - Add 1 row to run history table
109
+ - Update per-category matrix (new recommendations / evaluation changes)
110
+ - Persist domain-specific results
111
+ - Immediately reflect when new insights are caught
112
+
113
+ ## Next trigger
114
+
115
+ - On new work/project entry, read this file first → match against Category 1·2·3 first
116
+ - On external plugin search cycle, update Category 4 (ClaudeMarketplaces.com / awesome-claude-skills direct fetch)
117
+ - plugin-recommender skill v0.2 evolution: decide after 5-run accumulation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrono-meta/fh-gate",
3
- "version": "1.4.73",
3
+ "version": "1.4.75",
4
4
  "description": "FH runtime adapters — run FH governance, skills, and agents via Claude or Codex with machine-parseable gates.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -63,8 +63,29 @@
63
63
  "scripts/fh-goal.sh",
64
64
  "scripts/count_check.sh",
65
65
  "scripts/selfcheck.sh",
66
+ "scripts/package_coverage_check.sh",
66
67
  "scripts/test_fh_gate_regressions.sh",
67
68
  "templates/local_fh_context.md",
69
+ "docs/ETHOS.md",
70
+ "docs/WHY.md",
71
+ "docs/OUTPUT_EVIDENCE.md",
72
+ "knowledge/shared/GLOSSARY.md",
73
+ "knowledge/shared/patterns",
74
+ "knowledge/shared/plugin-catalog",
75
+ "knowledge/patterns",
76
+ "templates/CLAUDE.md",
77
+ "templates/starter_profile.md",
78
+ "templates/temper_check.sh",
79
+ "templates/contrib_session.md",
80
+ "templates/goal-quench-hook-setup.md",
81
+ "templates/.claude/rules/session.md",
82
+ "scripts/below_floor_scan.sh",
83
+ "scripts/chamber_run.sh",
84
+ "scripts/fh_env_delta_scan.sh",
85
+ "scripts/substrate_jump_detector.sh",
86
+ "scripts/tier_census_grep.sh",
87
+ "scripts/test_marker_floor_lanes.sh",
88
+ "plugins/fh-meta/CHANGELOG.md",
68
89
  "knowledge/shared/learnings/subagent_invocations_log.yaml",
69
90
  "scripts/chamber_candidate_collect.sh",
70
91
  "scripts/fh_session_load.sh",
@@ -81,6 +102,12 @@
81
102
  "scripts/prepush_guard_check.sh",
82
103
  "scripts/psa_scan_lib.sh",
83
104
  "scripts/session_close_check.sh",
105
+ "scripts/memory_link_check.py",
106
+ "scripts/test_memory_link_check.sh",
107
+ "scripts/memory_nearcheck.py",
108
+ "scripts/sidecar_wait.sh",
109
+ "scripts/test_session_close_lanes.sh",
110
+ "scripts/test_card_drift_probe.sh",
84
111
  "scripts/universal_guard_check.sh",
85
112
  "scripts/test_prepush_stdin_integrity.sh",
86
113
  "scripts/public_surface_scan_files.sh",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fh-commons",
3
- "version": "1.4.73",
3
+ "version": "1.4.75",
4
4
  "engines": {
5
5
  "claudeCode": ">=1.0.0"
6
6
  },
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "fh-meta",
3
- "version": "1.4.73",
3
+ "version": "1.4.75",
4
4
  "engines": {
5
5
  "claudeCode": ">=1.0.0"
6
6
  },
7
- "description": "New in 1.4.73: the mechanical floor now ships — templates/.git-hooks (pre-commit/pre-push) plus every script they actually invoke, their regression anchors, and the .claude/rules data they read. Until now the package shipped the prose that tells you to run the gates while omitting the gates, and 35 shipped-doc references pointed at files the tarball did not contain. Verified by unpacking the tarball, installing the hooks in a scratch repo and committing through them, not by inspecting files[]. degrade_direction_scan gains shell probes: it collected .sh files that no probe could match and reported them clean (known-positive scored 0/4); git hooks were invisible entirely because the extension test ran against the path, not the basename. The field-propagated templates/ copy had drifted from scripts/ and is now byte-pinned by an anchor. Hub meta-engineering toolkit — 35 skills + 7 agents. New in 1.4.71: SKILL_detail.md brought inside the 4-axis gate — the gate matched the literal `SKILL.md`, which `SKILL_detail.md` does not contain, leaving 27.7% of the skill-spec surface ungated (measured; it leaked twice for real). Fix escalated from a name list to a directory scope after an enumeration sweep found a real uncovered file on its first run; anchored by scripts/gate_pathspec_check.sh (known-pair, wired into pre-commit). One-way mirror sync gains a destination-newer abort + mechanically injected mirror banner after two session cards were silently overwritten, anchored by scripts/sync_guard_check.sh. dialogue-harvest gains Step 4-b cross-corpus provenance (absorbed / held-unused / declined) for single-author corpora, where the original provenance labels were free and measured nothing. frontier-digest arxiv leg category-scoped after a relevance drift the staleness rule structurally could not catch (known-pair calibration recorded). templates/CLAUDE.md hub paths switched to {FH_ROOT} so a copied harness stops carrying one operator's absolute paths into org-visible checkouts. New in 1.4.70: dialogue-harvest (mines AI-dialogue logs — sycophancy strip first, induced-vs-independent provenance labeling, EN+KO known-pair calibration shipped); asset-placement-gate Step 0.6 official-corpora check (Claude Cookbook as Tier-0 consult corpus, judged-flag semantics); context-doctor built-in-/doctor-first sister anchor. New in 1.4.48: phantom-quench + steel-quench gain external frontier anchors (arXiv:2607.02052 package-hallucination; arXiv:2607.02057 prompt-coverage-adequacy); README model-flat claim reframed from a per-release point-curve to structural invariants (operation flattens across tiers; depth tier-order fixed within a generation). New in 1.4.47: onboarding step ① surfaces the Mode D companion-store session-start load in the auto-read salience anchor (previously only in the local binding + rules, so a greeting could skip the load). New in 1.4.46: context-doctor gains a command-output axis — routes to a command-output proxy/hook (rtk) to trim verbose CLI stdout, complementing .claudeignore; risk-gated to token-scarce environments (lossy filtering, off gate-input paths). New in 1.4.41: context-doctor 2026 trigger vocab (context engineering/rot/collapse) + phantom-citation hardening; hub measurement-integrity-checklist (cross-model measurement pre-flight: display-name pin/reps≥3/discriminating probe). New in 1.4.40: install-wizard scaffolds the companion store as a queryable wiki (INDEX + session-start read + Raw/Wiki/Conversation ingest axis). New in 1.4.39: auto-decorrelation (cross-family verifier sidecar recruitment, calibration-gated) + video-ingest (capability-routed video ingestion). New in 1.4.37: corpus-grounding-expander + persona-roster-expander (field-harvested verbatim-relay capability skills). New in 1.3.0: public-surface-audit (git-tracked private-token leak scan), field-harvest Mode B session-end auto-trigger, 4-axis gate scope extension (docs/ + AGENTS.md). New in 1.2.0: pipeline-conductor (4-pipeline gated sweep), return-path-gate (chain closure audit), goal-quench (Stop hook + quality gate), steel-quench Wave 5 (multi-model sidecar challenger), 2-layer architecture docs, YAML validation script. Validated cross-CLI: Claude Code, Codex, Gemini.",
7
+ "description": "New in 1.4.74: shipped documents no longer point at files the package omits. 35 such paths were measured on 2026-07-28 — CLAUDE.md instructed consumers to run templates/predelete_check.sh before a destructive op and the file did not ship. 20 more paths added; the 4 that remain absent are enumerated with a written reason each (per-environment registries and operator-private sync). Closing the set once is worth little because it regrows, so scripts/package_coverage_check.sh now fails selfcheck on any new occurrence, known-pair calibrated, and it caught itself on first wiring. New in 1.4.73: the mechanical floor now ships — templates/.git-hooks (pre-commit/pre-push) plus every script they actually invoke, their regression anchors, and the .claude/rules data they read. Until now the package shipped the prose that tells you to run the gates while omitting the gates, and 35 shipped-doc references pointed at files the tarball did not contain. Verified by unpacking the tarball, installing the hooks in a scratch repo and committing through them, not by inspecting files[]. degrade_direction_scan gains shell probes: it collected .sh files that no probe could match and reported them clean (known-positive scored 0/4); git hooks were invisible entirely because the extension test ran against the path, not the basename. The field-propagated templates/ copy had drifted from scripts/ and is now byte-pinned by an anchor. Hub meta-engineering toolkit — 35 skills + 7 agents. New in 1.4.71: SKILL_detail.md brought inside the 4-axis gate — the gate matched the literal `SKILL.md`, which `SKILL_detail.md` does not contain, leaving 27.7% of the skill-spec surface ungated (measured; it leaked twice for real). Fix escalated from a name list to a directory scope after an enumeration sweep found a real uncovered file on its first run; anchored by scripts/gate_pathspec_check.sh (known-pair, wired into pre-commit). One-way mirror sync gains a destination-newer abort + mechanically injected mirror banner after two session cards were silently overwritten, anchored by scripts/sync_guard_check.sh. dialogue-harvest gains Step 4-b cross-corpus provenance (absorbed / held-unused / declined) for single-author corpora, where the original provenance labels were free and measured nothing. frontier-digest arxiv leg category-scoped after a relevance drift the staleness rule structurally could not catch (known-pair calibration recorded). templates/CLAUDE.md hub paths switched to {FH_ROOT} so a copied harness stops carrying one operator's absolute paths into org-visible checkouts. New in 1.4.70: dialogue-harvest (mines AI-dialogue logs — sycophancy strip first, induced-vs-independent provenance labeling, EN+KO known-pair calibration shipped); asset-placement-gate Step 0.6 official-corpora check (Claude Cookbook as Tier-0 consult corpus, judged-flag semantics); context-doctor built-in-/doctor-first sister anchor. New in 1.4.48: phantom-quench + steel-quench gain external frontier anchors (arXiv:2607.02052 package-hallucination; arXiv:2607.02057 prompt-coverage-adequacy); README model-flat claim reframed from a per-release point-curve to structural invariants (operation flattens across tiers; depth tier-order fixed within a generation). New in 1.4.47: onboarding step ① surfaces the Mode D companion-store session-start load in the auto-read salience anchor (previously only in the local binding + rules, so a greeting could skip the load). New in 1.4.46: context-doctor gains a command-output axis — routes to a command-output proxy/hook (rtk) to trim verbose CLI stdout, complementing .claudeignore; risk-gated to token-scarce environments (lossy filtering, off gate-input paths). New in 1.4.41: context-doctor 2026 trigger vocab (context engineering/rot/collapse) + phantom-citation hardening; hub measurement-integrity-checklist (cross-model measurement pre-flight: display-name pin/reps≥3/discriminating probe). New in 1.4.40: install-wizard scaffolds the companion store as a queryable wiki (INDEX + session-start read + Raw/Wiki/Conversation ingest axis). New in 1.4.39: auto-decorrelation (cross-family verifier sidecar recruitment, calibration-gated) + video-ingest (capability-routed video ingestion). New in 1.4.37: corpus-grounding-expander + persona-roster-expander (field-harvested verbatim-relay capability skills). New in 1.3.0: public-surface-audit (git-tracked private-token leak scan), field-harvest Mode B session-end auto-trigger, 4-axis gate scope extension (docs/ + AGENTS.md). New in 1.2.0: pipeline-conductor (4-pipeline gated sweep), return-path-gate (chain closure audit), goal-quench (Stop hook + quality gate), steel-quench Wave 5 (multi-model sidecar challenger), 2-layer architecture docs, YAML validation script. Validated cross-CLI: Claude Code, Codex, Gemini.",
8
8
  "author": {
9
9
  "name": "chrono-meta",
10
10
  "email": "chrono-meta@users.noreply.github.com"