@chrono-meta/fh-gate 1.4.41 → 1.4.42
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/AGENTS.md +2 -2
- package/CLAUDE.md +65 -130
- package/docs/CONTRIBUTING.md +2 -2
- package/knowledge/shared/dialogue/ai_dialogue_playbook.md +137 -0
- package/knowledge/shared/dialogue/claude_code_runtime_flow.md +170 -0
- package/knowledge/shared/dialogue/memory_intent_recall.md +209 -0
- package/knowledge/shared/harness-core/claude_md_gate_details.md +170 -0
- package/knowledge/shared/harness-core/companion_store_pluggable_cross_audit_2026-06-11.md +118 -0
- package/knowledge/shared/harness-core/crucible_mode.md +112 -0
- package/knowledge/shared/harness-core/deep_research_capability_ladder.md +122 -0
- package/knowledge/shared/harness-core/fh_detail_protocols.md +163 -0
- package/knowledge/shared/harness-core/fh_ecosystem_positioning.md +147 -0
- package/knowledge/shared/harness-core/fh_opencode_governance_wrapper.md +163 -0
- package/knowledge/shared/harness-core/fh_synergy_playbook.md +217 -0
- package/knowledge/shared/harness-core/gate_locality_principle.md +57 -0
- package/knowledge/shared/harness-core/goal_quench_anthropic_issue.md +104 -0
- package/knowledge/shared/harness-core/harness_6axis_framework.md +136 -0
- package/knowledge/shared/harness-core/harness_design_decision_lens.md +108 -0
- package/knowledge/shared/harness-core/harness_frontier_diagnosis_2026-06-02.md +102 -0
- package/knowledge/shared/harness-core/hub_compounding_loop.md +109 -0
- package/knowledge/shared/harness-core/hub_maturity_roadmap.md +201 -0
- package/knowledge/shared/harness-core/hybrid_orchestration_architecture_roadmap.md +196 -0
- package/knowledge/shared/harness-core/live_surface_automation_pattern.md +110 -0
- package/knowledge/shared/harness-core/measurement-integrity-checklist.md +54 -0
- package/knowledge/shared/harness-core/meta_harness_engineering_definition.md +116 -0
- package/knowledge/shared/harness-core/multi_model_sidecar_strategy.md +650 -0
- package/knowledge/shared/harness-core/persona_container_schema.md +172 -0
- package/knowledge/shared/harness-core/return_path_gate.md +120 -0
- package/knowledge/shared/harness-core/self_evolution_routine.md +268 -0
- package/knowledge/shared/harness-core/skill_quality_rubric.md +71 -0
- package/knowledge/shared/harness-core/tpa_schema.md +136 -0
- package/package.json +3 -2
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: live-surface-automation-pattern
|
|
3
|
+
description: The capability pattern FH routes to when a mapping project needs an agent to drive a live UI surface (web/mobile) — observe-act-verify over the running app, not code/data fetch. FH routes drivers (no-reinvention); the value is the cross-platform observe-act-verify contract, the Appium-less principle, and the hybrid-WebView vision-synthesis rule. Generalizable across mapping projects; not tied to any one project.
|
|
4
|
+
date: 2026-06-14
|
|
5
|
+
tags: [live-surface, ui-automation, observe-act-verify, appium-less, hybrid-webview, no-reinvention, mapping-acceleration]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Live-Surface Automation Pattern
|
|
9
|
+
|
|
10
|
+
When a mapping project's work lives on a **live UI surface** — a running mobile app or web page whose
|
|
11
|
+
state cannot be reached by reading code or fetching data — FH's posture is the same as for any
|
|
12
|
+
capability it does not own: **detect the need and route to the best driver present, do not build a UI
|
|
13
|
+
engine** (no-reinvention). The value FH adds is the *contract* below, not a new automation tool.
|
|
14
|
+
|
|
15
|
+
This is the acceleration axis behind the "③ map-project acceleration" door's live-surface capability
|
|
16
|
+
(`[[fh-live-surface-acceleration]]`). It was first validated on web (Playwright MCP); the 2026-06-14
|
|
17
|
+
validation extended it to mobile (Android + iOS) and surfaced the two principles that make it work.
|
|
18
|
+
A 2026-06-19 two-surface session then measured the **logged-in-web** (claude-in-chrome) and
|
|
19
|
+
**native-desktop** (computer-use) lanes against the same six-primitive contract — splitting the web
|
|
20
|
+
row into isolated vs logged-in and adding a native-desktop row (see Driver routing).
|
|
21
|
+
|
|
22
|
+
## The observe-act-verify contract (driver-agnostic)
|
|
23
|
+
|
|
24
|
+
Every driver fills the same six primitives; the runner above them is identical regardless of backend:
|
|
25
|
+
|
|
26
|
+
| primitive | role | verdict impact |
|
|
27
|
+
|---|---|---|
|
|
28
|
+
| launch | bring the app/page up | failure → BLOCKED |
|
|
29
|
+
| screenshot | vision-channel capture | evidence |
|
|
30
|
+
| observe | structured element tree (XML/AX/DOM) → normalized elements | candidate ranking input |
|
|
31
|
+
| tap | element/coordinate action | act |
|
|
32
|
+
| input_text | text entry | act |
|
|
33
|
+
| screen_signature | pre/post comparison | re-observe |
|
|
34
|
+
|
|
35
|
+
A TC/step's intent text is ranked against observed elements (text · description · role · clickable ·
|
|
36
|
+
bounds), the top candidate is acted on, and the post-action observation is checked **mechanically**
|
|
37
|
+
(target text present/absent + candidate count + adapter exit) — no judge LLM decides the verdict.
|
|
38
|
+
|
|
39
|
+
## Driver routing (no-reinvention)
|
|
40
|
+
|
|
41
|
+
| surface | driver | note |
|
|
42
|
+
|---|---|---|
|
|
43
|
+
| web — isolated (no login) | Playwright MCP (Claude-usable) / Stagehand | isolated session, no operator cookies; generic-coding-agent usable — covers users without a proprietary browser-agent app |
|
|
44
|
+
| web — logged-in (operator's authenticated session) | authenticated-session browser driver — currently claude-in-chrome (`/chrome`) | reaches SSO-behind SPAs the isolated lane can't; `find` → DOM element ref. Current-instance caveats in footnote † |
|
|
45
|
+
| native desktop screen | screen-control driver — currently computer-use (screenshot + coordinate, vision channel) | reaches non-browser native app windows the browser lanes can't; `observe` is vision-coordinate, not an AX/DOM tree. ⚠️ local-session-bound (remote-control), no mobile; `input_text` unverified (5/6 — see note) |
|
|
46
|
+
| Android (emulator **or** real device) | `adb` + `uiautomator dump` + `input tap` | same code path for both — see Portability below |
|
|
47
|
+
| iOS simulator | `idb ui describe-all` + `idb ui tap` (idb-companion + fb-idb) | native AX tree |
|
|
48
|
+
| hybrid WebView region | **vision channel** (screenshot + element detection) | native AX is blind here — see Hybrid rule |
|
|
49
|
+
|
|
50
|
+
FH routes; it does not reimplement these. Drivers are pluggable; the contract is fixed.
|
|
51
|
+
|
|
52
|
+
**Observe channel + measurement (2026-06-19).** computer-use fills `observe` via the **vision channel**
|
|
53
|
+
(screenshot + coordinate) — the same channel the hybrid-WebView rule already mandates (below), now for
|
|
54
|
+
native desktop; the browser and mobile drivers fill it with a structured tree (DOM ref / AX). Measured
|
|
55
|
+
that session: claude-in-chrome closed **all six** primitives on both a no-login and an operator-logged-in
|
|
56
|
+
surface; computer-use closed **five** (launch / screenshot / observe(vision) / tap / screen_signature) —
|
|
57
|
+
`input_text` is keyboard-capable but was not exercised. The lanes cover **different surfaces, not
|
|
58
|
+
redundant ones** — calculator success on computer-use does not imply chrome, and only chrome reaches the
|
|
59
|
+
logged-in session.
|
|
60
|
+
|
|
61
|
+
† **Current-instance caveats (point-in-time, not routing inputs).** claude-in-chrome and computer-use are
|
|
62
|
+
built-in MCPs — verify presence via the `/mcp` UI, not `claude mcp list`. claude-in-chrome needs a direct
|
|
63
|
+
first-party plan (unavailable on Bedrock/Vertex) and a per-site permission grant. Tool surface as measured
|
|
64
|
+
2026-06-19: claude-in-chrome ~22, computer-use ~24 (counts drift across releases — not a routing input).
|
|
65
|
+
|
|
66
|
+
## ★ Principle 1 — Appium-less is the enabler
|
|
67
|
+
|
|
68
|
+
Going **through Appium is the failure mode**, not the solution. Appium's WebView-context switching is
|
|
69
|
+
flaky on hybrid apps; in one field case it burned a large automation budget without completing a single
|
|
70
|
+
hybrid flow (repeated run→fail→rerun). The **direct path** (`uiautomator dump` / `idb describe-all` +
|
|
71
|
+
coordinate tap + vision) bypasses that failure mode entirely. Appium is therefore *one regression-stage
|
|
72
|
+
adapter*, not the exploration/execution substrate.
|
|
73
|
+
|
|
74
|
+
## ★ Principle 2 — Hybrid WebView is opaque to native accessibility → synthesize vision
|
|
75
|
+
|
|
76
|
+
Live-measured (2026-06-14, iOS hybrid sandbox): a WKWebView's **web content does not appear in the
|
|
77
|
+
native accessibility tree** — only native chrome and bridge-triggered native overlays do. A tap on a
|
|
78
|
+
web button fired the web→native bridge and the resulting native picker *did* appear in the AX tree
|
|
79
|
+
(4→10 elements), confirming the boundary precisely.
|
|
80
|
+
|
|
81
|
+
→ For hybrid apps, the observe channel must be **synthesized**: native AX for native targets + **vision
|
|
82
|
+
(screenshot + element detection) for the WebView interior** + optionally a web-layer inspector. An
|
|
83
|
+
XML/AX-only agent silently misses the entire web form. This converges with the external frontier
|
|
84
|
+
finding that SOTA UI automation is hybrid (AX/accessibility for action targets, vision for grounding
|
|
85
|
+
and verification, deterministic probes for assertions).
|
|
86
|
+
|
|
87
|
+
## Portability — design on simulator, run on real device (Appium-less)
|
|
88
|
+
|
|
89
|
+
Because the Android driver uses the same `adb -s <serial>` interface for an emulator and a USB-connected
|
|
90
|
+
real device, a structure authored and validated on the **simulator runs unchanged on the real device**
|
|
91
|
+
— no per-device manual element extraction. Live-measured: a flow validated on the emulator auto-extracted
|
|
92
|
+
the full native element set on a real-device banking sandbox with zero code change. This portability —
|
|
93
|
+
sim-authored → real-device execution without Appium — is itself a meaningful capability step (a project
|
|
94
|
+
may ship it before any AI-prospective layer).
|
|
95
|
+
|
|
96
|
+
## Caveats (honest scope)
|
|
97
|
+
|
|
98
|
+
- Element-ranking *accuracy* (intent → correct element) is unmeasured until a project supplies real
|
|
99
|
+
fixtures from its own app; the contract and loop are validated, the ranking quality is per-project.
|
|
100
|
+
- Native-only screens work out of the box; hybrid screens need the vision channel wired (a pluggable
|
|
101
|
+
detector — FH routes to a vision model, does not build one).
|
|
102
|
+
- Korean / IME text entry on Android real devices via `adb input text` is unreliable (measured) — needs
|
|
103
|
+
an IME-broadcast keyboard, not raw input.
|
|
104
|
+
|
|
105
|
+
## Cross-refs
|
|
106
|
+
|
|
107
|
+
`[[fh-live-surface-acceleration]]` (the capability-axis memory) · `multi_model_sidecar_strategy.md`
|
|
108
|
+
(surface routing) · `deep_research_capability_ladder.md` (the sibling "route, don't build" pattern for
|
|
109
|
+
research). The 2026-06-14 frontier survey backing the hybrid-SOTA convergence lives in the private
|
|
110
|
+
companion store (`paper-signals/frontier_computer_use_ui_automation_2026-06-14.md`).
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Measurement-Integrity Checklist — cross-model measurement pre-flight
|
|
2
|
+
|
|
3
|
+
> A cross-model measurement is only trustworthy if its **instrument** is verified first.
|
|
4
|
+
> Measurement integrity is a *precondition*, not a result. Three observed failure modes, each with a
|
|
5
|
+
> concrete countermeasure. Consult this before any FH measurement that compares models (sims, sidecar
|
|
6
|
+
> comparisons, capability-equalizer runs, the-bible model panels, A6-class experiments).
|
|
7
|
+
|
|
8
|
+
This is a **checklist a measurement consults**, not a gate with triggers and not a dispatch surface —
|
|
9
|
+
hence a knowledge doc, the lightest asset that holds it (a harness gets simpler over time). If it ever
|
|
10
|
+
becomes a gate other skills invoke, revisit the weight.
|
|
11
|
+
|
|
12
|
+
## The three failure modes + countermeasures
|
|
13
|
+
|
|
14
|
+
| # | Failure mode (observed) | Countermeasure |
|
|
15
|
+
|---|---|---|
|
|
16
|
+
| 1 | **Silent model fallback** — passing a model *slug* silently resolved to a weaker model (e.g. an `agy` slug fell back to Flash) instead of the intended one. The run *looks* like the named model but isn't. | **Pin the display name, not the slug** (e.g. `"Gemini 3.1 Pro (High)"`, not a bare slug). Confirm the resolved identity, don't assume the slug binds. |
|
|
17
|
+
| 2 | **Non-deterministic borderline verdicts** — contested/borderline cases flip across runs (observed: haiku 4/4 flip; flagship models flip too — flipping is **not** a tier signal). A single draw is noise, not a measurement. | **reps ≥ 3 on any borderline/contested verdict.** A single run on a contested case is inadmissible. Report the flip pattern (STABLE vs FLIP), not just the modal verdict. |
|
|
18
|
+
| 3 | **Generic self-identity probe** — a probe any model passes ("are you working? → OK") proves nothing about *which* model answered. | **Use a discriminating probe** — one that two different models answer *differently*. A generic-pass probe is invalid. The probe is a **pattern, not a fixed string**: a probe that discriminates Opus 4.8 from Sonnet 4.6 today may both-pass a future model generation, so **re-validate the probe each model generation** (same staleness class `memory-hygiene` exists to catch). |
|
|
19
|
+
|
|
20
|
+
## Why these are entangled (and why they matter beyond their own scope)
|
|
21
|
+
|
|
22
|
+
Item #2 (reps≥3) is the discipline that **retracted half the evidence** for the
|
|
23
|
+
`[[feedback_correlated_blindspot_union_over_majority]]` finding — one of its two supporting cases
|
|
24
|
+
turned out to be non-deterministic borderline flipping, not a stable correlated blind spot. So this
|
|
25
|
+
checklist is the **prerequisite** for any "correlated error" claim: you cannot call an error correlated
|
|
26
|
+
(and prescribe union-over-majority) until reps≥3 has distinguished a stable correlated error from a
|
|
27
|
+
single-draw artifact. Item #3 (discriminating probe) **embodies** the judge-robustness /
|
|
28
|
+
mechanical-anchor principle — don't trust self-reported identity, prove it discriminatingly
|
|
29
|
+
([[feedback_judge_robustness_mechanical_anchor]]).
|
|
30
|
+
|
|
31
|
+
## Done When
|
|
32
|
+
|
|
33
|
+
- The checklist enumerates all three failure modes, each with its countermeasure.
|
|
34
|
+
*Check class: mandatory-pass (binary — three items present, each with a countermeasure).*
|
|
35
|
+
- The probe item specifies a **discriminating** test and rejects generic probes.
|
|
36
|
+
*Check class: judged, pair: a probe that two different models both pass must FAIL this check; a
|
|
37
|
+
discriminating one must distinguish them.*
|
|
38
|
+
- Any FH cross-model measurement records which checklist items it ran.
|
|
39
|
+
*Check class: measured (count of items applied) — closes the predict-verify loop for future audit.*
|
|
40
|
+
|
|
41
|
+
## Optional hardening (when a measurement feeds a published / paper claim)
|
|
42
|
+
|
|
43
|
+
Escalate item #1 (display-name pin) and item #3 (identity verification) from prose to a **logged
|
|
44
|
+
mechanical assertion**: the measurement harness records the *verified* model identity it observed, not
|
|
45
|
+
the requested slug. Prose discipline is sufficient for internal dogfooding; a published claim earns the
|
|
46
|
+
mechanical log.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
**Origin** (2026-06-22 harvest-loop): three failure modes observed across the-bible L2 model panel
|
|
51
|
+
(agy slug→Flash silent fallback; reps=3 non-determinism) and prior multi-model sims (generic-probe
|
|
52
|
+
ambiguity). Sister findings: [[feedback_correlated_blindspot_union_over_majority]] (reps≥3 prerequisite),
|
|
53
|
+
[[feedback_judge_robustness_mechanical_anchor]] (discriminating-probe = mechanical anchor),
|
|
54
|
+
[[reference_agy_model_catalog]] (display-name pin — agy slug fallback documented there).
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: meta-harness-engineering-definition
|
|
3
|
+
description: Defines meta harness engineering — the discipline of building systems that build, evaluate, and evolve AI harnesses. Grounds FH's mission in external academic convergence (arXiv 2605.18747, 2604.14228) and maps FH's 6-axis framework to the emerging field taxonomy.
|
|
4
|
+
type: reference
|
|
5
|
+
date: 2026-05-29
|
|
6
|
+
tags: [harness-engineering, meta-harness, definition, frontier, academic-convergence, 6-axis]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Meta Harness Engineering — Definition and FH Positioning
|
|
10
|
+
|
|
11
|
+
## What is a Harness?
|
|
12
|
+
|
|
13
|
+
A harness is the engineering layer that surrounds an AI model and determines how it behaves in practice:
|
|
14
|
+
context injection, tool routing, permission management, memory, output verification, and improvement loops.
|
|
15
|
+
|
|
16
|
+
The model provides reasoning capability. The harness determines whether that capability is reliable, reproducible, and improvable.
|
|
17
|
+
|
|
18
|
+
> VILA-Lab empirical finding (arXiv 2604.14228): analysis of Claude Code v2.1.88 (1,884 files, ~512,000 lines of TypeScript) found that **98.4% is harness infrastructure; 1.6% is AI decision logic**. As foundation models converge in reasoning capability, the engineering harness is the primary differentiator.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## What is Meta Harness Engineering?
|
|
23
|
+
|
|
24
|
+
**Harness engineering**: building a harness for a specific project.
|
|
25
|
+
|
|
26
|
+
**Meta harness engineering**: building a system that:
|
|
27
|
+
1. **Seeds** harnesses for new projects (templates, protocols, onboarding)
|
|
28
|
+
2. **Evaluates** harness quality across projects (diagnosis, quality rubrics, regression detection)
|
|
29
|
+
3. **Evolves** harnesses over time (self-improvement loops, pattern extraction, frontier absorption)
|
|
30
|
+
|
|
31
|
+
The meta layer does not replace the project-level harness — it accelerates, standardizes, and continuously improves it.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Academic Convergence (2026)
|
|
36
|
+
|
|
37
|
+
Two independent research threads converged on the same insight in 2026:
|
|
38
|
+
|
|
39
|
+
### "Code as Agent Harness" (arXiv 2605.18747)
|
|
40
|
+
**Authors**: Xuying Ning, Katherine Tieu, Dongqi Fu, + 39 collaborators (May 2026)
|
|
41
|
+
|
|
42
|
+
> "Code has evolved from being an output of LLMs to serving as the basis for agent infrastructure."
|
|
43
|
+
|
|
44
|
+
Proposed three-layer harness taxonomy:
|
|
45
|
+
|
|
46
|
+
| Academic Layer | Description |
|
|
47
|
+
|---|---|
|
|
48
|
+
| **Harness interface** | Connecting agents to reasoning environments |
|
|
49
|
+
| **Harness mechanisms** | Planning, tool use, state management |
|
|
50
|
+
| **Scale** | Single → multi-agent coordination |
|
|
51
|
+
|
|
52
|
+
### FH 6-Axis Framework Mapping
|
|
53
|
+
|
|
54
|
+
| Academic Layer | FH Equivalent | Assets |
|
|
55
|
+
|---|---|---|
|
|
56
|
+
| Harness interface | Context injection layer | `CLAUDE.md` · `.claude/rules/*.md` · `MEMORY.md` |
|
|
57
|
+
| Harness mechanisms | Skill bus | `verify-bidirectional` · `steel-quench` · `phantom-quench` · `agent-composer` |
|
|
58
|
+
| Scale | Multi-agent dispatch | Agent View · `context-bridge-dispatch` · `agent-composer` parallel dispatch |
|
|
59
|
+
| *(meta layer, not in taxonomy)* | Harness evolution | `harvest-loop` · `harness-doctor` · `frontier-digest` · `prompt-regression` |
|
|
60
|
+
|
|
61
|
+
The academic taxonomy covers the **static structure** of a harness. FH adds the **dynamic evolution layer** — the mechanism by which the harness improves itself over time.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## FH's Differentiating Position
|
|
66
|
+
|
|
67
|
+
Three contemporary approaches to harness engineering, compared:
|
|
68
|
+
|
|
69
|
+
| Approach | Representative | Axis | Human role |
|
|
70
|
+
|---|---|---|---|
|
|
71
|
+
| **Automation-maximalist** | Sylph.AI ("The Last Harness You'll Ever Build", arXiv 2604.21003) | Fully automated adversarial loops — minimize human touch | Minimal (approve outputs) |
|
|
72
|
+
| **Automation-first** | harness-evolver (raphaelchristi) | Outer-loop field observation → adversarial critique → integration → verification | Light (curate exceptions) |
|
|
73
|
+
| **Human-in-the-loop curation** | **forge-harness** | Knowledge accumulation + AI-assisted evolution + mandatory human gate on PRs | Active (all merges require approval) |
|
|
74
|
+
|
|
75
|
+
FH's position: **human judgment is not a cost to minimize — it is the quality gate that prevents harness drift**. Automation handles pattern detection, drafting, and proposal; humans decide what enters the harness.
|
|
76
|
+
|
|
77
|
+
> **Principle (field harness)**: "A good harness gets simpler over time. If it's getting more complex, something is wrong."
|
|
78
|
+
> **Principle (meta-harness)**: Optimize, not necessarily simplify — complexity is justified when it earns its scope. Red flags: orphaned skills, redundant overlap, decorative structure (complexity that exists but doesn't change behavior).
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## The 6-Axis Framework as Practice Layer
|
|
83
|
+
|
|
84
|
+
The 6-axis framework (`harness_6axis_framework.md`) is FH's operational implementation of meta harness engineering:
|
|
85
|
+
|
|
86
|
+
| Axis | Name | What it governs |
|
|
87
|
+
|---|---|---|
|
|
88
|
+
| 1 | **Structure** | File layout, naming conventions, required assets |
|
|
89
|
+
| 2 | **Context** | What information the AI sees at session start |
|
|
90
|
+
| 3 | **Plan** | How work is decomposed and tracked |
|
|
91
|
+
| 4 | **Execute** | How tasks are carried out (inline / agent dispatch / skill) |
|
|
92
|
+
| 5 | **Verify** | How outputs are validated (regression, bidirectional, simulation) |
|
|
93
|
+
| 6 | **Improve** | How the harness evolves (harvest-loop, frontier-digest, compounding) |
|
|
94
|
+
|
|
95
|
+
Axis 6 is the meta layer within the framework — the harness improves itself through structured cadence.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## External Evidence Base
|
|
100
|
+
|
|
101
|
+
| Source | Finding | FH Relevance |
|
|
102
|
+
|---|---|---|
|
|
103
|
+
| VILA-Lab (arXiv 2604.14228) | 98.4% of Claude Code = harness infrastructure | Validates that harness engineering is the primary differentiator, not model capability |
|
|
104
|
+
| Ning et al. (arXiv 2605.18747) | Code = agent harness substrate; 3-layer taxonomy | FH maps to all 3 layers + adds evolution layer |
|
|
105
|
+
| Seong / Sylph.AI (arXiv 2604.21003) | "Terminal harness" — convergence point exists | Sister asset: automation-maximalist vs FH human-in-loop; titles echo simplification principle |
|
|
106
|
+
| harness-evolver (raphaelchristi) | Outer-loop field observation → adversarial critique | Sister asset: automation-first complement to FH knowledge-accumulation-first |
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Related FH Assets
|
|
111
|
+
|
|
112
|
+
- `harness_6axis_framework.md` — The operational framework
|
|
113
|
+
- `hub_compounding_loop.md` — Weekly/monthly/quarterly improvement cadence (Axis 6)
|
|
114
|
+
- `skill_quality_rubric.md` — Quality standard for skill assets
|
|
115
|
+
- `return_path_gate.md` — Closed-loop skill chain pattern (structural)
|
|
116
|
+
- `hub_maturity_roadmap.md` — Phase I→II→III evolution path
|