fak

module
v0.51.1-0...-1140fac Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 6, 2026 License: Apache-2.0

README

fak logo

fak — the fast local runtime for coding agents

fak is an agent runtime: one binary puts a fast, cache-accelerated boundary between your coding agent and every tool call.

In short: run coding agents locally with workflow batching and cache reuse, protected by a default-deny capability floor (blocking unauthorized actions).

Try fak

Run the offline proof with no key, model, or GPU:

go build -o fak ./cmd/fak
./fak agent --offline  # -> task completed (booked)

The poisoned result and destructive operation are blocked; safe tasks complete normally.

Or wrap the agent you already run with one command. In this example, fak forwards Codex subscription credentials with no API key required and blocks tools outside the allowed policy. The capability floor stops unsafe calls without breaking the task:

fak guard -- codex

The agent keeps working inside that boundary. See the interactive showcase for the guided tour.

Latest hardware results — 2026-09-05

The front page shows one row per supported hardware family. Latest means the newest committed performance receipt for that platform, not the newest code change. A row can be historical or held when no newer quality-complete measurement exists. The table reports measured throughput, for example 7.61 decode tok/s on Mac or 111.9 tok/s on Hopper H100, with claim boundaries beside each result and links to its receipt.

Platform Latest witnessed result Status Details
Mac Qwen3.8-27B Q4_K_M on an Apple M3 Pro: 7.61 decode tok/s (+3.1% vs llama.cpp 7.38, MLX 8.07) and 12.6 ms prefix TTFT, observed 2026-09-03. Verified matched-envelope single-stream decode leads llama.cpp Metal; RadixAttention prefix caching eliminates repeat prefill. Mac result
AMD Qwen3.6-27B on an RX 7600: the measured pure-fak microbench reached 1.15–1.24 decode tok/s versus 0.99 for the local llama.cpp Vulkan baseline, observed 2026-06-19. Witnessed in that narrow microbench; not a broad quality or full-model parity claim. Qwen3.8 awaits a comparable AMD receipt. AMD result
NVIDIA Hopper H100 Q8_0 decode reached 111.9 tok/s (+17.4% vs f32); live A100 Qwen3.8-27B prefix reuse achieved 4.84× TTFT speedup, observed 2026-09-05. Witnessed on physical GCP H100 (a3-highgpu-1g) & A100; matched Q8 device GEMV and 50-agent concurrency grid (91/91 ok). NVIDIA result

Read the status column before comparing rates: results compare matched envelopes against explicit baseline runtimes on identical hardware.

Use the benchmark index for hardware history and model-specific results. Use BENCHMARK-AUTHORITY.md for claim boundaries and canonical receipts. For newcomer Mac guidance and head-to-head Apple Silicon Metal measurements, see the Mac agent UI guide and the three-way Mac benchmark.

Open-source memory overflow landscape

Most LLM serving engines treat memory overflow as a slow host-memory fallback with multiple CPU bounce copies. fak implements hardware-native, zero-copy peer-to-peer DMA directly between NVMe storage and GPU VRAM:

Framework Storage / Offload DMA Path Host DRAM Copies Predictive Prefetching Hybrid Attention + GDN Linear State Target Workload
fak (native) GPU Direct NVMe P2PDMA (BaM architecture) 0 (strictly zero) Yes (asynchronous pipeline) Yes (bit-exact full + linear) Interactive, real-time agent coding loops
vLLM Host DRAM block swapping (swap_blocks) 2–3 copies No (reactive) No (Transformer KV only) High-throughput data-center batching
DeepSpeed ZeRO Async CPU aio offload via pinned DRAM buffers 2 copies Coarse (layer-level weights) No (static forward layers only) Multi-node distributed training / inference
FlexGen 3-tier offload (GPU ↔ CPU ↔ Disk) 2–3 copies Zigzag batch schedule No (attention matrices only) Extreme high-latency batch throughput
TensorRT-LLM NVIDIA GPUDirect Storage (libcufile.so) 0 (NVIDIA only) Yes (NVIDIA GDS) Partial (Transformer KV) NVIDIA enterprise data centers only
llama.cpp OS mmap demand paging & CPU fallback 2 copies (OS cache) No (kernel readahead) Basic (CPU fallback layers) Local desktop CPU/GPU inference

Why run coding agents on fak

  • Workflow batching and cache reuse: Multi-agent coding loops reuse prompt context across turns, achieving 4.1× vs tuned baselines with 86.7% cache hit rates. Instead of re-reading codebases on every turn, fak keeps shared prefixes hot and trims stale context.
  • Zero-copy GPU Direct storage overflow: Run models far exceeding physical GPU VRAM without CPU memory thrashing. Built on a BaM-style accelerator storage architecture, fak maps NVMe submission queues directly in GPU VRAM and streams paged KV caches and hybrid linear attention states over peer-to-peer PCIe DMA without host DRAM bounce buffering (StagingCopyCount == 0). See the GPU Direct overflow specification.
  • Local execution on your hardware: Run models directly with native inference across Apple Silicon, AMD, and NVIDIA. Cut per-token API bills and keep your code private on your own machine.
  • Default-deny capability floor: Protect your workspace from unintended terminal commands or file edits. Every tool call is checked against a default-deny (block everything unless allowed) policy before it runs. Drop-in support wraps existing agents like Claude Code, Codex, Aider, and Cursor with zero rewrites.

Native inference provides direct execution on local silicon, with external engines supported as an explicit reference; see the native inference goal for details.

Default priorities & operating modes

fak is organized around a focused four-tier default priority hierarchy:

  1. fak all in one (serving and harness + memory — the "one touch" thing): The primary focus — a single-binary "one touch" deployment (fak up) bundling model serving, agent harness governance, and persistent memory. Verified on Terminal-Bench 4: 100.0% (5/5) solve rate vs OpenCode + llama.cpp 60.0% (3/5), reducing prompt tokens by 83.5% through in-kernel vDSO context caching (fak bench tb4).
  2. fak serving only: High-performance model inference runtime (fak serve), disaggregated gateway, KV-cache/context MMU acceleration, and native model execution.
  3. fak harness only: Standalone agent harness and governance substrate (fak guard), default-deny capability floor, and tool adjudication over external models.
  4. other things: Standalone utilities, peripheral tools, benchmarks, and off-spine extensions.

Install and configure

# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/anthony-chaudhary/fak/main/install.sh | sh

# Any host with Go 1.26+
go install github.com/anthony-chaudhary/fak/cmd/fak@latest

# Inspect the shipped profiles
fak agent profiles

Tune agent execution with built-in work and output profiles that cut token waste and resist unnecessary dependencies:

fak manage --output-profile caveman:medium --work-profile ponytail:high -- codex \
  "Remove the duplicate cache without adding a dependency."

Balanced defaults are ponytail:medium for work discipline and caveman:medium for concise responses. See work profiles, response profiles, or the harness guide to build a named agent around the same boundary.

Going deeper

If you want to… Start here
Check what is shipped, limited, or planned Status · claims · feature matrix
Browse performance evidence Mac · AMD · NVIDIA · all benchmarks
Connect another agent or model Codex · Claude Code · all integrations
Understand the runtime Architecture · capability map · CLI reference
Learn in prerequisite order Start here · learning path · documentation index
Build on fak Go API · harness contract · contributing

Apache-2.0 licensed.

Directories

Path Synopsis
cmd
a2ademo command
Command a2ademo is a no-key, no-model proof of fak's in-kernel agent-to-agent message channel (internal/a2achan): one capability-floored, Ref-backed mailbox delivering an addressed value from one agent to another — adjudicated by the SAME default-deny floor that gates a tool call.
Command a2ademo is a no-key, no-model proof of fak's in-kernel agent-to-agent message channel (internal/a2achan): one capability-floored, Ref-backed mailbox delivering an addressed value from one agent to another — adjudicated by the SAME default-deny floor that gates a tool call.
agentbenchdemo command
Command agentbenchdemo is the performance micro-benchmark of fak's agentic spine: how much does the kernel's per-tool-call adjudication actually COST? It folds a fixed plan of tool calls through the REAL kernel (the same internal/agentdemo path cmd/timewolfdemo and `fak preflight` use — adjudicator.Default.SetPolicy + a live kernel.Fold per call), times the loop, and reports the per-call adjudication cost — the "self-tax" the safety floor adds to an agent's critical path.
Command agentbenchdemo is the performance micro-benchmark of fak's agentic spine: how much does the kernel's per-tool-call adjudication actually COST? It folds a fixed plan of tool calls through the REAL kernel (the same internal/agentdemo path cmd/timewolfdemo and `fak preflight` use — adjudicator.Default.SetPolicy + a live kernel.Fold per call), times the loop, and reports the per-call adjudication cost — the "self-tax" the safety floor adds to an agent's critical path.
agentdojoprobe command
Command agentdojoprobe scores ATTACKER-PROPOSED prompt-injection attacks through the real fak red-team stack.
Command agentdojoprobe scores ATTACKER-PROPOSED prompt-injection attacks through the real fak red-team stack.
agentdojoredteam command
Command agentdojoredteam runs the dynamic AgentDojo-style red-team battery (internal/agentdojo) against the stacked defense and prints the PER-ATTACK verdict stream, then folds every outcome into a frozen harvest LabelRow corpus.
Command agentdojoredteam runs the dynamic AgentDojo-style red-team battery (internal/agentdojo) against the stacked defense and prints the PER-ATTACK verdict stream, then folds every outcome into a frozen harvest LabelRow corpus.
agenticbench command
Command agenticbench emits the #868 parent rollup over committed agentic benchmark artifacts.
Command agenticbench emits the #868 parent rollup over committed agentic benchmark artifacts.
archreportdemo command
Command archreportdemo demonstrates fak's enforced architecture graph without a key, network, Git checkout, or mutable repository state.
Command archreportdemo demonstrates fak's enforced architecture graph without a key, network, Git checkout, or mutable repository state.
attnsnrsi command
Command attnsnrsi closes the attention-S/N RSI loop in SHADOW (#867).
Command attnsnrsi closes the attention-S/N RSI loop in SHADOW (#867).
auditreceipt command
batchbench command
Command batchbench measures the AGGREGATE decode throughput of the multi-user batched decode (internal/model.BatchSession) as a function of batch size B — the "continuous batching" / multi-user serving regime MODEL-BASELINE-RESULTS.md scoped out as "vLLM's claim, not fak's".
Command batchbench measures the AGGREGATE decode throughput of the multi-user batched decode (internal/model.BatchSession) as a function of batch size B — the "continuous batching" / multi-user serving regime MODEL-BASELINE-RESULTS.md scoped out as "vLLM's claim, not fak's".
benchscore command
browseractionbench command
Command browseractionbench runs a browser/computer-use action-mediation smoke through fak adjudication.
Command browseractionbench runs a browser/computer-use action-mediation smoke through fak adjudication.
cachedemo command
Command cachedemo renders the multi-turn shared-cache-savings demo: it reads the durable, WITNESSED gateway-usage and cache-savings ledgers and tells the per-turn story of how a single fak-guarded coding session earns cache value across turns — the provider prompt cache reading a stable prefix back, AND fak's own authored slice (per-fire compaction trim + tool prune) holding the re-sent window inside budget.
Command cachedemo renders the multi-turn shared-cache-savings demo: it reads the durable, WITNESSED gateway-usage and cache-savings ledgers and tells the per-turn story of how a single fak-guarded coding session earns cache value across turns — the provider prompt cache reading a stable prefix back, AND fak's own authored slice (per-fire compaction trim + tool prune) holding the re-sent window inside budget.
causalbench command
Command causalbench is the end-to-end demonstrator for fak's CAUSAL invalidation-on-external-write: a tool RESULT cached under an external world-state witness (a git commit / blob hash / etag) is evicted byte-exact — and only it — the moment a later external write REFUTES that witness, while every sibling cached under an unrefuted witness stays warm.
Command causalbench is the end-to-end demonstrator for fak's CAUSAL invalidation-on-external-write: a tool RESULT cached under an external world-state witness (a git commit / blob hash / etag) is evicted byte-exact — and only it — the moment a later external write REFUTES that witness, while every sibling cached under an unrefuted witness stays warm.
cfgprobe command
Command cfgprobe prints the MoE/dense FFN config axes a GGUF resolves to, so a dimension bug (e.g.
Command cfgprobe prints the MoE/dense FFN config axes a GGUF resolves to, so a dimension bug (e.g.
coalescebench command
Command coalescebench projects the aggregate net-tok/s(B) curve for an SSD-offloaded MoE served to B concurrent agents, by driving the deterministic cross-agent expert-cache coalescing simulator (deepseekv4moe.SimulateExpertCacheBatch, #5244) over a SYNTHETIC GLM-5.2-shaped router and applying the §2 roofline of docs/notes/MOE-SSD-MULTI-AGENT-NET-TOKS-2026-07-18.md:
Command coalescebench projects the aggregate net-tok/s(B) curve for an SSD-offloaded MoE served to B concurrent agents, by driving the deterministic cross-agent expert-cache coalescing simulator (deepseekv4moe.SimulateExpertCacheBatch, #5244) over a SYNTHETIC GLM-5.2-shaped router and applying the §2 roofline of docs/notes/MOE-SSD-MULTI-AGENT-NET-TOKS-2026-07-18.md:
codesearch command
Command codesearch is a standalone front door to the epic #3434 code-intelligence engine (internal/codesearch): trigram regex/literal search, AST shape queries, call-graph traversal, and RRF-fused feature retrieval over a Go tree.
Command codesearch is a standalone front door to the epic #3434 code-intelligence engine (internal/codesearch): trigram regex/literal search, AST shape queries, call-graph traversal, and RRF-fused feature retrieval over a Go tree.
conceptbench command
Command conceptbench is the runnable wrapper for the FAK-concept fidelity benchmark (epic #2721, issue #2740): it runs a set of models against a set of fak-concept tasks (stamp/lane/refusal/verdict/handoff/witness) and emits a fak.conceptbench.report.v1 carrying a per-(model x concept) pass@1 leaderboard behind the #868 result-claim honesty gate.
Command conceptbench is the runnable wrapper for the FAK-concept fidelity benchmark (epic #2721, issue #2740): it runs a set of models against a set of fak-concept tasks (stamp/lane/refusal/verdict/handoff/witness) and emits a fak.conceptbench.report.v1 carrying a per-(model x concept) pass@1 leaderboard behind the #868 result-claim honesty gate.
ctxbench command
Command ctxbench runs the fak security gates over a corpus of tool calls and tool results.
Command ctxbench runs the fak security gates over a corpus of tool calls and tool results.
ctxdemo command
Command ctxdemo is the live, on-box demo of fak's value in the MULTI-AGENT, MULTI-TURN, LONG-CONTEXT regime — the one where the context CHANGES every turn as tool calls land heterogeneous, variable-sized results.
Command ctxdemo is the live, on-box demo of fak's value in the MULTI-AGENT, MULTI-TURN, LONG-CONTEXT regime — the one where the context CHANGES every turn as tool calls land heterogeneous, variable-sized results.
ctxplanbench command
Command ctxplanbench measures the ctxplan planned VIEW over REAL Claude Code session transcripts — the empirical counterpart to internal/ctxplan/scaling.go's synthetic Params model (issue #559).
Command ctxplanbench measures the ctxplan planned VIEW over REAL Claude Code session transcripts — the empirical counterpart to internal/ctxplan/scaling.go's synthetic Params model (issue #559).
ctxplandemo command
Command ctxplandemo is the runnable demonstrator for the context PLANNER: it treats the current turn as an O(1) materialized VIEW over a lossless history store, and shows the three things that make that more than a slogan —
Command ctxplandemo is the runnable demonstrator for the context PLANNER: it treats the current turn as an O(1) materialized VIEW over a lossless history store, and shows the three things that make that more than a slogan —
customlintfixture command
Command customlintfixture is the hostile-behavior fixture for the custom-linter ABI.
Command customlintfixture is the hostile-behavior fixture for the custom-linter ABI.
cxlpooldemo command
Command cxlpooldemo is a no-model, no-GPU proof of the value a SWITCH-POOLED, multi-host shared memory tier (a CXL.mem / CXL-switch pool) adds to fak's hardware-aware cache once a KV cache is shared across a FLEET of tenants — the multi-tenant counterpart of cmd/hwcachedemo's single-stream demote-not-evict proof.
Command cxlpooldemo is a no-model, no-GPU proof of the value a SWITCH-POOLED, multi-host shared memory tier (a CXL.mem / CXL-switch pool) adds to fak's hardware-aware cache once a KV cache is shared across a FLEET of tenants — the multi-tenant counterpart of cmd/hwcachedemo's single-stream demote-not-evict proof.
dashboarddemo command
deletioncert command
Command deletioncert is the end-to-end demonstrator for fak's provable-deletion receipt.
Command deletioncert is the end-to-end demonstrator for fak's provable-deletion receipt.
demorace command
Command demorace is the live, on-box demo of fak's value point: REUSE.
Command demorace is the live, on-box demo of fak's value point: REUSE.
devexmeter command
devfresh command
diagtok command
Command diagtok is a throwaway diagnostic: it loads a GGUF via the same path simpledemo uses, then (1) round-trips a known string through the embedded tokenizer and (2) greedily decodes a ChatML prompt while printing each raw token id next to its decode.
Command diagtok is a throwaway diagnostic: it loads a GGUF via the same path simpledemo uses, then (1) round-trips a known string through the embedded tokenizer and (2) greedily decodes a ChatML prompt while printing each raw token id next to its decode.
dispatchworker command
guard.go — front each dispatch worker with the kernel (`fak guard`), a Go port of the dogfood-guard family in tools/dispatch_worker.py.
guard.go — front each dispatch worker with the kernel (`fak guard`), a Go port of the dogfood-guard family in tools/dispatch_worker.py.
dojorsi command
Command dojorsi is the dojo-RSI loop's WORKTREE ARM — Phase 2 of docs/fak/dojo-rsi-loop.md (issue #1024).
Command dojorsi is the dojo-RSI loop's WORKTREE ARM — Phase 2 of docs/fak/dojo-rsi-loop.md (issue #1024).
dropindemo command
Command dropindemo is the splashy, on-box demo of fak's DISTRIBUTION story — the "drop-in" entry point.
Command dropindemo is the splashy, on-box demo of fak's DISTRIBUTION story — the "drop-in" entry point.
extseamsdemo command
Command extseamsdemo makes fak's extension choices and trust boundaries inspectable without loading third-party code.
Command extseamsdemo makes fak's extension choices and trust boundaries inspectable without loading third-party code.
fabricmapdemo command
fabricmapdemo is a runnable proof of direction-agnostic, composable data movement.
fabricmapdemo is a runnable proof of direction-agnostic, composable data movement.
fak command
`fak codex-resume` runs a fresh headless Codex continuation to the rollout's typed terminal, even when the upstream process fails to exit (#6414).
`fak codex-resume` runs a fresh headless Codex continuation to the rollout's typed terminal, even when the upstream process fails to exit (#6414).
fak-deepswe-runner command
Command fak-deepswe-runner emits deterministic DeepSWE adapter fixtures for SWE-bench runner-contract tests.
Command fak-deepswe-runner emits deterministic DeepSWE adapter fixtures for SWE-bench runner-contract tests.
fak-dev command
Package windowsdevsetup installs and verifies the Windows Security exceptions needed by fak's native development loop.
Package windowsdevsetup installs and verifies the Windows Security exceptions needed by fak's native development loop.
fak-dos command
Package main implements the public fak adapter for writable DOS queue entries.
Package main implements the public fak adapter for writable DOS queue entries.
fak-selfupdate command
fakc command
Command fakc is the one-word Codex launcher for fak.
Command fakc is the one-word Codex launcher for fak.
fakchat command
Command fakchat runs an end-to-end chat completion with fak's OWN in-kernel engine — no llama-server, no external proxy.
Command fakchat runs an end-to-end chat completion with fak's OWN in-kernel engine — no llama-server, no external proxy.
fanbench command
Command fanbench runs the ONE-MASTER-GOAL → N-SUBAGENT fan-out sweep — the orchestrator-worker topology (one lead decomposes a goal, spawns N sub-agents, folds their results) swept from N=1 to N=1000+, the regime no public benchmark maps (see experiments/fanout/RESEARCH-BRIEF-fanout-2026-06-17.md).
Command fanbench runs the ONE-MASTER-GOAL → N-SUBAGENT fan-out sweep — the orchestrator-worker topology (one lead decomposes a goal, spawns N sub-agents, folds their results) swept from N=1 to N=1000+, the regime no public benchmark maps (see experiments/fanout/RESEARCH-BRIEF-fanout-2026-06-17.md).
fanoutdemo command
Command fanoutdemo shows the issue fan-out planner (internal/issuefanout, the `fak issue fanout` verb) working end to end for a stranger — one deterministic command, no key, no network, no GPU, no model.
Command fanoutdemo shows the issue fan-out planner (internal/issuefanout, the `fak issue fanout` verb) working end to end for a stranger — one deterministic command, no key, no network, no GPU, no model.
fanrun command
Command fanrun runs the MEASURED one-master-goal → N-subagent fan-out — N actual agent.RunArm sessions, each a real loop through a real kernel with the vDSO fast path on and real tool dispatch, all decomposing ONE shared research goal, WALL-CLOCKED — swept from N=1 to N=1024.
Command fanrun runs the MEASURED one-master-goal → N-subagent fan-out — N actual agent.RunArm sessions, each a real loop through a real kernel with the vDSO fast path on and real tool dispatch, all decomposing ONE shared research goal, WALL-CLOCKED — swept from N=1 to N=1024.
fleetbench command
Command fleetbench runs the 2-D turn-tax sweep — turns-per-agent (T) × fleet size (A) — over the REAL kernel and writes the surface as JSON + CSV for curve fitting.
Command fleetbench runs the 2-D turn-tax sweep — turns-per-agent (T) × fleet size (A) — over the REAL kernel and writes the surface as JSON + CSV for curve fitting.
fleetctl command
Command fleetctl is the public, transport-agnostic control surface for a fleet of boxes — GPU servers, worker nodes — an operator drives over the private Slack control-bridge.
Command fleetctl is the public, transport-agnostic control surface for a fleet of boxes — GPU servers, worker nodes — an operator drives over the private Slack control-bridge.
fleetserve command
Command fleetserve measures the CROSS-AGENT SHARED-PREFIX fleet workload — the regime where fak's kernel-owned KV cache structurally beats a per-slot serving engine (llama.cpp) by more than 2×, not by a faster kernel but by NOT REDOING WORK.
Command fleetserve measures the CROSS-AGENT SHARED-PREFIX fleet workload — the regime where fak's kernel-owned KV cache structurally beats a per-slot serving engine (llama.cpp) by more than 2×, not by a faster kernel but by NOT REDOING WORK.
framevisibility command
gemma4diag command
Command gemma4diag loads a gemma4 GGUF ONCE and sweeps the uncertain forward axes (softmax scale 1.0 vs 1/sqrt(d), rope_freqs on/off, decoder-norm plain vs (1+w)), printing the top-k next-token predictions for a fixed prompt under each.
Command gemma4diag loads a gemma4 GGUF ONCE and sweeps the uncertain forward axes (softmax scale 1.0 vs 1/sqrt(d), rope_freqs on/off, decoder-norm plain vs (1+w)), printing the top-k next-token predictions for a fixed prompt under each.
ggufmeta command
Command ggufmeta prints the metadata header of a GGUF checkpoint.
Command ggufmeta prints the metadata header of a GGUF checkpoint.
ggufprobe command
Command ggufprobe dumps a GGUF file's architecture using fak's own internal/ggufload parser — no llama.cpp.
Command ggufprobe dumps a GGUF file's architecture using fak's own internal/ggufload parser — no llama.cpp.
glmcfgdiag command
Command glmcfgdiag is a cheap, no-reload GLM-5.2 config witness: it opens a GGUF shard's metadata, runs ggufload's real Config() derivation, and prints the MLA per-head dims (QKNopeHeadDim / VHeadDim) plus the latent ranks.
Command glmcfgdiag is a cheap, no-reload GLM-5.2 config witness: it opens a GGUF shard's metadata, runs ggufload's real Config() derivation, and prints the MLA per-head dims (QKNopeHeadDim / VHeadDim) plus the latent ranks.
glmdsatput command
Command glmdsatput measures fak's NATIVE GLM-5.2 (glm_moe_dsa) decode throughput on a real compute backend (e.g.
Command glmdsatput measures fak's NATIVE GLM-5.2 (glm_moe_dsa) decode throughput on a real compute backend (e.g.
gpucheck command
Command gpucheck is the real-model correctness witness for the GPU backend: it loads a HuggingFace safetensors checkpoint (e.g.
Command gpucheck is the real-model correctness witness for the GPU backend: it loads a HuggingFace safetensors checkpoint (e.g.
guarddemo command
Command guarddemo is the live, on-box demo of fak's SAFETY FLOOR — the moat — shown as a TRUE side-by-side: the SAME adversarial tool-call trace replayed down two columns at once, WITHOUT fak (left) and WITH fak (right), so the divergence lands in one glance.
Command guarddemo is the live, on-box demo of fak's SAFETY FLOOR — the moat — shown as a TRUE side-by-side: the SAME adversarial tool-call trace replayed down two columns at once, WITHOUT fak (left) and WITH fak (right), so the divergence lands in one glance.
harnesswebdemo command
hwcachedemo command
Command hwcachedemo is a no-model, no-GPU proof that fak's cache is hardware-aware: it shows the residency-tier ladder with each tier's physical character, which tiers can be shared ZERO-COPY, and — the headline — how the placement policy DEMOTES a hot KV prefix to CXL far memory under pressure instead of EVICTING it and paying a full re-prefill later.
Command hwcachedemo is a no-model, no-GPU proof that fak's cache is hardware-aware: it shows the residency-tier ladder with each tier's physical character, which tiers can be shared ZERO-COPY, and — the headline — how the placement policy DEMOTES a hot KV prefix to CXL far memory under pressure instead of EVICTING it and paying a full re-prefill later.
instructiondemo command
internal/democapture
Package democapture compares a demo's real selfcheck bytes with the output published in its adopter-facing EXAMPLE-OUTPUT.md.
Package democapture compares a demo's real selfcheck bytes with the output published in its adopter-facing EXAMPLE-OUTPUT.md.
kpiprobe command
Command kpiprobe prints the RSI loop's demo KPI — the deterministic LRU hit-rate (internal/rsiloop.HitRate) over a fixed reference trace — as a single `KPI=<float>` line the loop's worktree Measurer parses.
Command kpiprobe prints the RSI loop's demo KPI — the deterministic LRU hit-rate (internal/rsiloop.HitRate) over a fixed reference trace — as a single `KPI=<float>` line the loop's worktree Measurer parses.
kvdepth command
Command kvdepth measures reusable prefix depth without collapsing the result into a single cache-hit scalar.
Command kvdepth measures reusable prefix depth without collapsing the result into a single cache-hit scalar.
lensviz command
Command lensviz is a visual next-token debugger for fak's own in-kernel engine.
Command lensviz is a visual next-token debugger for fak's own in-kernel engine.
livecodebench command
loadgen command
loadgen drives an OpenAI-compatible /v1/chat/completions endpoint at a sweep of concurrency levels and reports throughput.
loadgen drives an OpenAI-compatible /v1/chat/completions endpoint at a sweep of concurrency levels and reports throughput.
localappcert command
localappcert validates a captured Mac local-app certification matrix.
localappcert validates a captured Mac local-app certification matrix.
localapphelper command
longctxbench command
Command longctxbench renders the EXACT, contention-free work floor for the ULTRA-LONG-CONTEXT regime (per-agent context > 100k tokens) — the proof that the fused agent kernel's reread-elimination win holds (and grows) where it matters most, computed as closed-form arithmetic from the session shape and the model geometry.
Command longctxbench renders the EXACT, contention-free work floor for the ULTRA-LONG-CONTEXT regime (per-agent context > 100k tokens) — the proof that the fused agent kernel's reread-elimination win holds (and grows) where it matters most, computed as closed-form arithmetic from the session shape and the model geometry.
loophealth command
Command loophealth is the checking layer for fleet's RSI self-improve loop (#382).
Command loophealth is the checking layer for fleet's RSI self-improve loop (#382).
managedinventory command
Command managedinventory generates and checks the managed-agent portability inventory without reading any live agent home or credential store.
Command managedinventory generates and checks the managed-agent portability inventory without reading any live agent home or credential store.
marketdemo command
memqdemo command
Command memqdemo is a no-model, deterministic walkthrough of the memq memory- operation algebra: the substrate that lets an agent author its OWN memory strategy (render / clean / compact / dream / a novel one) instead of the kernel hardcoding a single compaction path.
Command memqdemo is a no-model, deterministic walkthrough of the memq memory- operation algebra: the substrate that lets an agent author its OWN memory strategy (render / clean / compact / dream / a novel one) instead of the kernel hardcoding a single compaction path.
microcachedemo command
microcontextdemo command
Command microcontextdemo is the minimal runnable spine for the micro-context research program.
Command microcontextdemo is the minimal runnable spine for the micro-context research program.
microfleetdemo command
modelbench command
Command modelbench measures the in-kernel pure-Go forward pass latency so the fusion lane has a HONEST throughput baseline to set against the next-best ways to run the same model (HF transformers; see bench_hf.py for the witness side).
Command modelbench measures the in-kernel pure-Go forward pass latency so the fusion lane has a HONEST throughput baseline to set against the next-best ways to run the same model (HF transformers; see bench_hf.py for the witness side).
modelperfobs command
modelprof command
Command modelprof is the in-kernel forward pass inspecting ITSELF: it runs the modular bottleneck profiler (internal/model/profile.go) over a real decode and a real prefill, plus an uninstrumented Session.Step decode measurement.
Command modelprof is the in-kernel forward pass inspecting ITSELF: it runs the modular bottleneck profiler (internal/model/profile.go) over a real decode and a real prefill, plus an uninstrumented Session.Step decode measurement.
negframescan command
Command negframescan is a throwaway harness (NOT shipped) that exercises internal/negframe against real repo prose while cmd/fak is wedged by unrelated in-progress breakage elsewhere in the tree.
Command negframescan is a throwaway harness (NOT shipped) that exercises internal/negframe against real repo prose while cmd/fak is wedged by unrelated in-progress breakage elsewhere in the tree.
o1proof1b command
Command o1proof1b witnesses the ctxplan->kvmmu O(1) residency bridge (CLAIMS.md:141, issue #550) at a scale close to a real ~1.5B-parameter model, entirely on this machine: no network, no GPU, no HuggingFace export.
Command o1proof1b witnesses the ctxplan->kvmmu O(1) residency bridge (CLAIMS.md:141, issue #550) at a scale close to a real ~1.5B-parameter model, entirely on this machine: no network, no GPU, no HuggingFace export.
pagescheck command
paritybench command
Command paritybench assembles the CROSS-MODEL parity artifact: it ingests the live fak-agent A/B reports for a ladder of LOCAL models (produced by tools/run_local_model.sh via the OpenAI-compatible shim) plus the committed FRONTIER reference cards (hosted Claude Haiku/Sonnet, measured + graded on the same frozen task), scores every card on the three never-blended axes (capability / safety / cost), and emits the parity table.
Command paritybench assembles the CROSS-MODEL parity artifact: it ingests the live fak-agent A/B reports for a ladder of LOCAL models (produced by tools/run_local_model.sh via the OpenAI-compatible shim) plus the committed FRONTIER reference cards (hosted Claude Haiku/Sonnet, measured + graded on the same frozen task), scores every card on the three never-blended axes (capability / safety / cost), and emits the parity table.
perfscout command
Command perfscout searches, scores, and inventories fresh, performance-specific open-source repositories running and proving Qwen 3.8 Flash and GLM 5.3 Flash models.
Command perfscout searches, scores, and inventories fresh, performance-specific open-source repositories running and proving Qwen 3.8 Flash and GLM 5.3 Flash models.
pipelinegen command
Command pipelinegen runs fak's NATIVE engine generating tokens across pipeline-parallel stages — the runnable form of the cross-device transport contract (internal/model/pipeline.go).
Command pipelinegen runs fak's NATIVE engine generating tokens across pipeline-parallel stages — the runnable form of the cross-device transport contract (internal/model/pipeline.go).
poisonedmcpdemo command
Command poisonedmcpdemo is the runnable A/B for issue #573: it proves fak walls a tool-poisoning MCP server off the model by STRUCTURE, with no model/key/network.
Command poisonedmcpdemo is the runnable A/B for issue #573: it proves fak walls a tool-poisoning MCP server off the model by STRUCTURE, with no model/key/network.
polymodelbench command
bench.go is the measured-numbers half of polymodelbench — the runnable artifact for issue #535 ("bench(polymodel): measured numbers for the poly-model lane").
bench.go is the measured-numbers half of polymodelbench — the runnable artifact for issue #535 ("bench(polymodel): measured numbers for the poly-model lane").
portability-lab command
prefixlint command
Command prefixlint is the §A3 prefix-stability devtool (GLM52-HOSTED-CACHE- COHERENCE): it reads a recorded conversation and reports the provider-cache consequence — how many prompt tokens are cacheable across the session, how many are re-billed, the specific turn where the prefix broke, and the recoverable uplift from fixing volatile-ahead-of-stable ordering.
Command prefixlint is the §A3 prefix-stability devtool (GLM52-HOSTED-CACHE- COHERENCE): it reads a recorded conversation and reports the provider-cache consequence — how many prompt tokens are cacheable across the session, how many are re-billed, the specific turn where the prefix broke, and the recoverable uplift from fixing volatile-ahead-of-stable ordering.
q4kdiag command
Command q4kdiag runs the P1 Q4_K correctness diagnostic for a GGUF model.
Command q4kdiag runs the P1 Q4_K correctness diagnostic for a GGUF model.
q8bench command
Command q8bench is an INDEPENDENT verifier for the int8-quantized in-kernel forward path (internal/model: Model.Quantize + Session.Quant).
Command q8bench is an INDEPENDENT verifier for the int8-quantized in-kernel forward path (internal/model: Model.Quantize + Session.Quant).
q8kernel command
Command q8kernel is a self-contained kernel microbenchmark that isolates ONE question from all model/WSL/load overhead: in pure Go on this box, which GEMV kernel is fastest for the memory-bound batch-1 decode regime —
Command q8kernel is a self-contained kernel microbenchmark that isolates ONE question from all model/WSL/load overhead: in pure Go on this box, which GEMV kernel is fastest for the memory-bound batch-1 decode regime —
quantdemo command
qwen35check command
Command qwen35check loads a Qwen3.5 / Qwen3-Next hybrid HF snapshot with fak's own in-kernel forward pass and greedy-decodes a few tokens from a given prompt (token ids), printing the generated ids.
Command qwen35check loads a Qwen3.5 / Qwen3-Next hybrid HF snapshot with fak's own in-kernel forward pass and greedy-decodes a few tokens from a given prompt (token ids), printing the generated ids.
qwen36codedemo command
qwen38campaign command
Command qwen38campaign runs the frozen Qwen3.8 evidence campaign.
Command qwen38campaign runs the frozen Qwen3.8 evidence campaign.
radixbench command
Command radixbench benchmarks fak's KV-cache prefix reuse against SGLang's RadixAttention (arXiv:2312.07104 / NeurIPS 2024) on the metric SGLang's own paper headlines: CACHE HIT RATE — the fraction of prompt tokens served from cache instead of recomputed.
Command radixbench benchmarks fak's KV-cache prefix reuse against SGLang's RadixAttention (arXiv:2312.07104 / NeurIPS 2024) on the metric SGLang's own paper headlines: CACHE HIT RATE — the fraction of prompt tokens served from cache instead of recomputed.
repoguard command
Command repoguard refuses a DESTRUCTIVE or out-of-tree write before it escapes the repo — the Go port of tools/repo_guard.py, run as a single compiled binary so the Claude Code PreToolUse hook fires WITHOUT spawning a Python interpreter on every tool call (DIRECTION.md: the request path stays interpreter-free).
Command repoguard refuses a DESTRUCTIVE or out-of-tree write before it escapes the repo — the Go port of tools/repo_guard.py, run as a single compiled binary so the Claude Code PreToolUse hook fires WITHOUT spawning a Python interpreter on every tool call (DIRECTION.md: the request path stays interpreter-free).
resultbudgetdemo command
Command resultbudgetdemo demonstrates deterministic tool-result request shaping.
Command resultbudgetdemo demonstrates deterministic tool-result request shaping.
rsicycle command
Command rsicycle drives ONE recursive-self-improvement keep-or-revert decision through fak's own non-forgeable keep-bit (internal/shipgate.Evaluate).
Command rsicycle drives ONE recursive-self-improvement keep-or-revert decision through fak's own non-forgeable keep-bit (internal/shipgate.Evaluate).
rsiloop command
Command rsiloop is fak's TRUE recursive-self-improvement loop — the closed-loop companion to cmd/rsicycle's one-shot.
Command rsiloop is fak's TRUE recursive-self-improvement loop — the closed-loop companion to cmd/rsicycle's one-shot.
sessionbench command
Command sessionbench measures the NET VALUE-ADD of the fused agent kernel on a realistic long, multi-agent session — the regime the whole fusion exists for, and the one a per-call / per-turn naive setup pays for dearly.
Command sessionbench measures the NET VALUE-ADD of the fused agent kernel on a realistic long, multi-agent session — the regime the whole fusion exists for, and the one a per-call / per-turn naive setup pays for dearly.
simpledemo command
Command simpledemo is the friendliest way to chat with a local AI model.
Command simpledemo is the friendliest way to chat with a local AI model.
stackresolvedemo command
stackresolvedemo is the narrow end-to-end witness for native harness stack resolution.
stackresolvedemo is the narrow end-to-end witness for native harness stack resolution.
streamcapture command
Command streamcapture records a REAL provider stream so a hermetic Go test can replay it byte-for-byte.
Command streamcapture records a REAL provider stream so a hermetic Go test can replay it byte-for-byte.
supportwitness command
terminalbench command
Command terminalbench runs a Terminal-Bench-shaped command-boundary smoke through fak adjudication.
Command terminalbench runs a Terminal-Bench-shaped command-boundary smoke through fak adjudication.
testenv command
Command testenv runs a command after removing credential-shaped environment variables according to fak's repository-wide envconfiglint registry.
Command testenv runs a command after removing credential-shaped environment variables according to fak's repository-wide envconfiglint registry.
timewolfdemo command
Command timewolfdemo is the fun, lowest-common-denominator AGENTIC demo: a one-tool agent asked "what time is it, Mr.
Command timewolfdemo is the fun, lowest-common-denominator AGENTIC demo: a one-tool agent asked "what time is it, Mr.
tokendemo command
Command tokendemo is the self-contained demo of two CLEAR WINS the kernel's tool-call understanding delivers — counted call by call, each grounded in a LIVE kernel verdict (the kernel decides; this demo only counts).
Command tokendemo is the self-contained demo of two CLEAR WINS the kernel's tool-call understanding delivers — counted call by call, each grounded in a LIVE kernel verdict (the kernel decides; this demo only counts).
toktdiag command
Command toktdiag reports whether fak can extract an embedded GGUF tokenizer.
Command toktdiag reports whether fak can extract an embedded GGUF tokenizer.
toolcallcontroldemo command
toolcallcontroldemo is a no-model spine for deterministic tool-call control.
toolcallcontroldemo is a no-model spine for deterministic tool-call control.
toolsandboxbench command
Command toolsandboxbench runs a tau3/ToolSandbox-shaped policy-state adapter smoke through fak adjudication.
Command toolsandboxbench runs a tau3/ToolSandbox-shaped policy-state adapter smoke through fak adjudication.
topobench command
Command topobench runs the FLEET-TOPOLOGY genome search (issue #541) — the orthogonal STRUCTURE-search axis to the policy-genome search (#503).
Command topobench runs the FLEET-TOPOLOGY genome search (issue #541) — the orthogonal STRUCTURE-search axis to the policy-genome search (#503).
tpcheck command
Command tpcheck runs fak's NATIVE-engine TENSOR-parallel decomposition end to end over SIMULATED ranks (single box, in-memory, no GPU/NCCL/checkpoint) — the runnable form of the intra-layer sharding contract (internal/model/tensor_parallel.go).
Command tpcheck runs fak's NATIVE-engine TENSOR-parallel decomposition end to end over SIMULATED ranks (single box, in-memory, no GPU/NCCL/checkpoint) — the runnable form of the intra-layer sharding contract (internal/model/tensor_parallel.go).
trychatdemo command
Command trychatdemo is the "try it" agentic chat: type a message and a tiny tool-using agent answers — but every tool call it makes is adjudicated by the REAL fak kernel first (the same internal/agentdemo path cmd/timewolfdemo and `fak preflight` use).
Command trychatdemo is the "try it" agentic chat: type a message and a tiny tool-using agent answers — but every tool call it makes is adjudicated by the REAL fak kernel first (the same internal/agentdemo path cmd/timewolfdemo and `fak preflight` use).
tunemtp command
turntaxdemo command
Command turntaxdemo is the live, on-box demo of how fak SAVES MODEL TURNS.
Command turntaxdemo is the live, on-box demo of how fak SAVES MODEL TURNS.
unseedemo command
Command unseedemo is the live, on-box "Un-See It" demo (a.k.a.
Command unseedemo is the live, on-box "Un-See It" demo (a.k.a.
uxjourneyproxy command
Command uxjourneyproxy scores the deterministic cognitive-load corpus for GitHub issue #6597.
Command uxjourneyproxy scores the deterministic cognitive-load corpus for GitHub issue #6597.
verbsdoc command
Command verbsdoc renders fak's source-derived verb/refusal surface (#5934).
Command verbsdoc renders fak's source-derived verb/refusal surface (#5934).
wdcheck command
Command wdcheck is a THROWAWAY verifier for the info_watchdog.go pure mappers, run only because cmd/fak currently cannot build (unrelated in-flight `wip land` work).
Command wdcheck is a THROWAWAY verifier for the info_watchdog.go pure mappers, run only because cmd/fak currently cannot build (unrelated in-flight `wip land` work).
webbench-convert command
Command webbench-convert converts WebVoyager tasks into fak's webbench format.
Command webbench-convert converts WebVoyager tasks into fak's webbench format.
webbench-run command
Command webbench-run is a reproducible end-to-end webbench runner.
Command webbench-run is a reproducible end-to-end webbench runner.
webbench-token-measure command
Command webbench-token-measure measures actual token usage from model API runs.
Command webbench-token-measure measures actual token usage from model API runs.
wfmembench command
Command wfmembench is the workflow-memory benchmark for issue #434.
Command wfmembench is the workflow-memory benchmark for issue #434.
wgscan command
workloadfitdemo command
zaitask command
docs
_witnesses/issue-8385-qwen38-mac-decode-windows
Package issue8385witness validates the scrubbed partial Mac decode-window campaign evidence for GitHub issue #8385.
Package issue8385witness validates the scrubbed partial Mac decode-window campaign evidence for GitHub issue #8385.
_witnesses/issue-9044-q8-metal-residency
Package q8metalresidencywitness contains the scrubbed, readback-validated native Metal receipt for issue #9044.
Package q8metalresidencywitness contains the scrubbed, readback-validated native Metal receipt for issue #9044.
_witnesses/issue-9093-qwen38-metal-gdn-sequence
Package issue9093witness validates the resident Metal Qwen GDN sequence closure packet.
Package issue9093witness validates the resident Metal Qwen GDN sequence closure packet.
_witnesses/issue-9097-qwen38-metal-gdn-production
Package issue9097witness validates the scrubbed resident Metal GDN production canary.
Package issue9097witness validates the scrubbed resident Metal GDN production canary.
_witnesses/issue-9108-qwen38-metal-gdn-panel-drain-canary
Package issue9108witness binds the evidence-complete REJECT for the single post-drain resident-GDN candidate launch.
Package issue9108witness binds the evidence-complete REJECT for the single post-drain resident-GDN candidate launch.
_witnesses/issue-9482-qwen38-q4k-mmap
Package issue9482witness validates the Qwen3.8 M1 mapped Q4_K Metal campaign receipt.
Package issue9482witness validates the Qwen3.8 M1 mapped Q4_K Metal campaign receipt.
_witnesses/issue-9495-metal-profile
Package issue9495metalprofile contains the scrubbed real Metal profile bundle and validation tests for issue #9495.
Package issue9495metalprofile contains the scrubbed real Metal profile bundle and validation tests for issue #9495.
_witnesses/issue-9513-qwen38-m10-parity
Package issue9513witness validates the exact M3 Pro P32/T64 Qwen3.8 parity close-out bundle.
Package issue9513witness validates the exact M3 Pro P32/T64 Qwen3.8 parity close-out bundle.
_witnesses/issue-9525-qwen38-sequence-prefill
Package issue9525witness validates the Qwen3.8 M2 forward-owned Metal sequence prefill campaign receipt.
Package issue9525witness validates the Qwen3.8 M2 forward-owned Metal sequence prefill campaign receipt.
_witnesses/issue-9714-qwen36-launchd-ownership
Package issue9714witness binds the fail-closed ownership-only HOLD for the preserved Qwen3.6 incumbent on the sanctioned Mac.
Package issue9714witness binds the fail-closed ownership-only HOLD for the preserved Qwen3.6 incumbent on the sanctioned Mac.
examples
context-query command
context-query is a no-model selfcheck for bounded derivation over addressable records.
context-query is a no-model selfcheck for bounded derivation over addressable records.
macos-guard-child-memory-demo command
macos-guard-child-memory-demo demonstrates default child-memory containment on macOS under fak guard: host-sized RSS thresholds, metric typing, and fail-closed receipt emission.
macos-guard-child-memory-demo demonstrates default child-memory containment on macOS under fak guard: host-sized RSS thresholds, metric typing, and fail-closed receipt emission.
release-steward command
Command release-steward demonstrates a durable macro-agent lifecycle without a key or model.
Command release-steward demonstrates a durable macro-agent lifecycle without a key or model.
experiments
negframe-steerability-ab command
Command negframe-steerability-ab is the offline A/B harness for issue #3546: does affordance-first ("do this") guard-directive framing lift steer compliance over the same directive framed as a prohibition ("don't do that")?
Command negframe-steerability-ab is the offline A/B harness for issue #3546: does affordance-first ("do this") guard-directive framing lift steer compliance over the same directive framed as a prohibition ("don't do that")?
qwen36/gdn
Package gdn holds the pieces the host-runnable Qwen3.6-27B Gated-DeltaNet (GDN) experiments under experiments/qwen36/ share: the real linear_attn layer shapes, the activation/norm primitives, the parallel f32 GEMM, the seeded layer-weight fixture, and the delta-rule recurrent scan itself.
Package gdn holds the pieces the host-runnable Qwen3.6-27B Gated-DeltaNet (GDN) experiments under experiments/qwen36/ share: the real linear_attn layer shapes, the activation/norm primitives, the parallel f32 GEMM, the seeded layer-weight fixture, and the delta-rule recurrent scan itself.
qwen36/gdn-divergence-sensitivity command
Command gdn-divergence-sensitivity is the host-runnable, device-independent arm of the Qwen3.6-27B *correctness* parity blocker — the "token-3 drift" — described in experiments/qwen36/token3-drift-investigation-2026-06-28.md (§4 third bullet, §5 step 2).
Command gdn-divergence-sensitivity is the host-runnable, device-independent arm of the Qwen3.6-27B *correctness* parity blocker — the "token-3 drift" — described in experiments/qwen36/token3-drift-investigation-2026-06-28.md (§4 third bullet, §5 step 2).
qwen36/gdn-quant-length-sensitivity command
Command gdn-quant-length-sensitivity is the host-runnable, device-independent arm of issue #4273 — Qwen3.6-27B GGUF degenerates into a verbatim repetition loop on ~1.3k-token prompts while short prompts stay coherent.
Command gdn-quant-length-sensitivity is the host-runnable, device-independent arm of issue #4273 — Qwen3.6-27B GGUF degenerates into a verbatim repetition loop on ~1.3k-token prompts while short prompts stay coherent.
qwen36/gdn-recurrence-bench command
Command gdn-recurrence-bench is the host-runnable, device-independent arm of the "benchmark both" ask in issue #65 (Gated-DeltaNet recurrence — GPU kernel vs CPU-hybrid decision).
Command gdn-recurrence-bench is the host-runnable, device-independent arm of the "benchmark both" ask in issue #65 (Gated-DeltaNet recurrence — GPU kernel vs CPU-hybrid decision).
qwen36/token3-divergence-probe command
Command token3-divergence-probe is the host-independent comparison + first-divergence finder for the Qwen3.6-27B token-3 correctness drift (token3-drift-investigation-2026-06-28.md §3c/§3d, §5 step 1).
Command token3-divergence-probe is the host-independent comparison + first-divergence finder for the Qwen3.6-27B token-3 correctness drift (token3-drift-investigation-2026-06-28.md §3c/§3d, §5 step 1).
internal
a2achan
Package a2achan is the in-kernel agent-to-agent message channel: a generic, capability-floored, Ref-backed mailbox that lets one agent hand a value to ANOTHER agent.
Package a2achan is the in-kernel agent-to-agent message channel: a generic, capability-floored, Ref-backed mailbox that lets one agent hand a value to ANOTHER agent.
abi
denyrules.go — the CLOSED policy-RUNG vocabulary: WHICH rule refused.
denyrules.go — the CLOSED policy-RUNG vocabulary: WHICH rule refused.
ablate
Package ablate generalizes the two-arm `fak bench` (vdso_on/vdso_off) into an N-ARM feature sweep: replay ONE frozen tool-call trace through the kernel under a LIST of FeatureConfigs and emit one AblationReport binding every arm to the trace's single workload hash.
Package ablate generalizes the two-arm `fak bench` (vdso_on/vdso_off) into an N-ARM feature sweep: replay ONE frozen tool-call trace through the kernel under a LIST of FeatureConfigs and emit one AblationReport binding every arm to the trace's single workload hash.
accountobs
Package accountobs observes the ACCOUNT side of a guarded session's economy: the rate-limit / usage headers the upstream provider relays on every response — the subscription "unified" windows Claude Pro/Max accounts are governed by (anthropic-ratelimit-unified-*: per-window utilization, status, reset) and the API-key token/request families (anthropic-ratelimit-<family>-limit/-remaining/ -reset, plus the x-ratelimit-* OpenAI-compatible spelling) — so `fak guard` can answer "how loaded is the account this session is spending?" the same way it already answers "how loaded is the node?" (internal/harnessres).
Package accountobs observes the ACCOUNT side of a guarded session's economy: the rate-limit / usage headers the upstream provider relays on every response — the subscription "unified" windows Claude Pro/Max accounts are governed by (anthropic-ratelimit-unified-*: per-window utilization, status, reset) and the API-key token/request families (anthropic-ratelimit-<family>-limit/-remaining/ -reset, plus the x-ratelimit-* OpenAI-compatible spelling) — so `fak guard` can answer "how loaded is the account this session is spending?" the same way it already answers "how loaded is the node?" (internal/harnessres).
accountprobe
Package accountprobe reads the active account-probe ledger (probe_ledger.jsonl) that tools/account_probe.py writes — one JSON line per probe, append-ordered, with a closed status vocabulary (OK / AUTH / ACCESS / CREDIT / LIMIT / APIERR / TRANSPORT).
Package accountprobe reads the active account-probe ledger (probe_ledger.jsonl) that tools/account_probe.py writes — one JSON line per probe, append-ordered, with a closed status vocabulary (OK / AUTH / ACCESS / CREDIT / LIMIT / APIERR / TRANSPORT).
accounts
Package accounts is the durable registry of Claude config HOMES — the CLAUDE_CONFIG_DIR "seats" a host switches between (~/.claude, ~/.claude-gem8-seat, …) — with one job no other surface does cleanly: resolve a seat name to the home that actually serves it, FOLLOWING a tombstone to its rehome target.
Package accounts is the durable registry of Claude config HOMES — the CLAUDE_CONFIG_DIR "seats" a host switches between (~/.claude, ~/.claude-gem8-seat, …) — with one job no other surface does cleanly: resolve a seat name to the home that actually serves it, FOLLOWING a tombstone to its rehome target.
adjudicator
Package adjudicator is the in-process DOS reference monitor — the v0.1 realization of the Adjudicator seam.
Package adjudicator is the in-process DOS reference monitor — the v0.1 realization of the Adjudicator seam.
advmodel
Package advmodel is the advisory adjudication model — the consumer of the harvest LabelRow corpus and the closing edge of the kernel's self-improvement loop (issue #580).
Package advmodel is the advisory adjudication model — the consumer of the harvest LabelRow corpus and the closing edge of the kernel's self-improvement loop (issue #580).
affectedtests
Package affectedtests is the pure core of the `fak affected` fast test gate: given the package import graph and the set of CHANGED packages, it computes the exact set of packages whose test outcome could change -- so a developer runs `go test` on only those, turning the full ~minutes `go test ./...` into a seconds-long pre-commit gate WITHOUT dropping coverage on what they changed.
Package affectedtests is the pure core of the `fak affected` fast test gate: given the package import graph and the set of CHANGED packages, it computes the exact set of packages whose test outcome could change -- so a developer runs `go test` on only those, turning the full ~minutes `go test ./...` into a seconds-long pre-commit gate WITHOUT dropping coverage on what they changed.
agent
Package agent is the HOST-SIDE agentic loop and the wire servers that expose it.
Package agent is the HOST-SIDE agentic loop and the wire servers that expose it.
agentdemo
Package agentdemo is the shared spine for fak's agentic "try-it" demos: a deterministic, no-key, tool-using agent loop that drives the REAL kernel one call at a time.
Package agentdemo is the shared spine for fak's agentic "try-it" demos: a deterministic, no-key, tool-using agent loop that drives the REAL kernel one call at a time.
agentdojo
Package agentdojo replaces the STATIC poison.json fixture with a DYNAMIC, adaptive attack battery scored by Attack Success Rate (ASR) — the AgentDojo (Debenedetti et al., 2024) evaluation discipline.
Package agentdojo replaces the STATIC poison.json fixture with a DYNAMIC, adaptive attack battery scored by Attack Success Rate (ASR) — the AgentDojo (Debenedetti et al., 2024) evaluation discipline.
agentic
Package agentic compiles broad objective text into a deterministic, bounded work plan.
Package agentic compiles broad objective text into a deterministic, bounded work plan.
agenticbench
Package agenticbench folds the #868 agentic benchmark artifacts into one parent gate.
Package agenticbench folds the #868 agentic benchmark artifacts into one parent gate.
agentopt
Package agentopt is speculative tool execution and agent optimization primitives.
Package agentopt is speculative tool execution and agent optimization primitives.
agentqueue
Package agentqueue plans deterministic bounded desired-state agent populations.
Package agentqueue plans deterministic bounded desired-state agent populations.
agentreadinessscore
Package agentreadinessscore grades the ONE thing the sibling scorecards do not: can an autonomous coding agent — Claude Code, OpenAI Codex, Cursor, an MCP client — (1) DISCOVER fak, (2) WANT to adopt and build on it, and (3) do so effectively and easily? The other inward sticks grade a surface a human reviewer cares about (the tree's shape, the Go module, a doc's prose); this one grades agent attractiveness, the number an agent-first project lives or dies on.
Package agentreadinessscore grades the ONE thing the sibling scorecards do not: can an autonomous coding agent — Claude Code, OpenAI Codex, Cursor, an MCP client — (1) DISCOVER fak, (2) WANT to adopt and build on it, and (3) do so effectively and easily? The other inward sticks grade a surface a human reviewer cares about (the tree's shape, the Go module, a doc's prose); this one grades agent attractiveness, the number an agent-first project lives or dies on.
agentsched
Package agentsched provides prioritized task scheduling and admission governance for concurrent agent execution.
Package agentsched provides prioritized task scheduling and admission governance for concurrent agent execution.
agentsindex
Package agentsindex is a stdlib-only, tier-1 view over AGENTS.md (issue #3535, epic #3229).
Package agentsindex is a stdlib-only, tier-1 view over AGENTS.md (issue #3535, epic #3229).
agenttest
Package agenttest is the public test harness for fak agent workflows (#238, D-008): deterministic fixtures, a tool-call assertion library, mock tool responses, and reproduce-from-transcript replay.
Package agenttest is the public test harness for fak agent workflows (#238, D-008): deterministic fixtures, a tool-call assertion library, mock tool responses, and reproduce-from-transcript replay.
agenttopo
Package agenttopo declares agent communication topology over comm.Group.
Package agenttopo declares agent communication topology over comm.Group.
ailuminate
Package ailuminate encodes the scoping + go/no-go contract for entering MLCommons AILuminate (v1.1) as a model+guardrail "AI system" SUT.
Package ailuminate encodes the scoping + go/no-go contract for entering MLCommons AILuminate (v1.1) as a model+guardrail "AI system" SUT.
airgaptest
Package airgaptest contains hermetic air-gapped harness integration contracts.
Package airgaptest contains hermetic air-gapped harness integration contracts.
amdgpu
Package amdgpu provides AMD GPU facts probing, hardware governor settings, Strix Halo APU operational serving profiles, direct AQL/PM4 packet dispatch, and native HSACO code-object emission.
Package amdgpu provides AMD GPU facts probing, hardware governor settings, Strix Halo APU operational serving profiles, direct AQL/PM4 packet dispatch, and native HSACO code-object emission.
answershape
Package answershape is a deterministic, dependency-free guard over the SHAPE of a piece of text — how repetitive (degenerate) it is and how long (verbose) it is — checked against caller-chosen thresholds.
Package answershape is a deterministic, dependency-free guard over the SHAPE of a piece of text — how repetitive (degenerate) it is and how long (verbose) it is — checked against caller-chosen thresholds.
antipattern
Package antipattern is the UNIFYING REGISTRY for the agentic-dev anti-patterns whose common shape is "work that did not convert into global, user-useful progress": work REDONE that was already done (repetition), and work LANDED but connected to nothing (lost / orphaned).
Package antipattern is the UNIFYING REGISTRY for the agentic-dev anti-patterns whose common shape is "work that did not convert into global, user-useful progress": work REDONE that was already done (repetition), and work LANDED but connected to nothing (lost / orphaned).
apihostprobe
Package apihostprobe probes OpenAI-compatible API hosts and folds readiness and acceptance reports for the API-host bridge surface.
Package apihostprobe probes OpenAI-compatible API hosts and folds readiness and acceptance reports for the API-host bridge surface.
appversion
Package appversion resolves the FAK application version from build identity or from a VERSION marker that belongs to the running executable.
Package appversion resolves the FAK application version from build identity or from a VERSION marker that belongs to the running executable.
archfitness
Package archfitness scores composition architecture debt and tracks structural fitness across architectural dimensions.
Package archfitness scores composition architecture debt and tracks structural fitness across architectural dimensions.
architest
Package architest is the kernel's machine-checked architecture contract.
Package architest is the kernel's machine-checked architecture contract.
archrank
Package archrank ranks architecture observations by quality per active byte.
Package archrank ranks architecture observations by quality per active byte.
archreport
Package archreport derives a queryable architecture report from the same source table enforced by internal/architest.
Package archreport derives a queryable architecture report from the same source table enforced by internal/architest.
armbench
Package armbench is the provenance-locked multi-arm benchmark runner (#6676, epic #6674).
Package armbench is the provenance-locked multi-arm benchmark runner (#6676, epic #6674).
assumecheck
Package assumecheck is the pure assumption-audit kernel (#3819, epic #3818 C1): "an assumption an agent (or operator) is relying on" as a first-class, checkable value instead of an unexamined belief baked into a prompt or a loop.
Package assumecheck is the pure assumption-audit kernel (#3819, epic #3818 C1): "an assumption an agent (or operator) is relying on" as a first-class, checkable value instead of an unexamined belief baked into a prompt or a loop.
astquery
Package astquery is a structural (AST-shape) search over Go source with metavariables — the "match code by shape, not text" seam (#3438, epic #3434).
Package astquery is a structural (AST-shape) search over Go source with metavariables — the "match code by shape, not text" seam (#3438, epic #3434).
atif
Package atif projects fak's redacted trajectory Turn corpus onto ATIF — the Agent Trajectory Interchange Format — so a fak session round-trips to a portable, eval-pipeline-consumable artifact.
Package atif projects fak's redacted trajectory Turn corpus onto ATIF — the Agent Trajectory Interchange Format — so a fak session round-trips to a portable, eval-pipeline-consumable artifact.
attemptbudget
Package attemptbudget is a pure fold over one issue's attempt history: given a bounded budget and the recorded attempts (each carrying the failure class it ended in), it decides whether the issue is still dispatchable, COOLING_DOWN under a failure-class-aware backoff window, or HELD for human triage -- so a repeatedly failing issue stops burning workers once it crosses the budget, instead of being re-offered forever (#1777), and so different kinds of failure cool down at different rates instead of all sharing one window (#1778).
Package attemptbudget is a pure fold over one issue's attempt history: given a bounded budget and the recorded attempts (each carrying the failure class it ended in), it decides whether the issue is still dispatchable, COOLING_DOWN under a failure-class-aware backoff window, or HELD for human triage -- so a repeatedly failing issue stops burning workers once it crosses the budget, instead of being re-offered forever (#1777), and so different kinds of failure cool down at different rates instead of all sharing one window (#1778).
auditpane
Package auditpane is the one rollup over the tree's many tools/*_audit.py auditors.
Package auditpane is the one rollup over the tree's many tools/*_audit.py auditors.
auditreason
Package auditreason holds closed vocabularies for audit-facing failure surfaces: commit-audit verification failures, and non-guard tool failures such as hangs, timeouts, shell mismatches, and partial applies.
Package auditreason holds closed vocabularies for audit-facing failure surfaces: commit-audit verification failures, and non-guard tool failures such as hangs, timeouts, shell mismatches, and partial applies.
auditreceipt
Package auditreceipt exports bounded, privacy-screened organization audit receipts.
Package auditreceipt exports bounded, privacy-screened organization audit receipts.
auditusage
Package auditusage folds the durable sinks fak accumulates across a session/fleet lifetime into one cross-session usage rollup for `fak audit usage` (#1612, child C of epic #1601):
Package auditusage folds the durable sinks fak accumulates across a session/fleet lifetime into one cross-session usage rollup for `fak audit usage` (#1612, child C of epic #1601):
balance
Package balance renders the NIGHT-BALANCE surface: the two forces a self-driving run must hold in equilibrium, side by side, in one glanceable readout.
Package balance renders the NIGHT-BALANCE surface: the two forces a self-driving run must hold in equilibrium, side by side, in one glanceable readout.
benchauthority
Package benchauthority is the typed, in-binary source of truth for the PRIMARY benchmark NUMBERS fak claims — the "what" half of the benchmark discipline, the twin of internal/benchcatalog (which registers the benchmarks that PRODUCE the numbers, not the numbers themselves).
Package benchauthority is the typed, in-binary source of truth for the PRIMARY benchmark NUMBERS fak claims — the "what" half of the benchmark discipline, the twin of internal/benchcatalog (which registers the benchmarks that PRODUCE the numbers, not the numbers themselves).
benchcatalog
Package benchcatalog is the single, in-binary source of truth for "what benchmarks does fak have, what does each measure, and how do I run it." It exists because the answer used to be scattered across 18 separate cmd/*bench* mains plus five `fak` verbs (bench, turntax, routebench, webbench, swebench), each with its own bespoke flag vocabulary and no shared index.
Package benchcatalog is the single, in-binary source of truth for "what benchmarks does fak have, what does each measure, and how do I run it." It exists because the answer used to be scattered across 18 separate cmd/*bench* mains plus five `fak` verbs (bench, turntax, routebench, webbench, swebench), each with its own bespoke flag vocabulary and no shared index.
benchckpt
Package benchckpt is the shared per-cell write-ahead checkpoint the compute-bench executors (modelbench, fanrun, and the fanbench/turnbench siblings that follow) write through so a crash at cell N does not discard the cells 1..N-1 already measured.
Package benchckpt is the shared per-cell write-ahead checkpoint the compute-bench executors (modelbench, fanrun, and the fanbench/turnbench siblings that follow) write through so a crash at cell N does not discard the cells 1..N-1 already measured.
benchcli
Package benchcli holds the small, identical helpers the benchmark-CLI mains (cmd/*bench and the demo/cert commands beside them) had each copy-pasted into their own file.
Package benchcli holds the small, identical helpers the benchmark-CLI mains (cmd/*bench and the demo/cert commands beside them) had each copy-pasted into their own file.
benchids
Package benchids generates a deterministic stream of synthetic token IDs for the benchmark command mains.
Package benchids generates a deterministic stream of synthetic token IDs for the benchmark command mains.
benchlineagegate
Package benchlineagegate is the durable enforcement gate for issue #9: every benchmark emitter must stamp the four lineage axes (version / utc / git_commit / machine) onto the report artifact it writes, so a result is always traceable to the exact build that produced it.
Package benchlineagegate is the durable enforcement gate for issue #9: every benchmark emitter must stamp the four lineage axes (version / utc / git_commit / machine) onto the report artifact it writes, so a result is always traceable to the exact build that produced it.
benchloop
Package benchloop folds fak's benchmark surfaces into one read-only control loop.
Package benchloop folds fak's benchmark surfaces into one read-only control loop.
benchmarkdown
Package benchmarkdown owns the byte-level layout shared by benchmark adapter reports.
Package benchmarkdown owns the byte-level layout shared by benchmark adapter reports.
benchpost
Package benchpost posts fak BENCH-CHANNEL rollups — latest benchmark runs, the "what to run next" plan, and tok/s regressions — to a Slack bench channel.
Package benchpost posts fak BENCH-CHANNEL rollups — latest benchmark runs, the "what to run next" plan, and tok/s regressions — to a Slack bench channel.
benchruns
Package benchruns reads benchmark catalog entries and resolves run details from the committed experiment artifacts.
Package benchruns reads benchmark catalog entries and resolves run details from the committed experiment artifacts.
benchscore
Package benchscore scans benchmark result artifacts and folds model-level score summaries plus validation issues.
Package benchscore scans benchmark result artifacts and folds model-level score summaries plus validation issues.
bgloop
Package bgloop is fak's IN-KERNEL BACKGROUND-LOOP RUNTIME — the supervisor that keeps recurring work progressing while the kernel (`fak serve`) is up, and makes each loop observable.
Package bgloop is fak's IN-KERNEL BACKGROUND-LOOP RUNTIME — the supervisor that keeps recurring work progressing while the kernel (`fak serve`) is up, and makes each loop observable.
binstamp
Package binstamp answers one question durably: "is the fak binary I am running built from the commit that is currently on the trunk, or is it stale?"
Package binstamp answers one question durably: "is the fak binary I am running built from the commit that is currently on the trunk, or is it stale?"
bitnetmeta
Package bitnetmeta describes BitNet-family model artifacts without conflating weight semantics with their storage, conversion recipe, runtime, or benchmark.
Package bitnetmeta describes BitNet-family model artifacts without conflating weight semantics with their storage, conversion recipe, runtime, or benchmark.
bitnetruntime
Package bitnetruntime admits Microsoft's BitNet runtime (bitnet.cpp) as an EXTERNAL DELEGATE, and never as something fak owns.
Package bitnetruntime admits Microsoft's BitNet runtime (bitnet.cpp) as an EXTERNAL DELEGATE, and never as something fak owns.
blastlease
Package blastlease projects live or fixture lease records into blast-radius inputs.
Package blastlease projects live or fixture lease records into blast-radius inputs.
blastradius
Package blastradius is the pure JOIN at the heart of blast-radius containment (epic #2712, W3): given a broken package, it computes the AFFECTED SET — the live leases and queued issues whose declared tree intersects the broken package's DEPENDENCY blast radius (the package plus every package that transitively imports it).
Package blastradius is the pure JOIN at the heart of blast-radius containment (epic #2712, W3): given a broken package, it computes the AFFECTED SET — the live leases and queued issues whose declared tree intersects the broken package's DEPENDENCY blast radius (the package plus every package that transitively imports it).
blob
Package blob provides an in-memory, content-addressed blob store backing abi.Ref resolution, region management, and page-out caching with byte-bounded LRU eviction.
Package blob provides an in-memory, content-addressed blob store backing abi.Ref resolution, region management, and page-out caching with byte-bounded LRU eviction.
blobfs
Package blobfs is a DURABLE, on-disk content-addressed store — the persistent sibling of internal/blob (the in-memory v0.1 default behind every abi.Ref).
Package blobfs is a DURABLE, on-disk content-addressed store — the persistent sibling of internal/blob (the in-memory v0.1 default behind every abi.Ref).
blobhttp
Package blobhttp is a content-addressed blob store backed by a REMOTE HTTP object endpoint — the "disaggregated / cloud" sibling of internal/blob (in-memory) and internal/blobfs (local disk).
Package blobhttp is a content-addressed blob store backed by a REMOTE HTTP object endpoint — the "disaggregated / cloud" sibling of internal/blob (in-memory) and internal/blobfs (local disk).
blockerpost
Package blockerpost posts BLOCKERS — the things that stop forward progress — to a single Slack "blockers" channel, so the fleet has one central place where an ongoing impediment is recorded and a human-needed one is surfaced.
Package blockerpost posts BLOCKERS — the things that stop forward progress — to a single Slack "blockers" channel, so the fleet has one central place where an ongoing impediment is recorded and a human-needed one is surfaced.
borrowprovenance
Package borrowprovenance records and re-verifies exact external source bytes.
Package borrowprovenance records and re-verifies exact external source bytes.
boundarylint
Package boundarylint is a small, extensible policy engine for "boundary tells": source patterns where the code makes a claim about the outside world (the OS, the network, the clock, a peer process) without the check that would make the claim true.
Package boundarylint is a small, extensible policy engine for "boundary tells": source patterns where the code makes a claim about the outside world (the OS, the network, the clock, a peer process) without the check that would make the claim true.
branchrole
Package branchrole reads fak's branch-role contract from dos.toml.
Package branchrole reads fak's branch-role contract from dos.toml.
breathgate
Package breathgate provides turn pacing, pause control, debounce, and cooldown mechanisms for autonomous agent loops.
Package breathgate provides turn pacing, pause control, debounce, and cooldown mechanisms for autonomous agent loops.
brittleness
Package brittleness is the DETECTOR-AND-CAPTURE for seams that "got lucky": process/commit/test outcomes that WORKED but only by timing, chance, or a symptom-patch that did not hold -- and the regressions those seams throw.
Package brittleness is the DETECTOR-AND-CAPTURE for seams that "got lucky": process/commit/test outcomes that WORKED but only by timing, chance, or a symptom-patch that did not hold -- and the regressions those seams throw.
browseraction
Package browseraction normalizes browser/computer-use action traces into fak tool-call mediation reports.
Package browseraction normalizes browser/computer-use action traces into fak tool-call mediation reports.
buildoverlay
Package buildoverlay isolates Go commands from unrelated untracked files in a shared, peer-dirty checkout.
Package buildoverlay isolates Go commands from unrelated untracked files in a shared, peer-dirty checkout.
buildwitness
Package buildwitness is a structural CI guard: it fails when the primary binary package (cmd/fak) does not compile with the DEFAULT build tags.
Package buildwitness is a structural CI guard: it fails when the primary binary package (cmd/fak) does not compile with the DEFAULT build tags.
cache
Package cache provides high-performance, tiered caching for agent sessions, tokens, configurations, and external credentials.
Package cache provides high-performance, tiered caching for agent sessions, tokens, configurations, and external credentials.
cachemeta
Package cachemeta defines the metadata contract for first-class cache entries.
Package cachemeta defines the metadata contract for first-class cache entries.
cacheobs
Bloom-filter reuse-POTENTIAL estimator (#3396) — the probabilistic sibling of the realized-reuse tap in cacheobs.go.
Bloom-filter reuse-POTENTIAL estimator (#3396) — the probabilistic sibling of the realized-reuse tap in cacheobs.go.
cacheprice
Package cacheprice is the ONE source of truth for the provider prompt-cache price multipliers — the cost of a cached-prefix READ or WRITE relative to a base (uncached) input token.
Package cacheprice is the ONE source of truth for the provider prompt-cache price multipliers — the cost of a cached-prefix READ or WRITE relative to a base (uncached) input token.
cachesweep
Package cachesweep turns fak's radixkv prefix-cache engine into a budget→reuse SWEEP: replay ONE recorded prefix-access trace at each of N cached-token budgets PLUS one unbounded pass, and report the reuse-vs-budget curve, the infinite-cache theoretical ceiling, and the smallest budget that reaches 99% of it (the ROI knee).
Package cachesweep turns fak's radixkv prefix-cache engine into a budget→reuse SWEEP: replay ONE recorded prefix-access trace at each of N cached-token budgets PLUS one unbounded pass, and report the reuse-vs-budget curve, the infinite-cache theoretical ceiling, and the smallest budget that reaches 99% of it (the ROI knee).
cachevalue
Package cachevalue folds the persisted cache-savings ledger (docs/nightrun/cache-savings.jsonl) into per-session cache-efficiency metrics and flags regressions (#1992).
Package cachevalue folds the persisted cache-savings ledger (docs/nightrun/cache-savings.jsonl) into per-session cache-efficiency metrics and flags regressions (#1992).
cachevalueledger
Package cachevalueledger provides a durable, append-only ledger for cache-value observations from fak sessions (run/guard/serve).
Package cachevalueledger provides a durable, append-only ledger for cache-value observations from fak sessions (run/guard/serve).
cachevaluepost
Package cachevaluepost posts the cache-effectiveness P&L roll-up — fak's WITNESSED kernel cache-value trend — to a single Slack "cache-value" channel, so the fleet has one durable place where "is fak's cache method paying off, and is it trending up or down?" gets an honest, dogfooded answer on a cadence.
Package cachevaluepost posts the cache-effectiveness P&L roll-up — fak's WITNESSED kernel cache-value trend — to a single Slack "cache-value" channel, so the fleet has one durable place where "is fak's cache method paying off, and is it trending up or down?" gets an honest, dogfooded answer on a cadence.
cachevaluereport
Package cachevaluereport rolls up the durable kernel cache-value ledger (internal/cachevalueledger, docs/nightrun/cache-value.jsonl) into a TREND over time — the by-week / by-session_type view that cachevalueledger.ScoreLedger deliberately does not produce (it collapses every row into a single all-time aggregate gate number).
Package cachevaluereport rolls up the durable kernel cache-value ledger (internal/cachevalueledger, docs/nightrun/cache-value.jsonl) into a TREND over time — the by-week / by-session_type view that cachevalueledger.ScoreLedger deliberately does not produce (it collapses every row into a single all-time aggregate gate number).
cachewitness
Package cachewitness reads a live fak gateway's /metrics surface and folds the in-kernel KV-prefix cache family into ONE provenance-labeled evidence record: the cache VALUE a fak-served model (e.g.
Package cachewitness reads a live fak gateway's /metrics surface and folds the in-kernel KV-prefix cache family into ONE provenance-labeled evidence record: the cache VALUE a fak-served model (e.g.
cadencereport
Package cadencereport is the consolidated regular-cadence report -- one fold over the four cadence dimensions an operator tracks: scores, maturity, work-done, and releases.
Package cadencereport is the consolidated regular-cadence report -- one fold over the four cadence dimensions an operator tracks: scores, maturity, work-done, and releases.
callavoid
Package callavoid is the economics and effective-turn accounting for NOT making a local tool call — the principle that the cheapest, fastest, most reliable tool call is the one the kernel never has to dispatch.
Package callavoid is the economics and effective-turn accounting for NOT making a local tool call — the principle that the cheapest, fastest, most reliable tool call is the one the kernel never has to dispatch.
canon
Package canon is the de-obfuscating canonicalizer + lexical threat detector, factored out of internal/normgate so it is ONE primitive, tested ONCE, and reusable by every gate that needs to scan bytes for a hidden secret or injection on a normalized view — not just the write-time admitter.
Package canon is the de-obfuscating canonicalizer + lexical threat detector, factored out of internal/normgate so it is ONE primitive, tested ONCE, and reusable by every gate that needs to scan bytes for a hidden secret or injection on a normalized view — not just the write-time admitter.
capindex
Package capindex defines protocol-blind capability cards and lazy resolvers for skills, MCP tools, A2A agents, and other attachable affordances.
Package capindex defines protocol-blind capability cards and lazy resolvers for skills, MCP tools, A2A agents, and other attachable affordances.
capindexgw
Package capindexgw holds the gateway-backed capindex Resolvers (MCP tools, A2A methods).
Package capindexgw holds the gateway-backed capindex Resolvers (MCP tools, A2A methods).
catchupscore
Package catchupscore folds the dev system's "how caught up are we?" question into one control-pane scorecard.
Package catchupscore folds the dev system's "how caught up are we?" question into one control-pane scorecard.
categorybaseline
Package categorybaseline defines the explicit, repository-owned boundary between a good-enough completed category layer and the next layer that should receive capacity.
Package categorybaseline defines the explicit, repository-owned boundary between a good-enough completed category layer and the next layer that should receive capacity.
causalreceipt
Package causalreceipt records privacy-safe whole-turn causal evidence without requiring an external tracing SDK.
Package causalreceipt records privacy-safe whole-turn causal evidence without requiring an external tracing SDK.
cavemansafety
Package cavemansafety evaluates policy value and safety guardrails for the Caveman agent.
Package cavemansafety evaluates policy value and safety guardrails for the Caveman agent.
cdb
Package cdb provides the context debugger and core image inspection interface.
Package cdb provides the context debugger and core image inspection interface.
chatops
Package chatops is the inbound chatops DOOR — epic #2259 leaf C4 (#2264): the pure fold that turns one raw Slack message into either a closed-grammar verb the fleet operator controls understand, or a structured refusal.
Package chatops is the inbound chatops DOOR — epic #2259 leaf C4 (#2264): the pure fold that turns one raw Slack message into either a closed-grammar verb the fleet operator controls understand, or a structured refusal.
chatopsdetach
Package chatopsdetach provides the pure detached-execution decision kernel for chatops ACT verbs (dispatch, resume, bench).
Package chatopsdetach provides the pure detached-execution decision kernel for chatops ACT verbs (dispatch, resume, bench).
chatrelay
Package chatrelay bridges ONE Slack channel to an OpenAI-compatible chat endpoint: it reads new human messages from the channel (conversations.history), forwards each to a served /v1/chat/completions model, and posts the reply back in-thread (chat.postMessage).
Package chatrelay bridges ONE Slack channel to an OpenAI-compatible chat endpoint: it reads new human messages from the channel (conversations.history), forwards each to a served /v1/chat/completions model, and posts the reply back in-thread (chat.postMessage).
checkpointscore
Package checkpointscore is fak's deterministic WIP-checkpoint readiness scorecard.
Package checkpointscore is fak's deterministic WIP-checkpoint readiness scorecard.
childprocess
Package childprocess normalizes subprocess exit status.
Package childprocess normalizes subprocess exit status.
choicetriage
Package choicetriage decenters the human from a surfaced "choice".
Package choicetriage decenters the human from a surfaced "choice".
citeverify
Package citeverify mechanically checks source-code path:line citations.
Package citeverify mechanically checks source-code path:line citations.
claimcheck
Package claimcheck grades an efficiency/performance claim against the six questions of the net-true-value standard (docs/standards/net-true-value.md) and returns one of three verdicts: net-true / strawman / not-yet.
Package claimcheck grades an efficiency/performance claim against the six questions of the net-true-value standard (docs/standards/net-true-value.md) and returns one of three verdicts: net-true / strawman / not-yet.
clonescan
Package clonescan is the forward, authoring-time half of fak's clone detector.
Package clonescan is the forward, authoring-time half of fak's clone detector.
closebatch
Package closebatch groups witnessed-closeable issues into dry-run batches before any live close mutates GitHub.
Package closebatch groups witnessed-closeable issues into dry-run batches before any live close mutates GitHub.
closureaudit
Package closureaudit is a pure, stdlib-only port of the grader half of tools/issue_closure_audit.py (#1406): it binds commits to issue numbers from commit text (ClassifyRefs / RefsFromCommits), then grades each issue into exactly one witness bucket (Grade / Build) using the per-SHA `dos commit-audit` verdicts the caller supplies.
Package closureaudit is a pure, stdlib-only port of the grader half of tools/issue_closure_audit.py (#1406): it binds commits to issue numbers from commit text (ClassifyRefs / RefsFromCommits), then grades each issue into exactly one witness bucket (Grade / Build) using the per-SHA `dos commit-audit` verdicts the caller supplies.
closurerate
Package closurerate folds an issue-close ledger into throughput and witness honesty metrics.
Package closurerate folds an issue-close ledger into throughput and witness honesty metrics.
cloudhandoff
Package cloudhandoff defines explicit app-owned transitions from local to remote execution.
Package cloudhandoff defines explicit app-owned transitions from local to remote execution.
cloudroute
Package cloudroute detects a request-signed cloud model route (AWS Bedrock via SigV4, Google Vertex via ADC) whose base-URL repoint cannot take effect.
Package cloudroute detects a request-signed cloud model route (AWS Bedrock via SigV4, Google Vertex via ADC) whose base-URL repoint cannot take effect.
cmdutil
Package cmdutil holds small, behavior-identical helpers that were copy-pasted across the cmd/* demo and bench mains (argmax over logits, the LCG token-id generator, duration medians, the HTTP JSON writer).
Package cmdutil holds small, behavior-identical helpers that were copy-pasted across the cmd/* demo and bench mains (argmax over logits, the LCG token-id generator, duration medians, the HTTP JSON writer).
codebookmeta
Package codebookmeta defines neutral, versioned metadata for quantization codebooks and adjudicates whether a runtime can decode an artifact.
Package codebookmeta defines neutral, versioned metadata for quantization codebooks and adjudicates whether a runtime can decode an artifact.
codegraph
Package codegraph is a directed code knowledge-graph with breadth-first traversal — the "what reaches / what depends on this" seam (#3439, epic #3434, the capstone).
Package codegraph is a directed code knowledge-graph with breadth-first traversal — the "what reaches / what depends on this" seam (#3439, epic #3434, the capstone).
codelint
Package codelint is language-server packs: lint agent-written code (Go/Python/CUDA/JSON) off the hot path.
Package codelint is language-server packs: lint agent-written code (Go/Python/CUDA/JSON) off the hot path.
codesearch
Package codesearch composes the epic #3434 code-intelligence primitives into one user-facing engine — the wiring that turns four otherwise-orphan libraries into a tool someone can actually run:
Package codesearch composes the epic #3434 code-intelligence primitives into one user-facing engine — the wiring that turns four otherwise-orphan libraries into a tool someone can actually run:
codetools
Package codetools is the kernel-mediated coding toolset: real Read / Write / Edit / Bash / Grep / Glob engines the owned agent loop dispatches to through abi.RegisterEngine, the same seam internal/agent/readengine.go opened for `fak_read` (#795) — generalized from one read-only MCP tool to the full coding surface (#6658).
Package codetools is the kernel-mediated coding toolset: real Read / Write / Edit / Bash / Grep / Glob engines the owned agent loop dispatches to through abi.RegisterEngine, the same seam internal/agent/readengine.go opened for `fak_read` (#795) — generalized from one read-only MCP tool to the full coding surface (#6658).
codexlifecycle
analytics.go — the #4767 half of this leaf: native Codex critical-path and TYPED tool-outcome analytics over the same rollout store the #4785 lifecycle fold reads.
analytics.go — the #4767 half of this leaf: native Codex critical-path and TYPED tool-outcome analytics over the same rollout store the #4785 lifecycle fold reads.
codexmcpdiag
Package codexmcpdiag classifies Codex MCP startup evidence without exposing log bodies.
Package codexmcpdiag classifies Codex MCP startup evidence without exposing log bodies.
codexmcphealth
Package codexmcphealth diagnoses fak's Codex MCP transport/server health and reports the next recovery step instead of retrying a dead connection.
Package codexmcphealth diagnoses fak's Codex MCP transport/server health and reports the next recovery step instead of retrying a dead connection.
codexmemory
Package codexmemory is a READ-ONLY diagnostic over an OpenAI Codex home (default ~/.codex).
Package codexmemory is a READ-ONLY diagnostic over an OpenAI Codex home (default ~/.codex).
codexresume
Package codexresume is Runs Codex headless resumes to rollout-witnessed terminal outcomes..
Package codexresume is Runs Codex headless resumes to rollout-witnessed terminal outcomes..
codexsession
Package codexsession projects the typed Codex app-server protocol into fak's public harness event protocol.
Package codexsession projects the typed Codex app-server protocol into fak's public harness event protocol.
cohort
Package cohort provides cohort shrink, quorum agreement, and drift monitoring over comm.Group member sets.
Package cohort provides cohort shrink, quorum agreement, and drift monitoring over comm.Group member sets.
comm
Package comm is the first-class agent communicator: a deterministic, adjudicated group descriptor (rank/size/split + spawn membership) over the dos-arbitrate lane partition.
Package comm is the first-class agent communicator: a deterministic, adjudicated group descriptor (rank/size/split + spawn membership) over the dos-arbitrate lane partition.
commitintent
Package commitintent defines the durable, pure queue record that sits before an effectful fak commit drain.
Package commitintent defines the durable, pure queue record that sits before an effectful fak commit drain.
commitissuelink
Package commitissuelink is a closed, pure checker for one narrow drift: a commit that reads as real, tracked work (it carries this repo's own ship-stamp trailer, e.g.
Package commitissuelink is a closed, pure checker for one narrow drift: a commit that reads as real, tracked work (it carries this repo's own ship-stamp trailer, e.g.
commitlane
reclaim.go adds the DECISION half of stale-git-index.lock recovery on top of the read-only observer in status.go.
reclaim.go adds the DECISION half of stale-git-index.lock recovery on top of the read-only observer in status.go.
commitlifecycle
Package commitlifecycle folds independently witnessed repository facts into the one next safe move from agent-authored edits to a remotely witnessed ship.
Package commitlifecycle folds independently witnessed repository facts into the one next safe move from agent-authored edits to a remotely witnessed ship.
commitrollup
Package commitrollup plans compatible commit-intent batches without touching git.
Package commitrollup plans compatible commit-intent batches without touching git.
commitsubject
Package commitsubject reports witness-gradeable commit subject coverage.
Package commitsubject reports witness-gradeable commit subject coverage.
committedbuildwitness
Package committedbuildwitness shares successful immutable-HEAD build evidence between repository gates and dispatch preflight.
Package committedbuildwitness shares successful immutable-HEAD build evidence between repository gates and dispatch preflight.
committedtree
Package committedtree materializes committed git trees without reading a shared checkout's dirty worktree or index.
Package committedtree materializes committed git trees without reading a shared checkout's dirty worktree or index.
compactcohere
Package compactcohere is the coherence policy for the TWO context managers that stack, blind to each other, on the flagship `fak guard -- claude` boundary:
Package compactcohere is the coherence policy for the TWO context managers that stack, blind to each other, on the flagship `fak guard -- claude` boundary:
completiondist
Package completiondist folds historical issue-closure durations into an empirical duration distribution (count, min, max, mean, nearest-rank median, p95, and histogram buckets) used by the capacity model to size agent fleets.
Package completiondist folds historical issue-closure durations into an empirical duration distribution (count, min, max, mean, nearest-rank median, p95, and histogram buckets) used by the capacity model to size agent fleets.
composition
Package composition resolves and validates execution snapshots before resource allocation.
Package composition resolves and validates execution snapshots before resource allocation.
compute
Package compute implements hardware abstraction, tensor computation, memory slab management, and zero-copy device interconnect acceleration for the fak agent kernel.
Package compute implements hardware abstraction, tensor computation, memory slab management, and zero-copy device interconnect acceleration for the fak agent kernel.
computeadmit
Package computeadmit is the ONE shared admission kernel over the compute partitioners (#3269, parent epic #3259) — the compute-plane twin of regionadmit.Decide / laneadmit.Decide.
Package computeadmit is the ONE shared admission kernel over the compute partitioners (#3269, parent epic #3259) — the compute-plane twin of regionadmit.Decide / laneadmit.Decide.
computetrace
Package computetrace records bounded, opt-in compute events in a stable local artifact.
Package computetrace records bounded, opt-in compute events in a stable local artifact.
computetune
Package computetune turns replayable workload profiles into compatibility-bound kernel selections and deterministic storage-compute arbitration decisions.
Package computetune turns replayable workload profiles into compatibility-bound kernel selections and deterministic storage-compute arbitration decisions.
conceptbench
affordance.go — the tier-gated affordance-hint injection (#5380, parent #2741, epic #2721).
affordance.go — the tier-gated affordance-hint injection (#5380, parent #2741, epic #2721).
conceptusage
Package conceptusage scores the OVERALL dogfooding of fak's own concepts while fak itself is being developed by an agent fleet — the question "when we build fak, how much does that development route through fak's own primitives, versus generic agentic dev (raw git, unverified self-reports, no lane arbitration)?"
Package conceptusage scores the OVERALL dogfooding of fak's own concepts while fak itself is being developed by an agent fleet — the question "when we build fak, how much does that development route through fak's own primitives, versus generic agentic dev (raw git, unverified self-reports, no lane arbitration)?"
configguide
Package configguide turns user intent into minimal, reviewable fak.toml deltas.
Package configguide turns user intent into minimal, reviewable fak.toml deltas.
configsurface
Package configsurface scores fak.toml discoverability and default coverage.
Package configsurface scores fak.toml discoverability and default coverage.
conflationscore
Package conflationscore is the Go port of tools/conflation_scorecard.py -- the anti-conflation / provenance-honesty stick.
Package conflationscore is the Go port of tools/conflation_scorecard.py -- the anti-conflation / provenance-honesty stick.
conformance
Package conformance is the standalone, third-party-runnable fak safety-conformance suite (#453).
Package conformance is the standalone, third-party-runnable fak safety-conformance suite (#453).
containment
Package containment provides resource boundary accounting, slot capacity attribution, and hybrid cgroup vs parameter metadata max-pooling for unified memory APU inference.
Package containment provides resource boundary accounting, slot capacity attribution, and hybrid cgroup vs parameter metadata max-pooling for unified memory APU inference.
contextq
Package contextq is the on-demand context materializer over CDB images.
Package contextq is the on-demand context materializer over CDB images.
corelockaudit
Package corelockaudit is a read-only fold that maps changed paths to candidate core-lock classes and reports, per class, the witness that would clear it.
Package corelockaudit is a read-only fold that maps changed paths to candidate core-lock classes and reports, per class, the witness that would clear it.
corelockgate
Package corelockgate is the single owner of the hard-self core-lock question that EVERY path to the trunk must ask before a change lands.
Package corelockgate is the single owner of the hard-self core-lock question that EVERY path to the trunk must ask before a change lands.
corelocks
Package corelocks parses and validates a DECLARATIVE core-lock taxonomy: lock classes and reason tokens carried as DATA, not a hand-coded table.
Package corelocks parses and validates a DECLARATIVE core-lock taxonomy: lock classes and reason tokens carried as DATA, not a hand-coded table.
covmatrix
Package covmatrix is the C1 keystone of the combinatorial-growth epic (#1079/#1080): it derives fak's model × backend support grid from the kernel's own structural facts and folds the result into the shared scorecard control-pane as a growth_debt integer.
Package covmatrix is the C1 keystone of the combinatorial-growth epic (#1079/#1080): it derives fak's model × backend support grid from the kernel's own structural facts and folds the result into the shared scorecard control-pane as a growth_debt integer.
ctxknobs
Package ctxknobs is the MANUAL-OVERLAY COUNTER — R1 of the zero-knob automatic-context epic (#2199, epic #2198; spine docs/notes/CONCEPT-AUTOMATIC-CONTEXT-2026-07-01.md).
Package ctxknobs is the MANUAL-OVERLAY COUNTER — R1 of the zero-knob automatic-context epic (#2199, epic #2198; spine docs/notes/CONCEPT-AUTOMATIC-CONTEXT-2026-07-01.md).
ctxmmu
Package ctxmmu — the disposition-minting gate (issue #1598).
Package ctxmmu — the disposition-minting gate (issue #1598).
ctxplan
Package ctxplan is the context PLANNER: it treats the current turn's context as an O(1) materialized VIEW over the full, lossless history store, and re-plans that view each turn instead of letting the linear transcript grow without bound (or compacting it lossily).
Package ctxplan is the context PLANNER: it treats the current turn's context as an O(1) materialized VIEW over the full, lossless history store, and re-plans that view each turn instead of letting the linear transcript grow without bound (or compacting it lossily).
ctxplanlint
Package ctxplans is the CONTEXT-PLAN-REQUIRED advisory lint (R4, #2202, epic #2198).
Package ctxplans is the CONTEXT-PLAN-REQUIRED advisory lint (R4, #2202, epic #2198).
ctxplans
Package ctxplans is the CONTEXT-PLAN-REQUIRED advisory lint (R4, #2202, epic #2198).
Package ctxplans is the CONTEXT-PLAN-REQUIRED advisory lint (R4, #2202, epic #2198).
ctxresidency
Package ctxresidency is the context-residency query (issue #521): a first-class, witnessable READ over the span ledger that composes the three layers that already maintain the context's coherence state — kvmmu (the KV-level span ledger Admit/Evict maintains), ctxmmu (the byte-level quarantine/clearance ledger), and cachemeta (the residency tiers + the dependent-entry graph the eviction blast radius is read from).
Package ctxresidency is the context-residency query (issue #521): a first-class, witnessable READ over the span ledger that composes the three layers that already maintain the context's coherence state — kvmmu (the KV-level span ledger Admit/Evict maintains), ctxmmu (the byte-level quarantine/clearance ledger), and cachemeta (the residency tiers + the dependent-entry graph the eviction blast radius is read from).
cubicquanteval
Package cubicquanteval evaluates the pinned CubicQuant scalar codebook on a bounded, deterministic public fixture without making model-quality or GPU claims.
Package cubicquanteval evaluates the pinned CubicQuant scalar codebook on a bounded, deterministic public fixture without making model-quality or GPU claims.
cudaarch
Package cudaarch validates the repository's declared CUDA architecture matrix.
Package cudaarch validates the repository's declared CUDA architecture matrix.
customizationindex
Package customizationindex provides schema validation, freshness tracking, and structural grouping for agent customization indexes.
Package customizationindex provides schema validation, freshness tracking, and structural grouping for agent customization indexes.
cvregress
Package cvregress is per-session cache-efficiency (hit% + write-amp) regression flagging over the cache-savings ledger axes.
Package cvregress is per-session cache-efficiency (hit% + write-amp) regression flagging over the cache-savings ledger axes.
dataslot
Package dataslot provides dormant database discovery, descriptor validation, and zero-network capability slot management for AI agent environments.
Package dataslot provides dormant database discovery, descriptor validation, and zero-network capability slot management for AI agent environments.
deadlineadmit
Package deadlineadmit is a pure, tier-1 admission policy.
Package deadlineadmit is a pure, tier-1 admission policy.
decodemigrate
Package decodemigrate provides model decoding format migration utilities, KV cache state migration, and token decoding pipeline state transformations with fail-closed integrity checks.
Package decodemigrate provides model decoding format migration utilities, KV cache state migration, and token decoding pipeline state transformations with fail-closed integrity checks.
deepseekbench
Package deepseekbench is the pure core of the DeepSeek V4 Pro/Flash TTFT/TPOT/context-scaling SCORECARD (#3014, under the DeepSeek V4 support program #3006; complements the self-host wire-readiness runbook #3013).
Package deepseekbench is the pure core of the DeepSeek V4 Pro/Flash TTFT/TPOT/context-scaling SCORECARD (#3014, under the DeepSeek V4 support program #3006; complements the self-host wire-readiness runbook #3013).
deepseekv4kv
Package deepseekv4kv is a pure, weight-free block-accounting fixture for the DeepSeek V4 heterogeneous KV plane and its on-disk prefix-reuse policies.
Package deepseekv4kv is a pure, weight-free block-accounting fixture for the DeepSeek V4 heterogeneous KV plane and its on-disk prefix-reuse policies.
deepseekv4moe
Package deepseekv4moe is a pure, weight-free synthetic model of DeepSeek V4 Pro's all-MoE dispatch, used to lock the dispatch contract and compare naive per-expert scheduling against grouped/fused scheduling.
Package deepseekv4moe is a pure, weight-free synthetic model of DeepSeek V4 Pro's all-MoE dispatch, used to lock the dispatch contract and compare naive per-expert scheduling against grouped/fused scheduling.
defaultvaluescore
Package defaultvaluescore is the default-value scorecard -- the RECURRING GUARD for epic #1089's finding: fak value features that ship NOT-fully-enabled (compaction was illegible, amplification dead-on-proxy, vcache modeled, kvmmu unwired).
Package defaultvaluescore is the default-value scorecard -- the RECURRING GUARD for epic #1089's finding: fak value features that ship NOT-fully-enabled (compaction was illegible, amplification dead-on-proxy, vcache modeled, kvmmu unwired).
deletioncert
Package deletioncert mints and verifies a DeletionCertificate: a single, portable, re-checkable artifact that binds a bit-exact KV eviction to the tamper-evident audit journal that recorded it.
Package deletioncert mints and verifies a DeletionCertificate: a single, portable, re-checkable artifact that binds a bit-exact KV eviction to the tamper-evident audit journal that recorded it.
deliverystages
Package deliverystages is the canonical inventory of agent-development delivery stages and bottleneck boundaries.
Package deliverystages is the canonical inventory of agent-development delivery stages and bottleneck boundaries.
demo
Package demo is the pure logic behind the `fak demo` verb: fak's canonical 60-second offline proof, run end-to-end through the REAL kernel.
Package demo is the pure logic behind the `fak demo` verb: fak's canonical 60-second offline proof, run end-to-end through the REAL kernel.
demoassert
Package demoassert records self-check failures for runnable demonstrations.
Package demoassert records self-check failures for runnable demonstrations.
demoui
Package demoui holds the small, cross-cutting helpers the on-box demos (cmd/demorace, cmd/ctxdemo, cmd/simpledemo, ...) share, so they all report the SAME thing about the machine and never freeze on a long blocking phase.
Package demoui holds the small, cross-cutting helpers the on-box demos (cmd/demorace, cmd/ctxdemo, cmd/simpledemo, ...) share, so they all report the SAME thing about the machine and never freeze on a long blocking phase.
demoutil
Package demoutil holds the small server-sent-events scaffolding shared by the browser-facing demo binaries (cmd/ctxdemo, cmd/demorace): both stream the same JSON-object events to their viewer over an identical text/event-stream writer.
Package demoutil holds the small server-sent-events scaffolding shared by the browser-facing demo binaries (cmd/ctxdemo, cmd/demorace): both stream the same JSON-object events to their viewer over an identical text/event-stream writer.
dependencyquarantine
Package dependencyquarantine enforces the repository dependency budget and ensures external dependencies remain quarantined in isolated tools submodules.
Package dependencyquarantine enforces the repository dependency budget and ensures external dependencies remain quarantined in isolated tools submodules.
deploymanifest
Package deploymanifest defines the unified `fak.toml` all-in-one deployment manifest (issue #3421, Workstream E of epic #3256) and its fail-closed loader.
Package deploymanifest defines the unified `fak.toml` all-in-one deployment manifest (issue #3421, Workstream E of epic #3256) and its fail-closed loader.
deployment
Package deployment provides deterministic derivations, content-addressed realizations, and immutable activation generations.
Package deployment provides deterministic derivations, content-addressed realizations, and immutable activation generations.
depthadmit
Package depthadmit is pure depth fold: witnessed plan-phase coverage, the depth frontier, and the closure/persistence admission that drives one line of work to declared depth.
Package depthadmit is pure depth fold: witnessed plan-phase coverage, the depth frontier, and the closure/persistence admission that drives one line of work to declared depth.
devcheckpoint
Package devcheckpoint records concise, durable agent progress milestones.
Package devcheckpoint records concise, durable agent progress milestones.
devcmd
Package devcmd hosts repository-development command implementations shared by the temporary compatibility surface in fak and the independent fak-dev binary.
Package devcmd hosts repository-development command implementations shared by the temporary compatibility surface in fak and the independent fak-dev binary.
devexmeter
Package devexmeter is dev-ex friction meter and RSI close gate.
Package devexmeter is dev-ex friction meter and RSI close gate.
devhandoff
Package devhandoff defines the compatibility boundary between runtime fak and the separately linked fak-dev executable.
Package devhandoff defines the compatibility boundary between runtime fak and the separately linked fak-dev executable.
devindex
Package devindex is queryable self-index over fak's own dev facts (lanes/leaves + doc map): query, don't survey.
Package devindex is queryable self-index over fak's own dev facts (lanes/leaves + doc map): query, don't survey.
disambiguation
Package disambiguation defines the canonical machine-readable record shared by fak's terminology index generator and readers.
Package disambiguation defines the canonical machine-readable record shared by fak's terminology index generator and readers.
discoveryrouter
Package discoveryrouter coordinates multi-source discovery routing across documentation, active sessions, locator records, and fleet search adapters.
Package discoveryrouter coordinates multi-source discovery routing across documentation, active sessions, locator records, and fleet search adapters.
dispatchaging
Package dispatchaging is the deterministic anti-starvation term the fak issue-dispatch order is missing: given a set of READY (already dispatchable) work units, it decides which one a worker should pick FIRST when raw priority alone would let a low-priority unit wait forever.
Package dispatchaging is the deterministic anti-starvation term the fak issue-dispatch order is missing: given a set of READY (already dispatchable) work units, it decides which one a worker should pick FIRST when raw priority alone would let a low-priority unit wait forever.
dispatchaudit
Package dispatchaudit classifies dispatch-fleet worker outcomes and rolls up the wasted-spawn / wasted-wall-clock that `fak dispatch status` (backend health) does not surface.
Package dispatchaudit classifies dispatch-fleet worker outcomes and rolls up the wasted-spawn / wasted-wall-clock that `fak dispatch status` (backend health) does not surface.
dispatchauto
Package dispatchauto is auto-size a multi-account dispatch wave from live ceilings; pure fold, no I/O.
Package dispatchauto is auto-size a multi-account dispatch wave from live ceilings; pure fold, no I/O.
dispatchcache
Package dispatchcache provides in-memory and on-disk caching mechanisms for dispatch queue snapshots, routed backlog state, and delta watermarks.
Package dispatchcache provides in-memory and on-disk caching mechanisms for dispatch queue snapshots, routed backlog state, and delta watermarks.
dispatchconservation
Package dispatchconservation is the worker-unit conservation ledger for the dispatch fleet: over a window, units_spent = accounted + leaked, so a worker-unit that dies ungraded reads as a LEAK count, not as silence.
Package dispatchconservation is the worker-unit conservation ledger for the dispatch fleet: over a window, units_spent = accounted + leaked, so a worker-unit that dies ungraded reads as a LEAK count, not as silence.
dispatchdoa
Package dispatchdoa detects DOA (dead-on-arrival) dispatch spawns: a worker that the dispatcher DID spawn but that died before it ever began work.
Package dispatchdoa detects DOA (dead-on-arrival) dispatch spawns: a worker that the dispatcher DID spawn but that died before it ever began work.
dispatchorder
compute_contend.go — the EXPORTED reuse surface of the compute-claim collision machinery (#3269, parent epic #3259): the same class/mode/range fold that computeCollision prices fan-out candidates with, factored out so the shared compute admission kernel (internal/computeadmit) and any compute placer answer with IDENTICAL contention semantics instead of growing a private twin.
compute_contend.go — the EXPORTED reuse surface of the compute-claim collision machinery (#3269, parent epic #3259): the same class/mode/range fold that computeCollision prices fan-out candidates with, factored out so the shared compute admission kernel (internal/computeadmit) and any compute placer answer with IDENTICAL contention semantics instead of growing a private twin.
dispatchpost
Package dispatchpost posts the RESULT of a background code-dispatch run — the thing `fak loop run -- <cmd>` produces — to a Slack "dispatch" channel.
Package dispatchpost posts the RESULT of a background code-dispatch run — the thing `fak loop run -- <cmd>` produces — to a Slack "dispatch" channel.
dispatchsweep
Package dispatchsweep is the queue-drain loop core: find next issue -> spawn one worker -> repeat, until a tick refuses or the best-effort agent ceiling is hit.
Package dispatchsweep is the queue-drain loop core: find next issue -> spawn one worker -> repeat, until a tick refuses or the best-effort agent ceiling is hit.
dispatchtick
Package dispatchtick holds the pure contract for one issue-resolution dispatch tick.
Package dispatchtick holds the pure contract for one issue-resolution dispatch tick.
docfreshrsi
Package docfreshrsi is the RSI rung of the durable docs-freshness loop (epic #1278, issue #1284): it auto-applies the MECHANICAL doc-defect fixes — a missing orientation signpost, a missing `Read next` outbound link, a stale version pin — and keeps a candidate ONLY through internal/shipgate's non-forgeable keep-bit, on a witness the loop DERIVES itself.
Package docfreshrsi is the RSI rung of the durable docs-freshness loop (epic #1278, issue #1284): it auto-applies the MECHANICAL doc-defect fixes — a missing orientation signpost, a missing `Read next` outbound link, a stale version pin — and keeps a candidate ONLY through internal/shipgate's non-forgeable keep-bit, on a witness the loop DERIVES itself.
dockerprocess
Package dockerprocess owns the bounded Docker CLI process-launch seam used by off-path control operations.
Package dockerprocess owns the bounded Docker CLI process-launch seam used by off-path control operations.
docreach
Package docreach computes named document-reachability censuses from an immutable corpus.
Package docreach computes named document-reachability censuses from an immutable corpus.
docrender
Package docrender turns this repo's Markdown into a print-ready HTML page and, behind the same verb, into a PDF — with no new module dependency, and with the browser wrapped rather than handed to a human.
Package docrender turns this repo's Markdown into a print-ready HTML page and, behind the same verb, into a PDF — with no new module dependency, and with the browser wrapped rather than handed to a human.
docsearch
Package docsearch loads and searches the repository's curated documentation map.
Package docsearch loads and searches the repository's curated documentation map.
dogfoodissues
Package dogfoodissues is the backlog bridge from the recent-feature dogfood scorecard to a stable, deduplicated GitHub issue per ACTION item.
Package dogfoodissues is the backlog bridge from the recent-feature dogfood scorecard to a stable, deduplicated GitHub issue per ACTION item.
dogfoodscore
Package dogfoodscore scores the launched-session dogfooding loop.
Package dogfoodscore scores the launched-session dogfooding loop.
dojo
Package dojo is fak's prediction-vs-reality gym: the closed loop that turns a token-saving THEORY ("this lever saves X") into a scored, trended verdict against billed reality.
Package dojo is fak's prediction-vs-reality gym: the closed loop that turns a token-saving THEORY ("this lever saves X") into a scored, trended verdict against billed reality.
dojocal
Package dojocal is the dojo-RSI loop's PURE proposer + self-scoring rung — the genuinely-safe autonomous slice that MUTATES NOTHING (Phase 1 of docs/fak/dojo-rsi-loop.md, issue #1023).
Package dojocal is the dojo-RSI loop's PURE proposer + self-scoring rung — the genuinely-safe autonomous slice that MUTATES NOTHING (Phase 1 of docs/fak/dojo-rsi-loop.md, issue #1023).
dojopost
Package dojopost formats and publishes fak DOJO calibration rollups and trends to Slack.
Package dojopost formats and publishes fak DOJO calibration rollups and trends to Slack.
doomloop
Package doomloop is the two-axis doom-loop classifier: it folds a live worker's effort-vs-verified-progress sample window into a closed verdict and a graduated, reversible-first correction recommendation.
Package doomloop is the two-axis doom-loop classifier: it folds a live worker's effort-vs-verified-progress sample window into a closed verdict and a graduated, reversible-first correction recommendation.
dormancy
Package dormancy is the dormancy clock + horizon bucketer: the one place that turns "how long was this agent/session/lease off?" into a first-class, measured quantity.
Package dormancy is the dormancy clock + horizon bucketer: the one place that turns "how long was this agent/session/lease off?" into a first-class, measured quantity.
dormancysim
Package dormancysim is the deterministic time-travel harness for fak's dormancy organs (epic #1178, Phase 3, #1192): the acceptance substrate every other child is exercised through.
Package dormancysim is the deterministic time-travel harness for fak's dormancy organs (epic #1178, Phase 3, #1192): the acceptance substrate every other child is exercised through.
dosadapter
Package dosadapter provides the adapter bridge between the fak agent kernel and the DOS trust substrate, handling arbitration requests, lease verification, claim witnessing, and structured refusal translation with fail-closed semantics.
Package dosadapter provides the adapter bridge between the fak agent kernel and the DOS trust substrate, handling arbitration requests, lease verification, claim witnessing, and structured refusal translation with fail-closed semantics.
dosdecision
Package dosdecision revalidates DOS decision rows against the kernel's live lane-lease set.
Package dosdecision revalidates DOS decision rows against the kernel's live lane-lease set.
dropin
Package dropin is the canonical drop-in wire resolution + known-agent registry shared by fak guard and the entry-point demo.
Package dropin is the canonical drop-in wire resolution + known-agent registry shared by fak guard and the entry-point demo.
dsparity
Package dsparity is the pure, OFFLINE parity-harness SPECIFICATION for future DeepSeek-V4 native kernels (#3021, under the DeepSeek V4 support program #3006; sibling of the docs/deepseek/*.md and docs/notes/DEEPSEEK-V4-*.md plan notes).
Package dsparity is the pure, OFFLINE parity-harness SPECIFICATION for future DeepSeek-V4 native kernels (#3021, under the DeepSeek V4 support program #3006; sibling of the docs/deepseek/*.md and docs/notes/DEEPSEEK-V4-*.md plan notes).
edgequal
Package edgequal validates the physical low-resource offline witness for issue #8600.
Package edgequal validates the physical low-resource offline witness for issue #8600.
edittx
Package edittx applies a batch of full-file edits as one working-tree transaction: every target is snapshotted first, checks run against the applied set, and any failure restores the touched files before returning.
Package edittx applies a batch of full-file edits as one working-tree transaction: every target is snapshotted first, checks run against the applied set, and any failure restores the touched files before returning.
egressfloor
Delivery ADAPTERS: the typed plug point an outbound platform surface implements, issue #2883 (Track D, #2834) — the second half of the delivery floor whose adjudicator lands in delivery.go.
Delivery ADAPTERS: the typed plug point an outbound platform surface implements, issue #2883 (Track D, #2834) — the second half of the delivery floor whose adjudicator lands in delivery.go.
egresslist
Package egresslist is the nuanced, adblock-style site allow/block layer that sits ABOVE the hardwired cloud-metadata egress floor (internal/egressfloor) and BELOW the restrictive WebFetch research allowlist.
Package egresslist is the nuanced, adblock-style site allow/block layer that sits ABOVE the hardwired cloud-metadata egress floor (internal/egressfloor) and BELOW the restrictive WebFetch research allowlist.
egressrefresh
Package egressrefresh re-fetches the bundled egress filter lists (internal/egresslist/lists) from their recorded provenance URLs, re-normalizes them through the SAME ingest path the kernel compiles, and rewrites the checked-in artifact plus its pinned checksum.
Package egressrefresh re-fetches the bundled egress filter lists (internal/egresslist/lists) from their recorded provenance URLs, re-normalizes them through the SAME ingest path the kernel compiles, and rewrites the checked-in artifact plus its pinned checksum.
engine
Package engine is the inference-engine seam (the EngineDriver).
Package engine is the inference-engine seam (the EngineDriver).
enginecache
Package enginecache binds cachemeta's remote invalidation directives to documented serving-engine control endpoints.
Package enginecache binds cachemeta's remote invalidation directives to documented serving-engine control endpoints.
envconfiglint
Package envconfiglint is the CONFIG_NOT_ENV ratchet: the durable gate that keeps behavioral configuration out of the environment (issue #2863, Track G / epic #2834).
Package envconfiglint is the CONFIG_NOT_ENV ratchet: the durable gate that keeps behavioral configuration out of the environment (issue #2863, Track G / epic #2834).
epicprogress
Package epicprogress resolves how complete a GitHub epic is from its children, via a provenance-honest priority chain.
Package epicprogress resolves how complete a GitHub epic is from its children, via a provenance-honest priority chain.
epochbridge
Package epochbridge is the explicit converter between the two epoch/generation lineages of the ONE agent lineage family (epic #912, child #914): the served session's continuation lineage (internal/session — continuationID + State.Generation, a parent that on budget exhaustion re-continues into a fresh-budget child) and the kernel's speculation lineage (internal/abi — SpeculationContext{Epoch,ParentEpoch} + Outcome, a parent that spawns provisional children that commit or get discarded).
Package epochbridge is the explicit converter between the two epoch/generation lineages of the ONE agent lineage family (epic #912, child #914): the served session's continuation lineage (internal/session — continuationID + State.Generation, a parent that on budget exhaustion re-continues into a fresh-budget child) and the kernel's speculation lineage (internal/abi — SpeculationContext{Epoch,ParentEpoch} + Outcome, a parent that spawns provisional children that commit or get discarded).
escalation
Package escalation defines fak.escalation.v1 — the ONE typed escalation packet every interrupt surface shares (#2271, epic #2269, spine R2 of docs/notes/CONCEPT-NO-BABYSITTING-2026-07-01.md).
Package escalation defines fak.escalation.v1 — the ONE typed escalation packet every interrupt surface shares (#2271, epic #2269, spine R2 of docs/notes/CONCEPT-NO-BABYSITTING-2026-07-01.md).
estimatecal
Package estimatecal learns estimate-to-observed-token correction ratios.
Package estimatecal learns estimate-to-observed-token correction ratios.
evebridge
Package evebridge is the pure core of the fak <-> eve bridge (#2600).
Package evebridge is the pure core of the fak <-> eve bridge (#2600).
eveimport
Package eveimport is the read-only importer for issue #2606: it folds saved Eve observability artifacts — an NDJSON session stream and/or OpenTelemetry spans carrying `eve.*` / `$eve.*` attributes — into fak's session-ledger row shape, so an Eve run can be debugged with fak's witnessed-status discipline instead of dashboard-only inspection.
Package eveimport is the read-only importer for issue #2606: it folds saved Eve observability artifacts — an NDJSON session stream and/or OpenTelemetry spans carrying `eve.*` / `$eve.*` attributes — into fak's session-ledger row shape, so an Eve run can be debugged with fak's witnessed-status discipline instead of dashboard-only inspection.
eveparity
Package eveparity is the CI-runnable witness for issue #2605: it runs a fixture Eve-shaped eval suite once "raw" (against a fixture model directly) and once "fak-routed" (the same suite with every model call flowing through fak's real gateway proxy), then proves the two arms agree — and, crucially, that fak never silently downgrades a hard Eve gate FAILURE into a soft observation.
Package eveparity is the CI-runnable witness for issue #2605: it runs a fixture Eve-shaped eval suite once "raw" (against a fixture model directly) and once "fak-routed" (the same suite with every model call flowing through fak's real gateway proxy), then proves the two arms agree — and, crucially, that fak never silently downgrades a hard Eve gate FAILURE into a soft observation.
exclusivefile
Package exclusivefile creates process marker files atomically.
Package exclusivefile creates process marker files atomically.
execrollup
Package execrollup is the executive activity roll-up: one read-only fold that turns the firehose of agentic-fleet signals into a single signal-dense page a human can read in a glance — the answer to "how does one person keep up with a city of agents".
Package execrollup is the executive activity roll-up: one read-only fold that turns the firehose of agentic-fleet signals into a single signal-dense page a human can read in a glance — the answer to "how does one person keep up with a city of agents".
executionroute
Package executionroute composes harness, model, and session routing into one inspectable execution decision without collapsing their distinct policies.
Package executionroute composes harness, model, and session routing into one inspectable execution decision without collapsing their distinct policies.
experiments
Package experiments reads experiment ledgers and finds model/backend overlap across the repo's benchmark and research registries.
Package experiments reads experiment ledgers and finds model/backend overlap across the repo's benchmark and research registries.
extensionfault
Package extensionfault supervises optional extension subprocesses behind bounded startup/call deadlines and a per-extension circuit breaker.
Package extensionfault supervises optional extension subprocesses behind bounded startup/call deadlines and a per-extension circuit breaker.
fabricmap
Package fabricmap plans transfers over a directed graph of storage, memory, compute, and fabric endpoints without assigning semantic meaning to tier names.
Package fabricmap plans transfers over a directed graph of storage, memory, compute, and fabric endpoints without assigning semantic meaning to tier names.
fakrpc
Package fakrpc is the pure, transport-neutral core of disaggregated agent-RPC over a text-only control bridge (#930): the request envelope a caller spools to a resident worker, and the FAKRES nonce/sha frame the worker wraps its result in.
Package fakrpc is the pure, transport-neutral core of disaggregated agent-RPC over a text-only control bridge (#930): the request envelope a caller spools to a resident worker, and the FAKRES nonce/sha frame the worker wraps its result in.
fastintent
Package fastintent joins the latency-intent plan, provider readback, and quality-constrained evaluator into one replayable receipt.
Package fastintent joins the latency-intent plan, provider readback, and quality-constrained evaluator into one replayable receipt.
faultlab
Package faultlab provides a fault injection laboratory for agentic serving, network stream disruptions, JSON corruption, mid-turn truncation, and simulated kernel faults.
Package faultlab provides a fault injection laboratory for agentic serving, network stream disruptions, JSON corruption, mid-turn truncation, and simulated kernel faults.
findingsink
Package findingsink is a general-purpose sink seam for scorecard findings: a producer folds its debt into neutral Findings and hands them to a Sink, without knowing whether the sink is a terminal dry-run, a durable local ledger, or GitHub issues.
Package findingsink is a general-purpose sink seam for scorecard findings: a producer folds its debt into neutral Findings and hands them to a Sink, without knowing whether the sink is a terminal dry-run, a durable local ledger, or GitHub issues.
fleet
Package fleet is the public, transport-agnostic core for operating a fleet of boxes — GPU servers, worker nodes — an operator drives over the private Slack control-bridge.
Package fleet is the public, transport-agnostic core for operating a fleet of boxes — GPU servers, worker nodes — an operator drives over the private Slack control-bridge.
fleetaccounts
Package fleetaccounts provides account discovery, capability routing, status folding, and lifecycle tracking across Claude Code, Codex, and opencode worker accounts.
Package fleetaccounts provides account discovery, capability routing, status folding, and lifecycle tracking across Claude Code, Codex, and opencode worker accounts.
fleetbus
Package fleetbus is the fleet control bus (#5600, epic #5599): the transport-neutral data contract that lets ONE control point address N live fak instances, carry a payload to them, and — the load-bearing half — learn which of them actually applied it.
Package fleetbus is the fleet control bus (#5600, epic #5599): the transport-neutral data contract that lets ONE control point address N live fak instances, carry a payload to them, and — the load-bearing half — learn which of them actually applied it.
fleetcap
Package fleetcap is a Little's-law capacity calculator: it translates a target issue-resolution rate and a median agent-session duration into the number of concurrent workers that must be in flight to sustain that rate.
Package fleetcap is a Little's-law capacity calculator: it translates a target issue-resolution rate and a median agent-session duration into the number of concurrent workers that must be in flight to sustain that rate.
fleetcompare
Package fleetcompare provides utilities for slicing and comparing multi-node fleet metrics.
Package fleetcompare provides utilities for slicing and comparing multi-node fleet metrics.
fleetfreeze
Package fleetfreeze is the operator freeze gate for the parallel-agent dispatch fleet: a documented switch that HOLDS new worker spawns while STILL ALLOWING the progress-harvesting paths (witness-close and status-refresh) to keep running.
Package fleetfreeze is the operator freeze gate for the parallel-agent dispatch fleet: a documented switch that HOLDS new worker spawns while STILL ALLOWING the progress-harvesting paths (witness-close and status-refresh) to keep running.
fleetmemory
Package fleetmemory is the cross-agent lessons ledger (#2141) and its write-time duplicate guard (#2142).
Package fleetmemory is the cross-agent lessons ledger (#2141) and its write-time duplicate guard (#2142).
fleetmetrics
Package fleetmetrics is a pure duration-percentile fold over worker-session records.
Package fleetmetrics is a pure duration-percentile fold over worker-session records.
fleetmon
Package fleetmon is the evidence-derived monitor, janitor, ledger, and replacement engine for a headless-worker fleet run (#1856–#1859).
Package fleetmon is the evidence-derived monitor, janitor, ledger, and replacement engine for a headless-worker fleet run (#1856–#1859).
fleetpane
Package fleetpane folds fleet loop, process, and host checks into the operator control-pane view.
Package fleetpane folds fleet loop, process, and host checks into the operator control-pane view.
fleetreap
Package fleetreap provides bounded retention and footprint measurement for per-session fleet artifacts.
Package fleetreap provides bounded retention and footprint measurement for per-session fleet artifacts.
fleetsearch
Package fleetsearch joins the durable lifecycle, child-registration, and tool-process stores into one read-only operational session search.
Package fleetsearch joins the durable lifecycle, child-registration, and tool-process stores into one read-only operational session search.
fleetsim
Package fleetsim provides a deterministic synthetic-ledger model for the "safe 400 GitHub issues/hour parallel-agent throughput" program (issue #1819, fleet-400iph).
Package fleetsim provides a deterministic synthetic-ledger model for the "safe 400 GitHub issues/hour parallel-agent throughput" program (issue #1819, fleet-400iph).
fleetspine
Package fleetspine is the networking-aware self-discovery spine for the fleet-control pane.
Package fleetspine is the networking-aware self-discovery spine for the fleet-control pane.
fleetverify
Package fleetverify provides compile-time verification and structural validation of the fleet brief reporting and health collection helpers.
Package fleetverify provides compile-time verification and structural validation of the fleet brief reporting and health collection helpers.
flock
Package flock is a cross-platform, non-blocking advisory file lock on an open *os.File.
Package flock is a cross-platform, non-blocking advisory file lock on an open *os.File.
flowcredit
Package flowcredit is the receiver-granted credit ledger for cross-node KV block transfer backpressure (#5293, epic #5289 mooncake-study).
Package flowcredit is the receiver-granted credit ledger for cross-node KV block transfer backpressure (#5293, epic #5289 mooncake-study).
flowmetrics
Package flowmetrics measures how work actually flows through this repo, so that "reduce WIP" becomes a number instead of a feeling.
Package flowmetrics measures how work actually flows through this repo, so that "reduce WIP" becomes a number instead of a feeling.
focusscore
Package focusscore grades the ONE thing the per-objective trajectory-control fold cannot see: is the fleet as a whole CONVERGING on its live goal, or fanning out too broad — many objectives declared active at once, detours run past budget while their parents sit paused, open objectives drifting or stalled instead of moving?
Package focusscore grades the ONE thing the per-objective trajectory-control fold cannot see: is the fleet as a whole CONVERGING on its live goal, or fanning out too broad — many objectives declared active at once, detours run past budget while their parents sit paused, open objectives drifting or stalled instead of moving?
fp4meta
Package fp4meta defines neutral metadata and capability decisions for FP4 artifacts.
Package fp4meta defines neutral metadata and capability decisions for FP4 artifacts.
fp4runtime
Package fp4runtime negotiates versioned FP4 and microscaling artifacts against exact runtime, GPU-architecture, and accumulator profiles.
Package fp4runtime negotiates versioned FP4 and microscaling artifacts against exact runtime, GPU-architecture, and accumulator profiles.
framebus
Package framebus provides a high-throughput, thread-safe frame distribution bus for event streaming, telemetry frames, and inter-component messaging with configurable backpressure handling and fail-closed buffer semantics.
Package framebus provides a high-throughput, thread-safe frame distribution bus for event streaming, telemetry frames, and inter-component messaging with configurable backpressure handling and fail-closed buffer semantics.
framevisibility
Command relativity-frame-loss folds captured Claude Code session transcripts into the master-frame vs subagent-frame comparison required by fak issue #6574.
Command relativity-frame-loss folds captured Claude Code session transcripts into the master-frame vs subagent-frame comparison required by fak issue #6574.
frontierswe
Package frontierswe is the dataset spine for FrontierSWE — Proximal Labs' time-to-solution benchmark of 17 long-horizon engineering tasks (a C-to-Zig port, an ffmpeg swscale rewrite, an RL post-training run, …).
Package frontierswe is the dataset spine for FrontierSWE — Proximal Labs' time-to-solution benchmark of 17 long-horizon engineering tasks (a C-to-Zig port, an ffmpeg swscale rewrite, an RL post-training run, …).
frontmatter
Package frontmatter contains the dependency-free scalar semantics shared by FAK's deliberately flat YAML frontmatter readers.
Package frontmatter contains the dependency-free scalar semantics shared by FAK's deliberately flat YAML frontmatter readers.
fusedturn
Package fusedturn is the executable form of the fak thesis — the FUSED agent kernel — at the level of ONE TURN: a turn may spawn BOTH a classical operation (a deterministic tool call, a git commit, a lease, a verify) AND a weight-based operation (a model forward: an inference, an ensemble member, an expert dispatch), and BOTH cross the SAME default-deny adjudication floor.
Package fusedturn is the executable form of the fak thesis — the FUSED agent kernel — at the level of ONE TURN: a turn may spawn BOTH a classical operation (a deterministic tool call, a git commit, a lease, a verify) AND a weight-based operation (a model forward: an inference, an ensemble member, an expert dispatch), and BOTH cross the SAME default-deny adjudication floor.
gardenbudget
Package gardenbudget provides the durable checkpoint primitive used by `fak garden tick` to keep one maintenance pass inside a wall-clock budget.
Package gardenbudget provides the durable checkpoint primitive used by `fak garden tick` to keep one maintenance pass inside a wall-clock budget.
gardenbundle
Package gardenbundle is the garden bundle -- one default-on fold over the repo's read-only gardening passes.
Package gardenbundle is the garden bundle -- one default-on fold over the repo's read-only gardening passes.
gateway
Delivery send path: the live gateway seam that puts an OUTBOUND PLATFORM MESSAGE (Telegram/Discord/Slack/WhatsApp/Signal) through the egress capability floor (internal/egressfloor) before it leaves the box.
Delivery send path: the live gateway seam that puts an OUTBOUND PLATFORM MESSAGE (Telegram/Discord/Slack/WhatsApp/Signal) through the egress capability floor (internal/egressfloor) before it leaves the box.
gatewayusageledger
Package gatewayusageledger provides a durable, append-only JSONL ledger for the gateway's FULL served-turn counter family (issue #1610, child B of epic #1601): kernel submits/vDSO-hits/denies/quarantines, provider-cache economy (read/write tokens), compaction, and tool-prune savings.
Package gatewayusageledger provides a durable, append-only JSONL ledger for the gateway's FULL served-turn counter family (issue #1610, child B of epic #1601): kernel submits/vDSO-hits/denies/quarantines, provider-cache economy (read/write tokens), compaction, and tool-prune savings.
gcpgpu
Package gcpgpu manages GCP GPU fleet compute nodes, accelerator descriptors (L4, A100, H100, T4), health probes, VRAM capacity calculation, quota tracking, and remote dispatch readiness.
Package gcpgpu manages GCP GPU fleet compute nodes, accelerator descriptors (L4, A100, H100, T4), health probes, VRAM capacity calculation, quota tracking, and remote dispatch readiness.
geminicache
Package geminicache adapts Google's explicit CachedContent lifecycle into fak-visible, provider-witnessed cache state.
Package geminicache adapts Google's explicit CachedContent lifecycle into fak-visible, provider-witnessed cache state.
generalizationdebt
Package generalizationdebt detects production implementations whose shape is coupled to one model, backend, or provider instead of an interface or registry.
Package generalizationdebt detects production implementations whose shape is coupled to one model, backend, or provider instead of an interface or registry.
generation
Package generation normalizes the project board's delivery horizon vocabulary.
Package generation normalizes the project board's delivery horizon vocabulary.
generationctl
Package generationctl coordinates live generation epochs, steering directives, and compute handoffs.
Package generationctl coordinates live generation epochs, steering directives, and compute handoffs.
genlock
Package genlock is a render-determinism lock: it keys a generator's freshness check on a hash of the generator's INPUT, never on a comparison of its output.
Package genlock is a render-determinism lock: it keys a generator's freshness check on a hash of the generator's INPUT, never on a comparison of its output.
ggufinterop
Package ggufinterop maps parsed GGUF artifacts into fak's neutral quantization contract.
Package ggufinterop maps parsed GGUF artifacts into fak's neutral quantization contract.
ggufload
Package ggufload parses GGUF metadata and tensor directories for off-path model loading.
Package ggufload parses GGUF metadata and tensor directories for off-path model loading.
ghexec
Package ghexec builds deadlined `gh` invocations (issue #3473).
Package ghexec builds deadlined `gh` invocations (issue #3473).
ghspam
Package ghspam scans untrusted GitHub issue and PR comments for known abuse patterns, including fake patch/fix lures and malicious release archive links.
Package ghspam scans untrusted GitHub issue and PR comments for known abuse patterns, including fake patch/fix lures and malicious release archive links.
gitbroker
Package gitbroker is rung 3 of epic #5619 (#5622): a resident, per-repo git query broker that separate short-lived client processes share over one Unix-domain socket.
Package gitbroker is rung 3 of epic #5619 (#5622): a resident, per-repo git query broker that separate short-lived client processes share over one Unix-domain socket.
gitdaily
Package gitdaily is the once-a-day unattended git-hygiene tick for an always-hot, shared, multi-session clone — the thing an OS scheduler fires at 03:00 so the object DB and the lock state stay healthy without a human in the loop.
Package gitdaily is the once-a-day unattended git-hygiene tick for an always-hot, shared, multi-session clone — the thing an OS scheduler fires at 03:00 so the object DB and the lock state stay healthy without a human in the loop.
gitgate
fsmonitor_repair.go — the OPERATOR-INVOKED repair half of the fsmonitor-drift story (#5068, follow-up to #4603's detector).
fsmonitor_repair.go — the OPERATOR-INVOKED repair half of the fsmonitor-drift story (#5068, follow-up to #4603's detector).
gitresource
Package gitresource defines the ownership vocabulary used to reason about shared Git repositories, linked worktrees, and cleanup authority.
Package gitresource defines the ownership vocabulary used to reason about shared Git repositories, linked worktrees, and cleanup authority.
glm52prefillsweep
Package glm52prefillsweep is the GLM-5.2 pure-fak PREFILL-latency sweep driver — the Go port of the retired tools/glm52_prefill_sweep.py (lever L9; #3085/#3086).
Package glm52prefillsweep is the GLM-5.2 pure-fak PREFILL-latency sweep driver — the Go port of the retired tools/glm52_prefill_sweep.py (lever L9; #3085/#3086).
goalpark
Package goalpark persists long provider Retry-After waits outside a worker's active context budget and arbitrates exactly-once resume after the reset.
Package goalpark persists long provider Retry-After waits outside a worker's active context budget and arbitrates exactly-once resume after the reset.
goalregistry
Package goalregistry stores durable user intent independently from any execution tree.
Package goalregistry stores durable user intent independently from any execution tree.
godfileceiling
Package godfileceiling enforces the ratcheting god-file LOC ceiling gate (issue #2898).
Package godfileceiling enforces the ratcheting god-file LOC ceiling gate (issue #2898).
godsplitplan
Package godsplitplan is the boundary + hazard planner for a behavior-preserving Go split — the Go port of the retired tools/godsplit_plan.py (fak pythongate).
Package godsplitplan is the boundary + hazard planner for a behavior-preserving Go split — the Go port of the retired tools/godsplit_plan.py (fak pythongate).
gpulease
Package gpulease is a machine-wide advisory lease so that only one GPU-heavy process loads a model at a time.
Package gpulease is a machine-wide advisory lease so that only one GPU-heavy process loads a model at a time.
grafanacontract
Package grafanacontract holds machine-checked contracts for shipped Grafana dashboards.
Package grafanacontract holds machine-checked contracts for shipped Grafana dashboards.
grafanapost
Package grafanapost posts fak #grafana-channel cards — exported Grafana snapshots and long-lived dashboard / debug links — to a Slack channel.
Package grafanapost posts fak #grafana-channel cards — exported Grafana snapshots and long-lived dashboard / debug links — to a Slack channel.
grammar
compile.go is the tokenizer-aware schema->mask compiler: the minimal native spine of the structured-generation backlog (#2596), the exact follow-on CLAIMS.md names after #929 shipped the model-side sink.
compile.go is the tokenizer-aware schema->mask compiler: the minimal native spine of the structured-generation backlog (#2596), the exact follow-on CLAIMS.md names after #929 shipped the model-side sink.
growthgate
Package growthgate classifies unbounded-growth "bloat" fingerprints from a cheap census of append-only artifacts — the pure, OS-independent heart of `fak growthgate`.
Package growthgate classifies unbounded-growth "bloat" fingerprints from a cheap census of append-only artifacts — the pure, OS-independent heart of `fak growthgate`.
guard
Package guard holds the agent-spawn containment seam for `fak guard`.
Package guard holds the agent-spawn containment seam for `fak guard`.
guardaccuracy
Package guardaccuracy folds a labeled command corpus through the real guard reversibility classifier and scores its accuracy: the false-positive rate (benign calls the guard escalated) and the false-negative rate (dangerous calls the guard let through as reversible).
Package guardaccuracy folds a labeled command corpus through the real guard reversibility classifier and scores its accuracy: the false-positive rate (benign calls the guard escalated) and the false-negative rate (dangerous calls the guard let through as reversible).
guardaudit
Package guardaudit bounds repo-local guard audit journals only after an independently verified logvault mirror proves their bytes are durable.
Package guardaudit bounds repo-local guard audit journals only after an independently verified logvault mirror proves their bytes are durable.
guardcompile
Package guardcompile compiles one authoring-time model extraction into a review-only policy patch.
Package guardcompile compiles one authoring-time model extraction into a review-only policy patch.
guardcomplaint
Package guardcomplaint is the agent's APPEAL channel against the kernel — the subjective complement to the objective guard RSI loop (internal/guardrsi + internal/guardroute).
Package guardcomplaint is the agent's APPEAL channel against the kernel — the subjective complement to the objective guard RSI loop (internal/guardrsi + internal/guardroute).
guardcorpus
Package guardcorpus folds a guarded session's decision-journal rows into the durable, policy-attributable GUARD-SESSION dataset: one SessionRecord per session plus the replayable, redacted Example rows a training/regression consumer needs (docs/GUARD-SESSION-DATASET-PLAN.md).
Package guardcorpus folds a guarded session's decision-journal rows into the durable, policy-attributable GUARD-SESSION dataset: one SessionRecord per session plus the replayable, redacted Example rows a training/regression consumer needs (docs/GUARD-SESSION-DATASET-PLAN.md).
guardrotate
Package guardrotate is the pure decision core for `fak guard`'s cooldown-aware seat selection.
Package guardrotate is the pure decision core for `fak guard`'s cooldown-aware seat selection.
guardroute
Package guardroute is the bridge that closes the guard RSI loop: it turns a guarded session's worst journal bucket (found by internal/guardrsi) into a routed, idempotent, escalating finding -- a pickable findings-queue row, and, for a real honesty-hole, a deduped GitHub issue.
Package guardroute is the bridge that closes the guard RSI loop: it turns a guarded session's worst journal bucket (found by internal/guardrsi) into a routed, idempotent, escalating finding -- a pickable findings-queue row, and, for a real honesty-hole, a deduped GitHub issue.
guardrsi
Package guardrsi scores guard-verdict quality and proposes replayable recursive-improvement candidates for weak denial buckets.
Package guardrsi scores guard-verdict quality and proposes replayable recursive-improvement candidates for weak denial buckets.
guardsessions
Package guardsessions is the local, queryable INDEX of `fak guard` sessions — the durable answer to "which guard sessions are running (or recently ran) on this box, and how do I reference one?".
Package guardsessions is the local, queryable INDEX of `fak guard` sessions — the durable answer to "which guard sessions are running (or recently ran) on this box, and how do I reference one?".
guardtrace
Package guardtrace is the end-to-end test/replay harness for `fak guard`.
Package guardtrace is the end-to-end test/replay harness for `fak guard`.
guardvars
Package guardvars holds the canonical wire shapes shared by the /debug/vars PRODUCER (internal/gateway) and the `fak info` CONSUMER (cmd/fak) for the blocks both sides once hand-copied field-for-field.
Package guardvars holds the canonical wire shapes shared by the /debug/vars PRODUCER (internal/gateway) and the `fak info` CONSUMER (cmd/fak) for the blocks both sides once hand-copied field-for-field.
guideddecode
Package guideddecode is slice-1 of the constrained tool-JSON decoding gap (issue #26): a SOUND, byte-level compiler that constrains a model's decode to a valid tool-call envelope.
Package guideddecode is slice-1 of the constrained tool-JSON decoding gap (issue #26): a SOUND, byte-level compiler that constrains a model's decode to a valid tool-call envelope.
gym
Package gym coordinates agent evaluation environments, sub-10ms CoW snapshot lifecycles, and isolated execution trajectories.
Package gym coordinates agent evaluation environments, sub-10ms CoW snapshot lifecycles, and isolated execution trajectories.
harnessclassify
Package harnessclassify classifies domain/task context before harness selection.
Package harnessclassify classifies domain/task context before harness selection.
harnesscompose
Package harnesscompose applies kind-specific merge rules to selected harness layers.
Package harnesscompose applies kind-specific merge rules to selected harness layers.
harnesscreationreceipt
Package harnesscreationreceipt implements schema parsing, validation, and study-row projection for harness creation trial receipts.
Package harnesscreationreceipt implements schema parsing, validation, and study-row projection for harness creation trial receipts.
harnesscreationstudy
Package harnesscreationstudy validates and folds independent harness-creation evidence.
Package harnesscreationstudy validates and folds independent harness-creation evidence.
harnesscrossover
Package harnesscrossover evaluates net operator work for contextual harnesses against tuned host-native profile and instruction layering.
Package harnesscrossover evaluates net operator work for contextual harnesses against tuned host-native profile and instruction layering.
harnessderive
Package harnessderive creates a verified product lock from an immutable base lock plus a small, typed local delta.
Package harnessderive creates a verified product lock from an immutable base lock plus a small, typed local delta.
harnessdiscover
Package harnessdiscover finds scoped harness declarations and proves where each came from.
Package harnessdiscover finds scoped harness declarations and proves where each came from.
harnessgallery
Package harnessgallery maps representative user needs to bounded harness starter packs.
Package harnessgallery maps representative user needs to bounded harness starter packs.
harnesshint
Package harnesshint emits zero-call, model-relative scope hints for agent harnesses.
Package harnesshint emits zero-call, model-relative scope hints for agent harnesses.
harnessinspect
Package harnessinspect produces operator-facing inspection reports and rendered summaries from resolved harness product locks.
Package harnessinspect produces operator-facing inspection reports and rendered summaries from resolved harness product locks.
harnessinstructions
Package harnessinstructions realizes public harness instruction snapshots through fak's system-prompt MMU.
Package harnessinstructions realizes public harness instruction snapshots through fak's system-prompt MMU.
harnessmix
Package harnessmix combines independently resolved, mix-ready harness locks.
Package harnessmix combines independently resolved, mix-ready harness locks.
harnessmodelset
Package harnessmodelset declares strict role-indexed model requirements for generated harnesses.
Package harnessmodelset declares strict role-indexed model requirements for generated harnesses.
harnessmodelsetconformance
Package harnessmodelsetconformance owns the captured end-to-end witness for generated-harness model-set resolution and startup compatibility.
Package harnessmodelsetconformance owns the captured end-to-end witness for generated-harness model-set resolution and startup compatibility.
harnessoverride
Package harnessoverride produces structured, reviewable proposals to override changeable capabilities within a verified harness lock.
Package harnessoverride produces structured, reviewable proposals to override changeable capabilities within a verified harness lock.
harnesspreview
Package harnesspreview classifies contextual product-lock changes so repeat launches stay quiet while novel or authority-changing launches require an explicit, reversible decision.
Package harnesspreview classifies contextual product-lock changes so repeat launches stay quiet while novel or authority-changing launches require an explicit, reversible decision.
harnessprofile
Package harnessprofile is the declarative HarnessProfile descriptor + built-in registry that fak guard drives detection, repoint, credential, and rotation from.
Package harnessprofile is the declarative HarnessProfile descriptor + built-in registry that fak guard drives detection, repoint, credential, and rotation from.
harnessprotocol
Package harnessprotocol implements the first-party producer and projections for the public harnesskit protocol.
Package harnessprotocol implements the first-party producer and projections for the public harnesskit protocol.
harnessrelease
Package harnessrelease captures a checksum-verified released harness clean-room receipt.
Package harnessrelease captures a checksum-verified released harness clean-room receipt.
harnessres
Package harnessres samples the hardware-resource use of the fak guard HARNESS itself — the guard process (which hosts the in-process gateway on the same PID) and the wrapped agent child — so a guarded session can report the CPU, memory, and I/O it burned, the same way it already reports its cache/token economy.
Package harnessres samples the hardware-resource use of the fak guard HARNESS itself — the guard process (which hosts the in-process gateway on the same PID) and the wrapped agent child — so a guarded session can report the CPU, memory, and I/O it burned, the same way it already reports its cache/token economy.
harnessresolve
Package harnessresolve compiles typed harness assets and component constraints into an immutable product lock.
Package harnessresolve compiles typed harness assets and component constraints into an immutable product lock.
harnessselect
Package harnessselect resolves the context-dependent layers that choose a harness.
Package harnessselect resolves the context-dependent layers that choose a harness.
harnessserve
Package harnessserve owns the bounded lifecycle of one adapter-provided local model runtime.
Package harnessserve owns the bounded lifecycle of one adapter-provided local model runtime.
harnessserver
Package harnessserver binds a harness to an externally owned ready-server receipt without acquiring any server lifecycle authority.
Package harnessserver binds a harness to an externally owned ready-server receipt without acquiring any server lifecycle authority.
harnessversion
Package harnessversion provides sub-harness runtime multi-versioning, sticky session routing, and weighted canary traffic splitting.
Package harnessversion provides sub-harness runtime multi-versioning, sticky session routing, and weighted canary traffic splitting.
harnesswarm
Package harnesswarm provides a progressive non-blocking workspace warming engine for agent execution environments (#10649).
Package harnesswarm provides a progressive non-blocking workspace warming engine for agent execution environments (#10649).
harvest
Package harvest is the LabelRow harvester — the data-collection rung of the compiled defender-side loop.
Package harvest is the LabelRow harvester — the data-collection rung of the compiled defender-side loop.
headlesslint
Package headlesslint is the sensor-side dual of internal/choicetriage.
Package headlesslint is the sensor-side dual of internal/choicetriage.
headroom
Package headroom is the context-compression seam: a pluggable Compressor area (headroom/native/noop plugins) folded into the result path as a ResultAdmitter.
Package headroom is the context-compression seam: a pluggable Compressor area (headroom/native/noop plugins) folded into the result path as a ResultAdmitter.
heavinessscore
Package heavinessscore is the operator-heaviness / steering-effort stick.
Package heavinessscore is the operator-heaviness / steering-effort stick.
hfhub
Package hfhub resolves and downloads model files from the Hugging Face Hub via `hf://` URIs, with a local content cache, optional HF_TOKEN auth, and best-effort SHA256 verification against the Hub's LFS oid (the X-Linked-Etag the Hub stamps on every LFS object).
Package hfhub resolves and downloads model files from the Hugging Face Hub via `hf://` URIs, with a local content cache, optional HF_TOKEN auth, and best-effort SHA256 verification against the Hub's LFS oid (the X-Linked-Etag the Hub stamps on every LFS object).
hooks
Package hooks runs the repo's commit-boundary gates IN ONE PROCESS.
Package hooks runs the repo's commit-boundary gates IN ONE PROCESS.
horizonrecovery
Package horizonrecovery grounds the budget-recovery term r of the horizon multiplier in docs/explainers/compounding-benefits-of-a-saved-call.md, from a REAL ctxplanbench replay over real Claude Code transcripts.
Package horizonrecovery grounds the budget-recovery term r of the horizon multiplier in docs/explainers/compounding-benefits-of-a-saved-call.md, from a REAL ctxplanbench replay over real Claude Code transcripts.
hostdiag
Package hostdiag correlates Windows resource warnings with privacy-safe fak process census evidence.
Package hostdiag correlates Windows resource warnings with privacy-safe fak process census evidence.
hostplacement
Package hostplacement is a clean-room Go primitive for deterministic multi-host worker placement: a per-host headroom registry plus a pure placement function that picks the least-saturated, non-stale host to spill a dispatch worker onto, or falls back to staying local when no host is eligible.
Package hostplacement is a clean-room Go primitive for deterministic multi-host worker placement: a per-host headroom registry plus a pure placement function that picks the least-saturated, non-stale host to spill a dispatch worker onto, or falls back to staying local when no host is eligible.
httptrust
Package httptrust is the corporate-trust seam: one declared CA bundle source honored by every fak-originated HTTPS client and derived for the child runtimes a fak session launches.
Package httptrust is the corporate-trust seam: one declared CA bundle source honored by every fak-originated HTTPS client and derived for the child runtimes a fak session launches.
humanctl
Package humanctl indexes the outcomes humans ask agents to produce and provides a small algebra for composing those controls with structured modifiers and lossless unstructured context.
Package humanctl indexes the outcomes humans ask agents to produce and provides a small algebra for composing those controls with structured modifiers and lossless unstructured context.
hwgatelint
Package hwgatelint is the sensor for the "local machine is the compute boundary" regression — the hardware-gate anti-pattern.
Package hwgatelint is the sensor for the "local machine is the compute boundary" regression — the hardware-gate anti-pattern.
ideascout
Package ideascout searches configured research, repository, and community feeds — arXiv (papers), GitHub (repos), Hacker News and Reddit (real-time trending discussion, newest-first via each platform's public API) — dedupes candidates against a seen-cache and the existing issue backlog, scores what survives, and emits triage-ready idea-scout issue plans.
Package ideascout searches configured research, repository, and community feeds — arXiv (papers), GitHub (repos), Hacker News and Reddit (real-time trending discussion, newest-first via each platform's public API) — dedupes candidates against a seen-cache and the existing issue backlog, scores what survives, and emits triage-ready idea-scout issue plans.
idempotency
Package idempotency gives mutating tool ops a durable keyed state machine that replays proven results and blocks ambiguous outcomes until read-back resolves whether the effect landed (#2093, #8284, part of epic #2063).
Package idempotency gives mutating tool ops a durable keyed state machine that replays proven results and blocks ambiguous outcomes until read-back resolves whether the effect landed (#2093, #8284, part of epic #2063).
ifc
Package ifc is the information-flow control layer — the CaMeL / FIDES complement to the lexical detectors (canon, normgate, ctxmmu).
Package ifc is the information-flow control layer — the CaMeL / FIDES complement to the lexical detectors (canon, normgate, ctxmmu).
incidentrsi
Package incidentrsi classifies operational incidents, maintains bounded burst debounce states, and emits durable content-free RSI trigger contracts.
Package incidentrsi classifies operational incidents, maintains bounded burst debounce states, and emits durable content-free RSI trigger contracts.
interactivesession
Package interactivesession provides interactive agent session lifecycle management, state transitions, prompt turn coordination, runaway turn caps, and execution time bounding with fail-closed safety floors.
Package interactivesession provides interactive agent session lifecycle management, state transitions, prompt turn coordination, runaway turn caps, and execution time bounding with fail-closed safety floors.
interspersedflags
Package interspersedflags parses Go flags around positional arguments.
Package interspersedflags parses Go flags around positional arguments.
intlist
Package intlist parses a string into a list of non-negative integers.
Package intlist parses a string into a list of non-negative integers.
issuecatalog
Package issuecatalog is the durable bridge from a reviewable catalog of performance-enablement gap rows to a stable, deduplicated GitHub issue per row.
Package issuecatalog is the durable bridge from a reviewable catalog of performance-enablement gap rows to a stable, deduplicated GitHub issue per row.
issuecentrality
Package issuecentrality audits canonical problem-frame coverage in an issue portfolio.
Package issuecentrality audits canonical problem-frame coverage in an issue portfolio.
issuecheck
Package issuecheck defines the pure contract for the agent-selected Top-5 review that precedes implementation of a worker-ready GitHub issue.
Package issuecheck defines the pure contract for the agent-selected Top-5 review that precedes implementation of a worker-ready GitHub issue.
issuecohort
Package issuecohort plans a whole BATCH of machine-created GitHub issue candidates at creation time, before any of them is synced to GitHub.
Package issuecohort plans a whole BATCH of machine-created GitHub issue candidates at creation time, before any of them is synced to GitHub.
issuecost
This file is the C9 calibration fold (#3046): join per-issue TIER DECISIONS to WITNESSED OUTCOMES and propose — never auto-apply — threshold changes to the routing policy.
This file is the C9 calibration fold (#3046): join per-issue TIER DECISIONS to WITNESSED OUTCOMES and propose — never auto-apply — threshold changes to the routing policy.
issuededup
Package issuededup is the write-time near-duplicate gate shared by every issue producer (#2504): given a candidate {title, body} and a backlog index built from cached, read-only `gh issue list` output, it returns advisory dup-risk verdicts {issue_number, similarity, matched_on} via simhash embed + TopK over the title and title+body axes.
Package issuededup is the write-time near-duplicate gate shared by every issue producer (#2504): given a candidate {title, body} and a backlog index built from cached, read-only `gh issue list` output, it returns advisory dup-risk verdicts {issue_number, similarity, matched_on} via simhash embed + TopK over the title and title+body axes.
issuefanout
Package issuefanout expands one shipped (or planned) working spine into the follow-on backlog the spine-first default demands: contract-ready QA, dogfooding, productization, observability, integration, docs, and release candidates.
Package issuefanout expands one shipped (or planned) working spine into the follow-on backlog the spine-first default demands: contract-ready QA, dogfooding, productization, observability, integration, docs, and release candidates.
issuehygiene
Package issuehygiene is the pure KPI core behind `fak score issue-hygiene` -- the deterministic scorecard that grades how well the DEFAULT GitHub issue surface is CREATED and TAGGED, folded into one issue_hygiene_debt integer.
Package issuehygiene is the pure KPI core behind `fak score issue-hygiene` -- the deterministic scorecard that grades how well the DEFAULT GitHub issue surface is CREATED and TAGGED, folded into one issue_hygiene_debt integer.
issueownerprompt
Package issueownerprompt validates that issue resolver goal prompts faithfully compose the canonical issue owner lifecycle without drift or private copies.
Package issueownerprompt validates that issue resolver goal prompts faithfully compose the canonical issue owner lifecycle without drift or private copies.
issuepolicy
Package issuecontract reviews machine-created GitHub issue candidates before they enter the dispatch loop.
Package issuecontract reviews machine-created GitHub issue candidates before they enter the dispatch loop.
issuesmallness
Package issuesmallness inspects issue descriptions to classify deliverable and witness counts, ensuring tasks are scoped to atomic dispatchable units.
Package issuesmallness inspects issue descriptions to classify deliverable and witness counts, ensuring tasks are scoped to atomic dispatchable units.
issuestriage
Package issuestriage is the tier-1 leaf that folds one surfaced issue action into its decenter-the-human disposition.
Package issuestriage is the tier-1 leaf that folds one surfaced issue action into its decenter-the-human disposition.
journal
Package journal is the durable, append-only, tamper-evident DECISION JOURNAL — the regulated-audit (AUD) surface of the trust floor.
Package journal is the durable, append-only, tamper-evident DECISION JOURNAL — the regulated-audit (AUD) surface of the trust floor.
jsonlledger
Package jsonlledger holds the shared JSONL-ledger row helpers the report packages (cadencereport, milestonereport, programreport, …) each used to copy-paste: Parse scans a JSONL ledger into typed rows, and LatestBefore finds the newest prior row.
Package jsonlledger holds the shared JSONL-ledger row helpers the report packages (cadencereport, milestonereport, programreport, …) each used to copy-paste: Parse scans a JSONL ledger into typed rows, and LatestBefore finds the newest prior row.
kernel
explain.go — the OFF-HOT-PATH dual of Fold: it folds the SAME adjudicator chain to the SAME winning verdict, but additionally records a per-rung Decision trace — the answer to the single most common debugging question in the whole kernel: "why did fak give THIS verdict for THIS tool call?"
explain.go — the OFF-HOT-PATH dual of Fold: it folds the SAME adjudicator chain to the SAME winning verdict, but additionally records a per-rung Decision trace — the answer to the single most common debugging question in the whole kernel: "why did fak give THIS verdict for THIS tool call?"
kimik3page
Package kimik3page implements memory layout, page table metadata, and paged-attention allocation structures for Kimi K3 hybrid architectures.
Package kimik3page implements memory layout, page table metadata, and paged-attention allocation structures for Kimi K3 hybrid architectures.
knobcensus
Package knobcensus is the KNOB CENSUS — issue #2210, epic #2208 (meaningful-control plane).
Package knobcensus is the KNOB CENSUS — issue #2210, epic #2208 (meaningful-control plane).
knownbad
Package knownbad is the pure fold core of the fleet-wide known-bad signature ledger — the load-bearing spine of the blast-radius containment epic (#2712).
Package knownbad is the pure fold core of the fleet-wide known-bad signature ledger — the load-bearing spine of the blast-radius containment epic (#2712).
knownenv
Package knownenv is the pure core of the fleet-wide known-ENVIRONMENT-failure registry (#2144, epic #2136): a signature over TOOL OUTPUT — an error-text needle and/or an exit code — mapped to a not-your-fault verdict {known-env, owner/eta}.
Package knownenv is the pure core of the fleet-wide known-ENVIRONMENT-failure registry (#2144, epic #2136): a signature over TOOL OUTPUT — an error-text needle and/or an exit code — mapped to a not-your-fault verdict {known-env, owner/eta}.
kquantbits
Package kquantbits decodes bit-packed k-quant metadata.
Package kquantbits decodes bit-packed k-quant metadata.
kv
Package kv provides core Key-Value storage management abstractions for LLM inference KV-caches, including page allocation, direct I/O block store integration, eviction policies (LRU, FIFO), multi-turn session indexing, token range lookup, and runtime access statistics.
Package kv provides core Key-Value storage management abstractions for LLM inference KV-caches, including page allocation, direct I/O block store integration, eviction policies (LRU, FIFO), multi-turn session indexing, token range lookup, and runtime access statistics.
kvbudget
Package kvbudget is a pure, GPU-free calculator for the KV-cache VRAM budget of concurrent GLM-5.2 (glm_moe_dsa) decode streams — the laptop-composable half of issue #3080 ("perf(serve): KV paging + context-budget tuning for concurrent GLM-5.2 streams within 206 GiB free VRAM").
Package kvbudget is a pure, GPU-free calculator for the KV-cache VRAM budget of concurrent GLM-5.2 (glm_moe_dsa) decode streams — the laptop-composable half of issue #3080 ("perf(serve): KV paging + context-budget tuning for concurrent GLM-5.2 streams within 206 GiB free VRAM").
kvint2eval
Package kvint2eval adjudicates bounded output-aware INT2 KV-cache rotation evidence.
Package kvint2eval adjudicates bounded output-aware INT2 KV-cache rotation evidence.
kvmmu
Package kvmmu bridges logical quarantine and elision decisions into mechanical eviction of token K/V spans from kernel-owned attention caches.
Package kvmmu bridges logical quarantine and elision decisions into mechanical eviction of token K/V spans from kernel-owned attention caches.
kvquantmeta
Package kvquantmeta defines neutral KV-cache quantization descriptors and explicit tier-transition adjudication.
Package kvquantmeta defines neutral KV-cache quantization descriptors and explicit tier-transition adjudication.
kvquantquality
Package kvquantquality evaluates version-pinned KV-cache quantization quality evidence against an unquantized tuned baseline.
Package kvquantquality evaluates version-pinned KV-cache quantization quality evidence against an unquantized tuned baseline.
kvvectoreval
Package kvvectoreval defines the pinned, evidence-graded interoperability contract for the NOVA-KV attention-preserving vector-quantization research evaluation tracked by issue #6259.
Package kvvectoreval defines the pinned, evidence-graded interoperability contract for the NOVA-KV attention-preserving vector-quantization research evaluation tracked by issue #6259.
l3kv
Package l3kv is the durable L3 KV residency backend: StageSpan/RestoreSpan persist a demoted span by digest through the storedrv router (blobfs local stand-in + optional blobhttp remote pool) behind a durable span→content manifest (#1472).
Package l3kv is the durable L3 KV residency backend: StageSpan/RestoreSpan persist a demoted span by digest through the storedrv router (blobfs local stand-in + optional blobhttp remote pool) behind a durable span→content manifest (#1472).
l3region
Package l3region ships Stage 1 of child B of the L3 disaggregated-cache epic (#77 / epic #504; study docs/notes/L3-DISAGGREGATED-CACHE-REIMAGINED.md §4 Option B): an L3RegionBackend behind fak's already-frozen Resolver seam (internal/abi.RegionBackend, registered via abi.RegisterRegionBackend).
Package l3region ships Stage 1 of child B of the L3 disaggregated-cache epic (#77 / epic #504; study docs/notes/L3-DISAGGREGATED-CACHE-REIMAGINED.md §4 Option B): an L3RegionBackend behind fak's already-frozen Resolver seam (internal/abi.RegionBackend, registered via abi.RegisterRegionBackend).
l3server
Package l3server provides the top-level orchestration and server runtime for the L3 disaggregated KV-cache tier.
Package l3server provides the top-level orchestration and server runtime for the L3 disaggregated KV-cache tier.
laneadmit
Package laneadmit is the shared lane/tree admission decision every execution surface asks before acting on the shared tree: dispatch workers, `fak loop drive` runs, and manual sessions (via `fak loop coord`).
Package laneadmit is the shared lane/tree admission decision every execution surface asks before acting on the shared tree: dispatch workers, `fak loop drive` runs, and manual sessions (via `fak loop coord`).
lanebeat
Package lanebeat decides whether a DOS lane lease may be REFRESHED — the writer-side half of the lane-lease heartbeat rung (#5864, epic #750).
Package lanebeat decides whether a DOS lane lease may be REFRESHED — the writer-side half of the lane-lease heartbeat rung (#5864, epic #750).
launchguard
Package launchguard provides a host-local, cross-process circuit breaker for supervisors that launch detached agents or services.
Package launchguard provides a host-local, cross-process circuit breaker for supervisors that launch detached agents or services.
launchlatency
Package launchlatency is a pure fold over worker-LAUNCH records: the time between a dispatch decision ("spawn worker W now") and that worker's first heartbeat ("W is alive and running").
Package launchlatency is a pure fold over worker-LAUNCH records: the time between a dispatch decision ("spawn worker W now") and that worker's first heartbeat ("W is alive and running").
launchshim
Package launchshim owns the persisted, reversible zero-adoption launcher configuration.
Package launchshim owns the persisted, reversible zero-adoption launcher configuration.
leakcheck
Package leakcheck provides the three reusable PROOF primitives a memory/goroutine-leak sweep needs, so a regression guard is a few lines instead of a hand-rolled harness each time.
Package leakcheck provides the three reusable PROOF primitives a memory/goroutine-leak sweep needs, so a regression guard is a few lines instead of a hand-rolled harness each time.
learningdebt
Package learningdebt is the staleness->backlog bridge from the learning-docs scorecard to a cap-bounded, deduplicated GitHub triage issue per HARD teaching defect.
Package learningdebt is the staleness->backlog bridge from the learning-docs scorecard to a cap-bounded, deduplicated GitHub triage issue per HARD teaching defect.
learningmesh
Package learningmesh compiles provider-neutral mechanism findings into deterministic cross-envelope transfer candidates.
Package learningmesh compiles provider-neutral mechanism findings into deterministic cross-envelope transfer candidates.
learningobservation
Package learningobservation stores content-addressed learning records and typed lineage edges.
Package learningobservation stores content-addressed learning records and typed lineage edges.
leasequeue
Package leasequeue is the WAITER PLANE a region-admission refusal never had.
Package leasequeue is the WAITER PLANE a region-admission refusal never had.
leaseref
Package leaseref is the CROSS-MACHINE VISIBILITY substrate for fak's leases: it persists a lease record under a dedicated refs/fak/locks/<id> ref namespace, so lease state rides ordinary `git fetch` / `git push` between clones — the same mechanism grite uses with refs/grite/locks.
Package leaseref is the CROSS-MACHINE VISIBILITY substrate for fak's leases: it persists a lease record under a dedicated refs/fak/locks/<id> ref namespace, so lease state rides ordinary `git fetch` / `git push` between clones — the same mechanism grite uses with refs/grite/locks.
lifebridge
Package lifebridge is the explicit converter between the two altitudes of the ONE agent lifecycle machine (epic #912): the served-session drive state (internal/session.RunState) and the loop supervisor state (internal/loopmgr.LoopState).
Package lifebridge is the explicit converter between the two altitudes of the ONE agent lifecycle machine (epic #912): the served-session drive state (internal/session.RunState) and the loop supervisor state (internal/loopmgr.LoopState).
lifecycle
Package lifecycle is the ONE canonical vocabulary for an agent's run-state — the shared skeleton that both the served session (internal/session.RunState) and the loop supervisor (internal/loopmgr.LoopState) spell.
Package lifecycle is the ONE canonical vocabulary for an agent's run-state — the shared skeleton that both the served session (internal/session.RunState) and the loop supervisor (internal/loopmgr.LoopState) spell.
lifecycleadapter
Package lifecycleadapter negotiates and invokes heterogeneous process-forest lifecycle adapters.
Package lifecycleadapter negotiates and invokes heterogeneous process-forest lifecycle adapters.
lightgapport
Package lightgapport audits portability swap points against committed CI witnesses.
Package lightgapport audits portability swap points against committed CI witnesses.
lightgapscore
Package lightgapscore implements fak's deterministic, per-use-case lightgap scorecard.
Package lightgapscore implements fak's deterministic, per-use-case lightgap scorecard.
lightroteval
Package lightroteval provides a deterministic, provenance-pinned LightRot research evaluator.
Package lightroteval provides a deterministic, provenance-pinned LightRot research evaluator.
linefmt
Package linefmt creates newline-terminated formatted-text writers.
Package linefmt creates newline-terminated formatted-text writers.
linkstate
Package linkstate is the general "what state is my channel with a peer in right now?" record — the reusable comms-protocol view that the lab dispatch gate (internal/fleet) is one specialization of.
Package linkstate is the general "what state is my channel with a peer in right now?" record — the reusable comms-protocol view that the lab dispatch gate (internal/fleet) is one specialization of.
livecodebench
Package livecodebench adapts LiveCodeBench problem suites and run reports into fak-native shapes.
Package livecodebench adapts LiveCodeBench problem suites and run reports into fak-native shapes.
llamacppinterop
Package llamacppinterop defines fak's versioned delegation seam for llama.cpp.
Package llamacppinterop defines fak's versioned delegation seam for llama.cpp.
loaddebounce
Package loaddebounce provides a load-signal debouncer that publishes changes with dedup and burst coalescing over an injectable clock.
Package loaddebounce provides a load-signal debouncer that publishes changes with dedup and burst coalescing over an injectable clock.
localadmission
Package localadmission turns measured task envelopes and live host pressure into readiness decisions.
Package localadmission turns measured task envelopes and live host pressure into readiness decisions.
localappcert
Package localappcert validates the v1 Apple-Silicon certification matrix.
Package localappcert validates the v1 Apple-Silicon certification matrix.
localapphelper
Package localapphelper binds a local-app request to one signed host install.
Package localapphelper binds a local-app request to one signed host install.
localappmetrics
Package localappmetrics joins operation events to outcomes without content or stable device identity.
Package localappmetrics joins operation events to outcomes without content or stable device identity.
localappux
Package localappux renders host-app language for local compute lifecycle states.
Package localappux renders host-app language for local compute lifecycle states.
logvault
Package logvault captures fak's durable logs — the guard decision journals, the harness session stores, the dispatch/dos/loop ledgers — into one central vault directory, incrementally and tamper-evidently.
Package logvault captures fak's durable logs — the guard decision journals, the harness session stores, the dispatch/dos/loop ledgers — into one central vault directory, incrementally and tamper-evidently.
lookahead
Package lookahead is the witness-gated Lesson core (#5204, child of #5202): the pure distillation of a fork-rollout's outcome into a Lesson whose assertive authority is bounded by the witness rung its evidence actually earned.
Package lookahead is the witness-gated Lesson core (#5204, child of #5202): the pure distillation of a fork-rollout's outcome into a Lesson whose assertive authority is bounded by the witness rung its evidence actually earned.
loopdrive
Package loopdrive parses the GOAL.md goal spec used by fak loop drive.
Package loopdrive parses the GOAL.md goal spec used by fak loop drive.
loopfleet
Package loopfleet is the cross-ledger loop-health fold (#1196, part of #1173 — the verified loop): one read-only pane that answers "show me EVERY loop's health — last tick, run count, keep/witness rate, and whether it has gone DARK" across the repo's fragmented loop ledgers.
Package loopfleet is the cross-ledger loop-health fold (#1196, part of #1173 — the verified loop): one read-only pane that answers "show me EVERY loop's health — last tick, run count, keep/witness rate, and whether it has gone DARK" across the repo's fragmented loop ledgers.
loopgate
loopbench measures what the witnessed exit-gate earns over a naive Ralph loop that terminates on the agent's own self-reported "done".
loopbench measures what the witnessed exit-gate earns over a naive Ralph loop that terminates on the agent's own self-reported "done".
loopindex
Package loopindex scores the agentic-coding LOOP — the round an agent (and a fleet of agents) runs to go from a task to shipped, verified code — into one witnessed number: the loop-index.
Package loopindex scores the agentic-coding LOOP — the round an agent (and a fleet of agents) runs to go from a task to shipped, verified code — into one witnessed number: the loop-index.
loopmap
Package loopmap is the loop-stage -> tool map: the in-loop affordance that answers "what tool do I reach for RIGHT NOW?" at each stage of the agentic-coding loop (orient -> plan -> act -> verify -> ship -> learn, the six stages owned by internal/loopindex).
Package loopmap is the loop-stage -> tool map: the in-loop affordance that answers "what tool do I reach for RIGHT NOW?" at each stage of the agentic-coding loop (orient -> plan -> act -> verify -> ship -> learn, the six stages owned by internal/loopindex).
loopmgr
Package loopmgr records and summarizes long-running agent loop events.
Package loopmgr records and summarizes long-running agent loop events.
looporphan
Package looporphan is the pure duplicate-loop-supervisor reaper core: it folds a process census of loop/drainer SUPERVISORS into a closed keep/reap plan that never strands live work.
Package looporphan is the pure duplicate-loop-supervisor reaper core: it folds a process census of loop/drainer SUPERVISORS into a closed keep/reap plan that never strands live work.
looprecover
Package looprecover is the deterministic recovery decision the fak dispatch fleet is missing: given the durable loop ledger's record of every dispatched run, which runs STARTED but never finished or were never witnessed — the work that should be re-dispatched or re-verified rather than left silently abandoned?
Package looprecover is the deterministic recovery decision the fak dispatch fleet is missing: given the durable loop ledger's record of every dispatched run, which runs STARTED but never finished or were never witnessed — the work that should be re-dispatched or re-verified rather than left silently abandoned?
loopscore
Package loopscore scores the AGENTIC BACKGROUND LOOPS themselves — the always-on processes (issue dispatch, resolve-progress, freshness cadences, smoke loops) that keep the fleet moving while no human is watching.
Package loopscore scores the AGENTIC BACKGROUND LOOPS themselves — the always-on processes (issue dispatch, resolve-progress, freshness cadences, smoke loops) that keep the fleet moving while no human is watching.
loopunblock
Package loopunblock is the GENERIC head-of-line unblocker for any worklist-draining loop — a normal loop, a super loop, or a meta-loop over super loops.
Package loopunblock is the GENERIC head-of-line unblocker for any worklist-draining loop — a normal loop, a super loop, or a meta-loop over super loops.
macbench
Package macbench runs the Mac gateway benchmark probes that feed nightrun.
Package macbench runs the Mac gateway benchmark probes that feed nightrun.
macfit
Package macfit is models unified-memory capacity for many concurrent agents.
Package macfit is models unified-memory capacity for many concurrent agents.
macobs
Package macobs provides agent-centric observability into MLX and Mac-specific performance metrics, unified memory dynamics, and actionable runtime steering for autonomous agents and subagents on Apple Silicon.
Package macobs provides agent-centric observability into MLX and Mac-specific performance metrics, unified memory dynamics, and actionable runtime steering for autonomous agents and subagents on Apple Silicon.
macromailbox
Package macromailbox provides fail-closed authenticated message queuing and delivery.
Package macromailbox provides fail-closed authenticated message queuing and delivery.
managedinventory
Package managedinventory owns the registered managed-agent object taxonomy and the deterministic portability inventory used by the portability spine.
Package managedinventory owns the registered managed-agent object taxonomy and the deterministic portability inventory used by the portability spine.
managedocs
Package managedocs ratchets canonical managed-agent documentation.
Package managedocs ratchets canonical managed-agent documentation.
maputil
Package maputil provides generic helper functions for map operations.
Package maputil provides generic helper functions for map operations.
markerblock
Package markerblock locates and replaces generated regions delimited by text markers.
Package markerblock locates and replaces generated regions delimited by text markers.
market
Package market validates discoverable extension descriptors without executing extension code.
Package market validates discoverable extension descriptors without executing extension code.
marketing
recentchanges.go — the human-readable recent-changes front door (#6040).
recentchanges.go — the human-readable recent-changes front door (#6040).
marketplace
Package marketplace validates discoverable extension descriptors without executing extension code.
Package marketplace validates discoverable extension descriptors without executing extension code.
mathx
Package mathx holds small numeric helpers shared across packages — the kind of one-liner that was copy-pasted into every report builder before it had a home.
Package mathx holds small numeric helpers shared across packages — the kind of one-liner that was copy-pasted into every report builder before it had a home.
maturity
Package maturity scores where each fak capability sits on its LIFECYCLE maturity ladder — and, crucially, what the next step to advance it is.
Package maturity scores where each fak capability sits on its LIFECYCLE maturity ladder — and, crucially, what the next step to advance it is.
mcpbroker
Package mcpbroker provides an in-kernel broker and mediator for Model Context Protocol (MCP) tool servers.
Package mcpbroker provides an in-kernel broker and mediator for Model Context Protocol (MCP) tool servers.
mcpfootprint
Package mcpfootprint prices the always-sent MCP tool-schema floor — the fixed per-turn token tax every registered tool adds to every API call, whether or not the tool is ever selected.
Package mcpfootprint prices the always-sent MCP tool-schema floor — the fixed per-turn token tax every registered tool adds to every API call, whether or not the tool is ever selected.
memgate
Package memgate checks whether a heavy model load should proceed under memory pressure.
Package memgate checks whether a heavy model load should proceed under memory pressure.
memorycotravel
Package memorycotravel manages cross-session memory transfer and synchronization across agent project directories with strict rollout controls and audit logging.
Package memorycotravel manages cross-session memory transfer and synchronization across agent project directories with strict rollout controls and audit logging.
memoryindex
Package memoryindex reconciles an agent-memory INDEX against the memory files it claims to describe.
Package memoryindex reconciles an agent-memory INDEX against the memory files it claims to describe.
memoryread
Package memoryread renders the committed fleet memory mirror as a bounded digest.
Package memoryread renders the committed fleet memory mirror as a bounded digest.
memq
Package memq is the agent-facing MEMORY-OPERATION ALGEBRA — the substrate that lets an agent (or a plugin, a driver, or an operator) author its OWN memory strategy instead of the kernel hard-coding one.
Package memq is the agent-facing MEMORY-OPERATION ALGEBRA — the substrate that lets an agent (or a plugin, a driver, or an operator) author its OWN memory strategy instead of the kernel hard-coding one.
memvaluescore
Package memvaluescore is the unbounded memory-value scorecard — the memory sibling of the cache-value P&L.
Package memvaluescore is the unbounded memory-value scorecard — the memory sibling of the cache-value P&L.
memview
Package memview is the typed virtual-view contract over canonical raw memory cells (issue #904): a memory/context cell is CANONICAL (the raw bytes), and every summary / QA / graph / prompt-prefix / KV-prefix projection of it is a DERIVED view that carries provenance and an admission gate.
Package memview is the typed virtual-view contract over canonical raw memory cells (issue #904): a memory/context cell is CANONICAL (the raw bytes), and every summary / QA / graph / prompt-prefix / KV-prefix projection of it is a DERIVED view that carries provenance and an admission gate.
metalgemm
Package metalgemm stub — the non-Apple-Silicon or cgo-disabled build.
Package metalgemm stub — the non-Apple-Silicon or cgo-disabled build.
metrics
budget.go — the per-task budget readout: what the current task has spent against a soft target, broken down by category, from real usage records (#2091).
budget.go — the per-task budget readout: what the current task has spent against a soft target, broken down by category, from real usage records (#2091).
microagent
Package microagent hosts many agent loops in ONE process: a worker pool that drives K concurrent Microagent.Step calls as goroutines, all sharing one in-process kernel gateway (#2002, epic #2000 M2).
Package microagent hosts many agent loops in ONE process: a worker pool that drives K concurrent Microagent.Step calls as goroutines, all sharing one in-process kernel gateway (#2002, epic #2000 M2).
microfleeteconomics
Package microfleeteconomics deterministically accounts for micro-fleet physical costs per accepted result.
Package microfleeteconomics deterministically accounts for micro-fleet physical costs per accepted result.
microscaleeval
Package microscaleeval adjudicates microscaling descriptors without inferring runtime support or turning research results into locally observed claims.
Package microscaleeval adjudicates microscaling descriptors without inferring runtime support or turning research results into locally observed claims.
milestoneburndown
Package milestoneburndown is the GitHub-milestone SCHEDULE dimension the milestone report never had: it reads the live milestones' own due dates, open/closed counts, and trailing closure velocity, then classifies each into a closed at-risk verdict (ON_TRACK / AT_RISK / OVERDUE / NO_DUE_DATE / DONE) with a projected drain date compared against the due date.
Package milestoneburndown is the GitHub-milestone SCHEDULE dimension the milestone report never had: it reads the live milestones' own due dates, open/closed counts, and trailing closure velocity, then classifies each into a closed at-risk verdict (ON_TRACK / AT_RISK / OVERDUE / NO_DUE_DATE / DONE) with a projected drain date compared against the due date.
milestonedoc
Package milestonedoc renders the project's milestone CLIMB snapshot into a freshness-checked, committed markdown block, the milestone-shaped sibling of internal/supportmaturityscore's MatrixBlock (#1441, child of epic #1436).
Package milestonedoc renders the project's milestone CLIMB snapshot into a freshness-checked, committed markdown block, the milestone-shaped sibling of internal/supportmaturityscore's MatrixBlock (#1441, child of epic #1436).
milestonepost
Package milestonepost posts the milestone tracking report — fak's WITNESSED maturity CLIMB plus the epic ROADMAP — to a single Slack "milestones" channel, so the fleet has one durable place where "how far has the project climbed, and is it moving?" gets an honest answer on a cadence.
Package milestonepost posts the milestone tracking report — fak's WITNESSED maturity CLIMB plus the epic ROADMAP — to a single Slack "milestones" channel, so the fleet has one durable place where "how far has the project climbed, and is it moving?" gets an honest answer on a cadence.
milestonereport
Package milestonereport folds the project's two milestone signals — the maturity CLIMB and the epic ROADMAP — into one read-only report envelope with a durable JSONL trend ledger, the milestone-shaped sibling of internal/cadencereport.
Package milestonereport folds the project's two milestone signals — the maturity CLIMB and the epic ROADMAP — into one read-only report envelope with a durable JSONL trend ledger, the milestone-shaped sibling of internal/cadencereport.
mixedprecision
Package mixedprecision defines a neutral, deterministic contract for layerwise precision assignment, coverage and evidence.
Package mixedprecision defines a neutral, deterministic contract for layerwise precision assignment, coverage and evidence.
mlpscore
Package mlpscore grades epic #3256's first-lovable-cut contract from committed, machine-checkable witness manifests.
Package mlpscore grades epic #3256's first-lovable-cut contract from committed, machine-checkable witness manifests.
modedebt
Package modedebt is the CONSUMER half of the mode-debt scorer/dispatcher pair (epic #4397, under harness-native #2387 / permission regimes #2389).
Package modedebt is the CONSUMER half of the mode-debt scorer/dispatcher pair (epic #4397, under harness-native #2387 / permission regimes #2389).
model
Package model is the in-kernel inference core: a pure-Go forward pass over a single small open-source model (SmolLM2-135M / Qwen2.5-0.5B), with the KV cache as a first-class Go data structure the kernel OWNS.
Package model is the in-kernel inference core: a pure-Go forward pass over a single small open-source model (SmolLM2-135M / Qwen2.5-0.5B), with the KV cache as a first-class Go data structure the kernel OWNS.
modelaccept
Package modelaccept evaluates versioned exact-model capability corpora without allowing missing evidence or aggregate averages to authorize a workload tier.
Package modelaccept evaluates versioned exact-model capability corpora without allowing missing evidence or aggregate averages to authorize a workload tier.
modeldescriptor
Package modeldescriptor defines declarative model capabilities and onboarding coupling budgets.
Package modeldescriptor defines declarative model capabilities and onboarding coupling budgets.
modelengine
Package modelengine wires the in-kernel model (internal/model) into the kernel as a registered abi.EngineDriver under the id "inkernel".
Package modelengine wires the in-kernel model (internal/model) into the kernel as a registered abi.EngineDriver under the id "inkernel".
modelinventory
Package modelinventory normalizes model artifact and runtime observations into a deterministic, credential-free candidate inventory.
Package modelinventory normalizes model artifact and runtime observations into a deterministic, credential-free candidate inventory.
modelladder
Package modelladder is the shared model-ladder/registry infrastructure used by the live demos (cmd/ctxdemo, cmd/demorace).
Package modelladder is the shared model-ladder/registry infrastructure used by the live demos (cmd/ctxdemo, cmd/demorace).
modelloadplan
Package modelloadplan selects a model artifact before any download or allocation.
Package modelloadplan selects a model artifact before any download or allocation.
modelops
Package modelops folds exact-model canary observations into capability-safe promotion, rollback, or hold decisions.
Package modelops folds exact-model canary observations into capability-safe promotion, rollback, or hold decisions.
modelpack
Package modelpack manages signed, resumable model artifacts and fixture-gated activation.
Package modelpack manages signed, resumable model artifacts and fixture-gated activation.
modelperfobs
Package modelperfobs measures OpenAI-compatible inference requests at the harness/backend seam and writes query-friendly JSONL observations.
Package modelperfobs measures OpenAI-compatible inference requests at the harness/backend seam and writes query-friendly JSONL observations.
modelreg
Package modelreg is the friendly-name → model-ref registry that lets a user say `fak run qwen2.5:7b` or `fak serve --gguf smollm2` instead of typing a full hf:// URI or hunting for a local .gguf path.
Package modelreg is the friendly-name → model-ref registry that lets a user say `fak run qwen2.5:7b` or `fak serve --gguf smollm2` instead of typing a full hf:// URI or hunting for a local .gguf path.
modelroute
Package modelroute is fak's model-routing spine: choose WHICH model — or which ENSEMBLE of models — serves any ASPECT of a request, under one declarative, deterministic, verifiable policy.
Package modelroute is fak's model-routing spine: choose WHICH model — or which ENSEMBLE of models — serves any ASPECT of a request, under one declarative, deterministic, verifiable policy.
modelroute/inputtrigger
Package inputtrigger classifies WHAT SHAPE OF INPUT triggered an admitted turn — once, at ingress — into a small closed vocabulary a routing policy can match on.
Package inputtrigger classifies WHAT SHAPE OF INPUT triggered an admitted turn — once, at ingress — into a small closed vocabulary a routing policy can match on.
modelscore
Package modelscore is the durable, pure registry of RAW model-capability evidence — the source-of-truth score shape that a tier policy (C3) and a dispatch chooser (C5) read, but that this package deliberately does NOT interpret.
Package modelscore is the durable, pure registry of RAW model-capability evidence — the source-of-truth score shape that a tier policy (C3) and a dispatch chooser (C5) read, but that this package deliberately does NOT interpret.
modelsetlock
Package modelsetlock persists canonical model-set selections with digest-bound, fail-closed readback.
Package modelsetlock persists canonical model-set selections with digest-bound, fail-closed readback.
modelsetreceipt
Package modelsetreceipt independently attests that a resolved harness model set is still compatible with current, witnessed inventory at startup.
Package modelsetreceipt independently attests that a resolved harness model set is still compatible with current, witnessed inventory at startup.
modelsetresolve
Package modelsetresolve deterministically binds harness roles to candidates from a validated, normalized model inventory.
Package modelsetresolve deterministically binds harness roles to candidates from a validated, normalized model inventory.
modelsrc
Package modelsrc provides model source URL resolution, transport registries, and random-access readers for local and remote model artifacts.
Package modelsrc provides model source URL resolution, transport registries, and random-access readers for local and remote model artifacts.
modver
Package modver derives a per-module version stamp from git history — the "version everything" spine.
Package modver derives a per-module version stamp from git history — the "version everything" spine.
mtpeval
Package mtpeval provides multi-task speculative evaluation harnesses and quality gates.
Package mtpeval provides multi-task speculative evaluation harnesses and quality gates.
mutationbudget
Package mutationbudget is the throttle guard for live GitHub mutations: it gates each planned burst of close/comment calls behind the remaining API budget so a parallel-agent fleet cannot exhaust the rate limit mid-batch and leave the work half-executed.
Package mutationbudget is the throttle guard for live GitHub mutations: it gates each planned burst of close/comment calls behind the remaining API budget so a parallel-agent fleet cannot exhaust the rate limit mid-batch and leave the work half-executed.
mutationefficacy
Package mutationefficacy is a bounded, SOFT mutation-testing probe for the qa-process scorecard (#3845): it asks the one question coverage and assertion-strength cannot -- would the suite actually FAIL if the code were wrong? It applies a tiny set of standard operator mutants (flip a comparator, off-by-one a bound, swap +/-) to an allow-list of packages, runs each package's tests against the mutated source, and counts SURVIVORS: mutants the suite did not catch.
Package mutationefficacy is a bounded, SOFT mutation-testing probe for the qa-process scorecard (#3845): it asks the one question coverage and assertion-strength cannot -- would the suite actually FAIL if the code were wrong? It applies a tiny set of standard operator mutants (flip a comparator, off-by-one a bound, swap +/-) to an allow-list of packages, runs each package's tests against the mutated source, and counts SURVIVORS: mutants the suite did not catch.
nativebench
Package nativebench owns the benchmark obligations for fak-native capabilities.
Package nativebench owns the benchmark obligations for fak-native capabilities.
nativeperf
Package nativeperf owns the committed hill-climb graph for fak-native raw-model performance.
Package nativeperf owns the committed hill-climb graph for fak-native raw-model performance.
nativeperfartifact
Package nativeperfartifact provides a bounded, public-safe index from native performance correlation keys to benchmark artifacts.
Package nativeperfartifact provides a bounded, public-safe index from native performance correlation keys to benchmark artifacts.
nativeperfbackend
Package nativeperfbackend defines the bounded Prometheus contract used by the fak-native Metal and CUDA backend drill-down dashboard.
Package nativeperfbackend defines the bounded Prometheus contract used by the fak-native Metal and CUDA backend drill-down dashboard.
nativeperfcorrelation
Package nativeperfcorrelation provides a bounded, scrubbed index that joins native-performance evidence without exporting high-cardinality identifiers as metric labels.
Package nativeperfcorrelation provides a bounded, scrubbed index that joins native-performance evidence without exporting high-cardinality identifiers as metric labels.
nativeperfcoverage
Package nativeperfcoverage proves that the committed native-performance dashboards, contracts, fixtures, and live receipts agree at every query edge.
Package nativeperfcoverage proves that the committed native-performance dashboards, contracts, fixtures, and live receipts agree at every query edge.
nativeperfobscontract
Package nativeperfobscontract freezes the bounded observability contract for fak-native inference performance surfaces.
Package nativeperfobscontract freezes the bounded observability contract for fak-native inference performance surfaces.
nativeperfslo
Package nativeperfslo turns matched fak-native benchmark observations into stable time-series state.
Package nativeperfslo turns matched fak-native benchmark observations into stable time-series state.
negframe
Package negframe implements fak-owned positive-state reframing.
Package negframe implements fak-owned positive-state reframing.
newleaf
Package newleaf generates architecture-compliant internal leaf skeletons and optional registration edits.
Package newleaf generates architecture-compliant internal leaf skeletons and optional registration edits.
newmodel
Package newmodel is new-model scaffolding command.
Package newmodel is new-model scaffolding command.
nightrun
Package nightrun is the "run it all night" center of excellence: the one place that answers, for an operator OR an agent, the single recurring question of unattended data collection —
Package nightrun is the "run it all night" center of excellence: the one place that answers, for an operator OR an agent, the single recurring question of unattended data collection —
nodecompare
Package nodecompare folds per-node benchmark outputs into a cross-hardware table.
Package nodecompare folds per-node benchmark outputs into a cross-hardware table.
nodeusagepost
Package nodeusagepost posts COMPUTE-NODE-USAGE status — the latest fleet/node readiness, the active worker count, and inbound load — to a Slack "node-usage" channel.
Package nodeusagepost posts COMPUTE-NODE-USAGE status — the latest fleet/node readiness, the active worker count, and inbound load — to a Slack "node-usage" channel.
normgate
Package normgate is a write-time ResultAdmitter that closes the context-MMU's measured DETECTION gap: the v0.1 ctxmmu matches injection markers and secret shapes as raw ASCII regex/substring, so any obfuscation (char-spacing, base64, homoglyph, zero-width, fullwidth, bidi, format-variant secrets) walks straight through (~100% evasion, measured on a private transcript-derived corpus).
Package normgate is a write-time ResultAdmitter that closes the context-MMU's measured DETECTION gap: the v0.1 ctxmmu matches injection markers and secret shapes as raw ASCII regex/substring, so any obfuscation (char-spacing, base64, homoglyph, zero-width, fullwidth, bidi, format-variant secrets) walks straight through (~100% evasion, measured on a private transcript-derived corpus).
numbermap
Package numbermap normalizes JSON-decoded numeric maps.
Package numbermap normalizes JSON-decoded numeric maps.
numfmt
Package numfmt renders compact human-facing decimal values.
Package numfmt renders compact human-facing decimal values.
observability
Package observability provides lightweight, pure-Go telemetry evaluation and alarm threshold monitoring across turn token budgets, turn latencies, and database health metrics.
Package observability provides lightweight, pure-Go telemetry evaluation and alarm threshold monitoring across turn token budgets, turn latencies, and database health metrics.
ociartifact
Package ociartifact implements the activation-neutral fak collection profile for OCI 1.1.
Package ociartifact implements the activation-neutral fak collection profile for OCI 1.1.
openaiadapter
Package openaiadapter provides the migration-critical OpenAI wire subset for one authenticated app.
Package openaiadapter provides the migration-critical OpenAI wire subset for one authenticated app.
opensweharder
Package opensweharder runs a deterministic, reversible closed-loop evaluation over frozen software-engineering tasks.
Package opensweharder runs a deterministic, reversible closed-loop evaluation over frozen software-engineering tasks.
openviking
Package openviking provides a typed optional client for the OpenViking public service contract.
Package openviking provides a typed optional client for the OpenViking public service contract.
operatorbrief
Package operatorbrief folds existing control-pane reports into one operator-facing brief.
Package operatorbrief folds existing control-pane reports into one operator-facing brief.
operatorquestion
Package operatorquestion is harness-agnostic operator question normalization.
Package operatorquestion is harness-agnostic operator question normalization.
operatorresolve
Package operatorresolve provides evidence-first resolution for operator clarification and approach questions.
Package operatorresolve provides evidence-first resolution for operator clarification and approach questions.
operatortouches
Package operatortouches is the R1 babysitting counter (#2270, epic #2269): a pure fold over loop-event ledgers (internal/loopmgr, fak.loop-event.v1) that measures how much HUMAN supervision a fleet actually consumed, per witnessed unit of shipped work.
Package operatortouches is the R1 babysitting counter (#2270, epic #2269): a pure fold over loop-event ledgers (internal/loopmgr, fak.loop-event.v1) that measures how much HUMAN supervision a fleet actually consumed, per witnessed unit of shipped work.
ops
Package ops implements the autonomous operations daemon and machine maintenance subsystem (#11156, #11158).
Package ops implements the autonomous operations daemon and machine maintenance subsystem (#11156, #11158).
optsdefault
Package optsdefault carries the workspace/time defaults shared by the scorecard Options types: an empty root means the current workspace and a zero Now means the wall clock in UTC, so a score is deterministic whenever a test pins either field.
Package optsdefault carries the workspace/time defaults shared by the scorecard Options types: an empty root means the current workspace and a zero Now means the wall clock in UTC, so a score is deterministic whenever a test pins either field.
opttarget
Package opttarget is the declarative target layer of the RSI optimization fuser (epic #1279).
Package opttarget is the declarative target layer of the RSI optimization fuser (epic #1279).
orgdebt
Package orgdebt grades organizational health and shift-left maturity across backlog readiness, task scope, lane contention, merge hygiene, and spine fan-out.
Package orgdebt grades organizational health and shift-left maturity across backlog readiness, task scope, lane contention, merge hygiene, and spine fan-out.
orientation
Package orientation exposes fak's versioned temporal product orientation.
Package orientation exposes fak's versioned temporal product orientation.
orphanscan
Package orphanscan is a small, syntactic detector for the "built but never wired up" smell: an unexported top-level function that is defined but referenced nowhere in its own package.
Package orphanscan is a small, syntactic detector for the "built but never wired up" smell: an unexported top-level function that is defined but referenced nowhere in its own package.
overtonscore
Package overtonscore evaluates subsystem normality against overton baseline windows.
Package overtonscore evaluates subsystem normality against overton baseline windows.
parentdir
Package parentdir prepares parent directories for file writes.
Package parentdir prepares parent directories for file writes.
patchcommit
Package patchcommit commits one explicitly supplied unified patch through a temporary Git index.
Package patchcommit commits one explicitly supplied unified patch through a temporary Git index.
pathlint
Package pathlint is a static witness for one external-boundary claim: that every user-supplied filesystem-path flag is normalized before it reaches the OS.
Package pathlint is a static witness for one external-boundary claim: that every user-supplied filesystem-path flag is normalized before it reaches the OS.
pathutil
Package pathutil holds small, dependency-free path helpers shared across the fak commands — chiefly normalizing user-supplied path flags before they reach the filesystem.
Package pathutil holds small, dependency-free path helpers shared across the fak commands — chiefly normalizing user-supplied path flags before they reach the filesystem.
placementtax
Package placementtax compares a candidate compute placement with an explicit, quality-matched reference without collapsing latency, throughput, money, energy, or capacity into one score.
Package placementtax compares a candidate compute placement with an explicit, quality-matched reference without collapsing latency, throughput, money, energy, or capacity into one score.
planaudit
Package planaudit audits coarse completion signals in plan documents.
Package planaudit audits coarse completion signals in plan documents.
plancfi
Package plancfi is control-flow integrity for an agent's PLAN — the stateful adjudicator that refuses a tool call which deviates from the approved plan.
Package plancfi is control-flow integrity for an agent's PLAN — the stateful adjudicator that refuses a tool call which deviates from the approved plan.
planresolve
Package planresolve provides oracle-driven plan content adjudication.
Package planresolve provides oracle-driven plan content adjudication.
policy
amendment.go is the PolicyKnob amendment-class registry (#5171, epic #5170, Track A): the single machine-checked source of truth stating, for every exported adjudicator.Policy field (and each non-field compiled-in floor element), its amendment class — who, if anyone, may move that knob, and in which direction.
amendment.go is the PolicyKnob amendment-class registry (#5171, epic #5170, Track A): the single machine-checked source of truth stating, for every exported adjudicator.Policy field (and each non-field compiled-in floor element), its amendment class — who, if anyone, may move that knob, and in which direction.
polymodel
Package polymodel is the deterministic core for hosting many models on one kernel and serializing decode to one lane — the "host 10s of models, share the prefill, decode one" design, expressed as proven arithmetic with no GPU, model, or network dependency.
Package polymodel is the deterministic core for hosting many models on one kernel and serializing decode to one lane — the "host 10s of models, share the prefill, decode one" design, expressed as proven arithmetic with no GPU, model, or network dependency.
portabilitycontract
Package portabilitycontract defines the versioned, transport-neutral contract for moving managed-agent state.
Package portabilitycontract defines the versioned, transport-neutral contract for moving managed-agent state.
portabilitylab
Package portabilitylab is the hermetic, release-gatable acceptance lab for the public portability APIs.
Package portabilitylab is the hermetic, release-gatable acceptance lab for the public portability APIs.
portabilityswitch
Package portabilityswitch coordinates context changes with the existing lifecycle and process-forest authorities.
Package portabilityswitch coordinates context changes with the existing lifecycle and process-forest authorities.
power
Package power provides cross-platform OS power assertion, wake-lock management, and sleep/wake event observation with lane lease freeze coordination for background agent execution.
Package power provides cross-platform OS power assertion, wake-lock management, and sleep/wake event observation with lane lease freeze coordination for background agent execution.
preflight
Package preflight is the pre-flight rung ladder: cheapest-first well-formedness checks that catch a malformed/unsafe call BEFORE it fires, so a dead branch never spawns a process or burns a model turn.
Package preflight is the pre-flight rung ladder: cheapest-first well-formedness checks that catch a malformed/unsafe call BEFORE it fires, so a dead branch never spawns a process or burns a model turn.
privatepath
Package privatepath resolves private operator artifacts outside the public checkout.
Package privatepath resolves private operator artifacts outside the public checkout.
processalive
Package processalive provides the shared, no-spawn process liveness probe.
Package processalive provides the shared, no-spawn process liveness probe.
processforest
Package processforest stores durable logical process ownership independent of PID ancestry.
Package processforest stores durable logical process ownership independent of PID ancestry.
processstart
Package processstart reads stable OS process-start identity without spawning a helper.
Package processstart reads stable OS process-start identity without spawning a helper.
procguard
env.go — the shared env-map → exec.Cmd.Env slice helper.
env.go — the shared env-map → exec.Cmd.Env slice helper.
proctest
Package proctest contains black-box process supervision contracts.
Package proctest contains black-box process supervision contracts.
productscorecard
Package productscorecard folds product-facing rows into the durable product scorecard payload and report.
Package productscorecard folds product-facing rows into the durable product scorecard payload and report.
programreport
Package programreport folds the project's ONGOING PROGRAMS — the work classes internal/worktype marks as never-"done" frontiers (kernel-optimization cache-optimization, and human-operator-effectiveness) — into one read-only report envelope with a durable JSONL trend ledger.
Package programreport folds the project's ONGOING PROGRAMS — the work classes internal/worktype marks as never-"done" frontiers (kernel-optimization cache-optimization, and human-operator-effectiveness) — into one read-only report envelope with a durable JSONL trend ledger.
projectionspine
Package projectionspine provides a small authority/projection harness.
Package projectionspine provides a small authority/projection harness.
projectreport
Package projectreport folds a GitHub ProjectsV2 board into the same schema/ok/verdict/finding/next_action control-pane envelope the milestone report uses (internal/milestonereport), so the board — "the fleet's single work pane" per .github/workflows/project-board-sync.yml — becomes an operator-visible dimension instead of a write-only sync target.
Package projectreport folds a GitHub ProjectsV2 board into the same schema/ok/verdict/finding/next_action control-pane envelope the milestone report uses (internal/milestonereport), so the board — "the fleet's single work pane" per .github/workflows/project-board-sync.yml — becomes an operator-visible dimension instead of a write-only sync target.
promalert
Package promalert parses an Alertmanager webhook payload (the v4 JSON an Alertmanager `webhook_config` POSTs) and renders it into compact Slack message text.
Package promalert parses an Alertmanager webhook payload (the v4 JSON an Alertmanager `webhook_config` POSTs) and renders it into compact Slack message text.
promptaudit
Package promptaudit scans system/developer/context prompt text for hidden control markers BEFORE they cross a model or cache boundary.
Package promptaudit scans system/developer/context prompt text for hidden control markers BEFORE they cross a model or cache boundary.
promptlint
Package promptlint is the durable freshness monitor for the dispatch worker-issue prompts.
Package promptlint is the durable freshness monitor for the dispatch worker-issue prompts.
promptlint/breath
Package breath checks fak's "in one breath" prose contract — the named summary block every page under contract opens with, specified in docs/ONE-BREATH-CONTRACT.md.
Package breath checks fak's "in one breath" prose contract — the named summary block every page under contract opens with, specified in docs/ONE-BREATH-CONTRACT.md.
promptmmu
Package promptmmu is the cache-prefix-preserving inbound prompt MMU: the INGRESS dual of the result-side ctxmmu.
Package promptmmu is the cache-prefix-preserving inbound prompt MMU: the INGRESS dual of the result-side ctxmmu.
propagationscore
Package propagationscore measures CONVENTION PROPAGATION across fak's scorecard family -- the degree to which a "scoring concept" improved in ONE card has fanned out to its siblings -- and turns each un-propagated gap into a deduped, dispatchable GitHub issue (internal/propagationscore/dispatch.go) so the operator never has to REMEMBER to extend an improvement by hand.
Package propagationscore measures CONVENTION PROPAGATION across fak's scorecard family -- the degree to which a "scoring concept" improved in ONE card has fanned out to its siblings -- and turns each un-propagated gap into a deduped, dispatchable GitHub issue (internal/propagationscore/dispatch.go) so the operator never has to REMEMBER to extend an improvement by hand.
provenance
Package provenance is the single, kernel-authored answer to one question: "where did this byte come from, and may the kernel trust it?" — and it is the ONE place that answer is decided.
Package provenance is the single, kernel-authored answer to one question: "where did this byte come from, and may the kernel trust it?" — and it is the ONE place that answer is decided.
providercost
Package providercost imports authoritative provider billing rows and attributes them to roots.
Package providercost imports authoritative provider billing rows and attributes them to roots.
providerjobaccounting
Package providerjobaccounting holds repository-level conformance tests for the provider-neutral completed-job accounting artifacts defined by issue #9575.
Package providerjobaccounting holds repository-level conformance tests for the provider-neutral completed-job accounting artifacts defined by issue #9575.
pythongate
Historical gate policy admitted tests of grandfathered modules because a test adds no operator-facing Python capability.
Historical gate policy admitted tests of grandfathered modules because a test adds no operator-facing Python capability.
qaprocessscore
Package qaprocessscore holds the QA-process scorecard's KPI folds -- the E-testing-quality track's "is our test process honest?" signals.
Package qaprocessscore holds the QA-process scorecard's KPI folds -- the E-testing-quality track's "is our test process honest?" signals.
qevicteval
Package qevicteval evaluates the recoverable quantized KV eviction recipe named by QEvict (arXiv:2608.05326v1) against ordinary irreversible eviction.
Package qevicteval evaluates the recoverable quantized KV eviction recipe named by QEvict (arXiv:2608.05326v1) against ordinary irreversible eviction.
quality
Package quality is the runnable spine of the "missing middle" validation ladder (epic #4509): the layer between primitive correctness tests (too local to catch a fluent-but-wrong decode) and end benchmarks (too coarse and late to localize an engine-caused regression).
Package quality is the runnable spine of the "missing middle" validation ladder (epic #4509): the layer between primitive correctness tests (too local to catch a fluent-but-wrong decode) and end benchmarks (too coarse and late to localize an engine-caused regression).
quantbench
Package quantbench defines the neutral quantization interoperability benchmark contract.
Package quantbench defines the neutral quantization interoperability benchmark contract.
quantcompat
Package quantcompat adjudicates whether a declared quantized artifact can run on a declared runtime and hardware envelope without an implicit conversion.
Package quantcompat adjudicates whether a declared quantized artifact can run on a declared runtime and hardware envelope without an implicit conversion.
quantdetect
Package quantdetect performs bounded, weight-free detection of quantization metadata in common artifact and runtime manifests.
Package quantdetect performs bounded, weight-free detection of quantization metadata in common artifact and runtime manifests.
quantfixture
Package quantfixture provides deterministic, redistributable quantization interoperability fixtures and verifies their provenance manifest.
Package quantfixture provides deterministic, redistributable quantization interoperability fixtures and verifies their provenance manifest.
quantlicense
Package quantlicense evaluates evidence supplied for a quantized-model license chain.
Package quantlicense evaluates evidence supplied for a quantized-model license chain.
quantmatrix
Package quantmatrix publishes fak's neutral quantization support registry.
Package quantmatrix publishes fak's neutral quantization support registry.
quantmeta
Package quantmeta is fak's neutral quantization capability descriptor (#6222, child of the broad-interoperability epic #6221).
Package quantmeta is fak's neutral quantization capability descriptor (#6222, child of the broad-interoperability epic #6221).
quantobs
Package quantobs emits bounded quantization route and residency telemetry.
Package quantobs emits bounded quantization route and residency telemetry.
quantpolicy
Package quantpolicy evaluates explicit policy constraints over quantization capability metadata.
Package quantpolicy evaluates explicit policy constraints over quantization capability metadata.
quantprov
Package quantprov defines neutral contracts for quantized-artifact provenance and conversion lineage.
Package quantprov defines neutral contracts for quantized-artifact provenance and conversion lineage.
quantroute
Package quantroute filters ordered runtime candidates by declared quantization compatibility without changing provider preference or hiding conversions.
Package quantroute filters ordered runtime candidates by declared quantization compatibility without changing provider preference or hiding conversions.
quantwatch
Package quantwatch provides a neutral, metadata-only watchlist for public quantization research and ecosystem releases.
Package quantwatch provides a neutral, metadata-only watchlist for public quantization research and ecosystem releases.
questionledger
Package questionledger is the deterministic labeling authority for the /question-loop skill's ledger, docs/questions/asked.jsonl.
Package questionledger is the deterministic labeling authority for the /question-loop skill's ledger, docs/questions/asked.jsonl.
qwen38campaign
Package qwen38campaign implements the subagent fan-out multi-agent benchmark harness for AMD Strix Halo ideal-cache workloads (fak-native execution engine).
Package qwen38campaign implements the subagent fan-out multi-agent benchmark harness for AMD Strix Halo ideal-cache workloads (fak-native execution engine).
qwen38ladder
Package qwen38ladder defines the evidence-gated path from fast Qwen3.5 experiments to an exact Qwen3.8-27B confirmation.
Package qwen38ladder defines the evidence-gated path from fast Qwen3.5 experiments to an exact Qwen3.8-27B confirmation.
qwen38quantrun
Package qwen38quantrun executes the frozen Qwen3.8 quantization corpus against an OpenAI-compatible endpoint and independently grades effects.
Package qwen38quantrun executes the frozen Qwen3.8 quantization corpus against an OpenAI-compatible endpoint and independently grades effects.
qwen4exp
Package qwen4exp contains bounded contracts for Qwen4-Exp native execution.
Package qwen4exp contains bounded contracts for Qwen4-Exp native execution.
qwenflashnext
Package qwenflashnext implements prompt formatting and response parsing for the Qwen3.8 Flash-Next generation model family.
Package qwenflashnext implements prompt formatting and response parsing for the Qwen3.8 Flash-Next generation model family.
qwensemanticstop
Package qwensemanticstop validates server-side compute-reclamation receipts.
Package qwensemanticstop validates server-side compute-reclamation receipts.
qwenworkbudget
Package qwenworkbudget turns canonical trajectory audit rollups into attributable Qwen campaign admission and continuation receipts.
Package qwenworkbudget turns canonical trajectory audit rollups into attributable Qwen campaign admission and continuation receipts.
radixkv
Cross-tier contiguous-prefix assembly accounting (#3379).
Cross-tier contiguous-prefix assembly accounting (#3379).
ratelimit
Package ratelimit is the throughput/cost governor: the adjudicator that turns the already-plumbed RATE_LIMITED reason into an actual enforcer.
Package ratelimit is the throughput/cost governor: the adjudicator that turns the already-plumbed RATE_LIMITED reason into an actual enforcer.
recall
Package recall makes a COMPLETED agent session queryable without replaying it — the "treat a finished session as a core dump" leaf (../../session-recall-design.md).
Package recall makes a COMPLETED agent session queryable without replaying it — the "treat a finished session as a core dump" leaf (../../session-recall-design.md).
refactorverify
Package refactorverify proves a god-split / code-motion refactor dropped NO top-level definition — the Go port of the retired tools/refactor_verify.py (fak pythongate).
Package refactorverify proves a god-split / code-motion refactor dropped NO top-level definition — the Go port of the retired tools/refactor_verify.py (fak pythongate).
refid
Package refid validates bounded path segments used by fak's Git-ref namespaces.
Package refid validates bounded path segments used by fak's Git-ref namespaces.
reflexagent
Package reflexagent provides lightweight, fast-spawning micro-agent execution profiles for atomic, leaf-level tasks requiring sub-millisecond setup latency and strict lane lease arbitration.
Package reflexagent provides lightweight, fast-spawning micro-agent execution profiles for atomic, leaf-level tasks requiring sub-millisecond setup latency and strict lane lease arbitration.
refutil
Package refutil holds foundation-level helpers for materializing ABI refs.
Package refutil holds foundation-level helpers for materializing ABI refs.
region
Package region provides a typed, in-process one-sided shared window over abi.Ref values.
Package region provides a typed, in-process one-sided shared window over abi.Ref values.
regionadmit
Package regionadmit is the shared region-admission decision every execution surface consults before mutating a file tree: may THIS actor act on THIS (lane, tree) right now, given the live lease set and the workspace lane taxonomy?
Package regionadmit is the shared region-admission decision every execution surface consults before mutating a file tree: may THIS actor act on THIS (lane, tree) right now, given the live lease set and the workspace lane taxonomy?
registrations
Package registrations is the "built-in driver list" (the Linux defconfig).
Package registrations is the "built-in driver list" (the Linux defconfig).
registrations/microagent
Package microagent is the microagent-minimal registration set: the composable SUBSET of the full-kernel defconfig (internal/registrations) that an in-process Go microagent host (#2000 M9) blank-imports INSTEAD of the whole defconfig.
Package microagent is the microagent-minimal registration set: the composable SUBSET of the full-kernel defconfig (internal/registrations) that an in-process Go microagent host (#2000 M9) blank-imports INSTEAD of the whole defconfig.
rehydrate
Package rehydrate is the horizon-gated re-entry orchestrator: the staged gate a resumed agent passes through BEFORE its first post-wake action, running strictly more revalidation the longer it slept.
Package rehydrate is the horizon-gated re-entry orchestrator: the staged gate a resumed agent passes through BEFORE its first post-wake action, running strictly more revalidation the longer it slept.
relay
Rung G2 (issue #1889): the two-phase arm/fire rotation state machine — the control-flow core that keeps a relay from ever rotating mid-action.
Rung G2 (issue #1889): the two-phase arm/fire rotation state machine — the control-flow core that keeps a relay from ever rotating mid-action.
release
Package release holds the single, process-safe release lock that every code path which mutates the two single-writer release resources — the bare VERSION marker and the monotone vX.Y.Z tag sequence — must take before its critical section.
Package release holds the single, process-safe release lock that every code path which mutates the two single-writer release resources — the bare VERSION marker and the monotone vX.Y.Z tag sequence — must take before its critical section.
releasestale
Package releasestale answers one question durably: "is the version that `go install github.com/.../cmd/fak@latest` would install actually current, or has the trunk moved far past it?"
Package releasestale answers one question durably: "is the version that `go install github.com/.../cmd/fak@latest` would install actually current, or has the trunk moved far past it?"
releasestatus
Package releasestatus folds the full read-only release posture that tools/release_status.py emits into one typed Go record — the broader sibling of internal/releasestale, which only covers the publish-staleness slice.
Package releasestatus folds the full read-only release posture that tools/release_status.py emits into one typed Go record — the broader sibling of internal/releasestale, which only covers the publish-staleness slice.
renameconcept
Package renameconcept plans — and mechanically applies — a CONCEPT rename across the whole tree: the "dgxbridge -> slackbridge" class of change, where one name is baked into directory names, Go identifiers, docs prose, config lanes, ignore rules, and historical data records, each wanting a different treatment.
Package renameconcept plans — and mechanically applies — a CONCEPT rename across the whole tree: the "dgxbridge -> slackbridge" class of change, where one name is baked into directory names, Go identifiers, docs prose, config lanes, ignore rules, and historical data records, each wanting a different treatment.
repoguard
cdmap.go — the drive-stripped-workspace `cd` rung of the repo-guard PreToolUse hook (worker path-mapping; driver: the 2026-07-09 trajectory audit).
cdmap.go — the drive-stripped-workspace `cd` rung of the repo-guard PreToolUse hook (worker path-mapping; driver: the 2026-07-09 trajectory audit).
reportledger
Package reportledger defines the (date, generated-at) ordering keys every report ledger row carries, so the "latest prior row" lookup is bound once here instead of once per report package.
Package reportledger defines the (date, generated-at) ordering keys every report ledger row carries, so the "latest prior row" lookup is bound once here instead of once per report package.
requanteval
Package requanteval evaluates fixed-grid discrete refinement without selecting a universal quantization method.
Package requanteval evaluates fixed-grid discrete refinement without selecting a universal quantization method.
residency
Package residency is the multi-model weight-residency leaf: it hosts many prefill-warm *model.Model under one resident weight-byte budget with LRU page-out, reusing internal/polymodel.Pool as the budget + eviction POLICY and binding each admitted residency descriptor to the real in-kernel weights it governs.
Package residency is the multi-model weight-residency leaf: it hosts many prefill-warm *model.Model under one resident weight-byte budget with LRU page-out, reusing internal/polymodel.Pool as the budget + eviction POLICY and binding each admitted residency descriptor to the real in-kernel weights it governs.
residualquant
Package residualquant defines the neutral capability contract for recurrent residual multi-precision quantization (RRQ).
Package residualquant defines the neutral capability contract for recurrent residual multi-precision quantization (RRQ).
resourcelifecycle
Package resourcelifecycle provides one typed lifecycle for model and agent resources.
Package resourcelifecycle provides one typed lifecycle for model and agent resources.
resulttier
Package resulttier provides standard bounded result tier allocation and pagination primitives for agent kernels and tool execution results.
Package resulttier provides standard bounded result tier allocation and pagination primitives for agent kernels and tool execution results.
resume
crashdrive.go — the crash-journal ↔ identity-map join.
crashdrive.go — the crash-journal ↔ identity-map join.
resume/rehome
Package rehome is the Go port of the interactive resume-resolver (tools/resume_resolver.py): it decides WHICH account `claude --resume <sid>` should run under, re-homing the transcript onto a healthy account when the owning account is rate-limited or blocked.
Package rehome is the Go port of the interactive resume-resolver (tools/resume_resolver.py): it decides WHICH account `claude --resume <sid>` should run under, re-homing the transcript onto a healthy account when the owning account is rate-limited or blocked.
resume/signals
Package signals keeps the older internal/resume signal API while delegating the shared terminal-turn taxonomy to internal/sessionsignals.
Package signals keeps the older internal/resume signal API while delegating the shared terminal-turn taxonomy to internal/sessionsignals.
resume/stopped
Package stopped is the pure decision core of the stopped-session triage: given the parsed tail of a top-level Claude Code transcript, classify how the session stopped (its DISPOSITION) and decide which stopped sessions are safe to resume headlessly, which must wait (account throttled / auth-walled), and which to leave alone.
Package stopped is the pure decision core of the stopped-session triage: given the parsed tail of a top-level Claude Code transcript, classify how the session stopped (its DISPOSITION) and decide which stopped sessions are safe to resume headlessly, which must wait (account throttled / auth-walled), and which to leave alone.
resume/sweep
audit.go — the row-assembly fold of the RELAUNCH-OUTCOME audit (the second half of the tools/resume_relaunch_audit.py port; relaunch.go carries the per-transcript verdict core).
audit.go — the row-assembly fold of the RELAUNCH-OUTCOME audit (the second half of the tools/resume_relaunch_audit.py port; relaunch.go carries the per-transcript verdict core).
resume/transcript
Package transcript is the ONE Claude Code session-transcript record model the resume-family tools share.
Package transcript is the ONE Claude Code session-transcript record model the resume-family tools share.
resumeactuator
Package resumeactuator renders harness continuation commands inside FAK's managed-agent envelope.
Package resumeactuator renders harness continuation commands inside FAK's managed-agent envelope.
resumebackoff
Package resumebackoff contains the pure resume-storm containment fold.
Package resumebackoff contains the pure resume-storm containment fold.
resumemetrics
Package resumemetrics is the PROCESS-GLOBAL expvar surface for the resume/heal watchdog (#3803).
Package resumemetrics is the PROCESS-GLOBAL expvar surface for the resume/heal watchdog (#3803).
rollout
Package rollout bounds the blast radius of new FAK generations by pinning new sessions to either a stable or deterministic candidate cohort.
Package rollout bounds the blast radius of new FAK generations by pinning new sessions to either a stable or deterministic candidate cohort.
rolloutmode
Package rolloutmode provides the closed staged-rollout ladder: off -> shadow -> canary -> on (#6090).
Package rolloutmode provides the closed staged-rollout ladder: off -> shadow -> canary -> on (#6090).
roofline
Package roofline provides analytical and empirical roofline models, hardware ceilings, and empirical micro-roofline probes for inference runtimes.
Package roofline provides analytical and empirical roofline models, hardware ceilings, and empirical micro-roofline probes for inference runtimes.
rotationmeta
Package rotationmeta defines a neutral contract for rotation-based low-bit quantization transform provenance and runtime-fusion requirements.
Package rotationmeta defines a neutral contract for rotation-based low-bit quantization transform provenance and runtime-fusion requirements.
rsiloop
Package rsiloop closes fak's recursive-self-improvement loop.
Package rsiloop closes fak's recursive-self-improvement loop.
rsl
Package rsl is the git Reference State Log — a forge-independent, append-only, hash-chained record of every observed trunk ref transition.
Package rsl is the git Reference State Log — a forge-independent, append-only, hash-chained record of every observed trunk ref transition.
rulesynth
Package rulesynth closes AUTOHARNESS's loop on OUR hand-authored harness: it mines the kernel's refusal/near-miss log to PROPOSE the next STRUCTURAL adjudicator rule, then PROVES it model-free before it can ship — never self-certifying (#537).
Package rulesynth closes AUTOHARNESS's loop on OUR hand-authored harness: it mines the kernel's refusal/near-miss log to PROPOSE the next STRUCTURAL adjudicator rule, then PROVES it model-free before it can ship — never self-certifying (#537).
rungobs
Package rungobs is the passive rung-decision distribution counter — the aggregate observability dual of `fak preflight --explain`.
Package rungobs is the passive rung-decision distribution counter — the aggregate observability dual of `fak preflight --explain`.
safecommit
Package safecommit is the EXECUTOR half of the shared-trunk commit discipline that internal/gitgate only declares defensively.
Package safecommit is the EXECUTOR half of the shared-trunk commit discipline that internal/gitgate only declares defensively.
safesync
Package safesync is safe fast-forward sync for dirty shared worktrees.
Package safesync is safe fast-forward sync for dirty shared worktrees.
sandbox
Package sandbox defines the tiered isolation ladder (L0 Wasm, L1 Host Native, L2 Virtual/gVisor), low-ego OCI/WASI/MCP execution contracts, and gym lifecycle invariants.
Package sandbox defines the tiered isolation ladder (L0 Wasm, L1 Host Native, L2 Virtual/gVisor), low-ego OCI/WASI/MCP execution contracts, and gym lifecycle invariants.
savingsvector
Package savingsvector re-projects a turnbench Report's FLAT saving into the FOUR orthogonal accounts named by docs/explainers/compounding-benefits-of-a-saved-call.md.
Package savingsvector re-projects a turnbench Report's FLAT saving into the FOUR orthogonal accounts named by docs/explainers/compounding-benefits-of-a-saved-call.md.
scdiff
Package scdiff is the shared diff-scoping seam for shift-left scorecards.
Package scdiff is the shared diff-scoping seam for shift-left scorecards.
schemaadapter
Package schemaadapter is centralized multi-provider tool schema contract adapter.
Package schemaadapter is centralized multi-provider tool schema contract adapter.
scmbridge
Package scmbridge completes the Windows supervision plane (#4756, parent #4748, foundation #4749): ONE desired-state / read-back contract shared by the SCM LocalService control plane and the Scheduled-Task S4U / InteractiveToken recovery bridge, so machine services, interactive agents, boot recovery, and crash recovery cannot diverge or double-launch.
Package scmbridge completes the Windows supervision plane (#4756, parent #4748, foundation #4749): ONE desired-state / read-back contract shared by the SCM LocalService control plane and the Scheduled-Task S4U / InteractiveToken recovery bridge, so machine services, interactive agents, boot recovery, and crash recovery cannot diverge or double-launch.
scoreboard
Package scoreboard posts fak status — scorecard results, scores, run events — to a Slack "scoreboard" channel.
Package scoreboard posts fak status — scorecard results, scores, run events — to a Slack "scoreboard" channel.
scorecardpane
Package scorecardpane is the native Go port of the two highest-frequency scorecard folds the family still ran in Python: the portfolio control-pane fold (tools/scorecard_control_pane.py) and the repo-hygiene scorecard fold (tools/repo_hygiene_scorecard.py).
Package scorecardpane is the native Go port of the two highest-frequency scorecard folds the family still ran in Python: the portfolio control-pane fold (tools/scorecard_control_pane.py) and the repo-hygiene scorecard fold (tools/repo_hygiene_scorecard.py).
scorecardportfolio
Package scorecardportfolio audits scorecard discovery surfaces without running detectors.
Package scorecardportfolio audits scorecard discovery surfaces without running detectors.
scratchmark
Package scratchmark detects source files whose leading comments declare the file disposable.
Package scratchmark detects source files whose leading comments declare the file disposable.
seatpark
Package seatpark provides a pure, bounded park-and-retry fold for the no-seat transient refusal (REFUSE_NO_ACCOUNT).
Package seatpark provides a pure, bounded park-and-retry fold for the no-seat transient refusal (REFUSE_NO_ACCOUNT).
secretgate
Package secretgate mechanically quarantines and reversibly obfuscates secrets.
Package secretgate mechanically quarantines and reversibly obfuscates secrets.
secretload
Package secretload is fak's first-class secret/config loader — the structural seam for pillars [C] (.env / config loading) and [D] (the vault backend) of the secret-handling epic (#880, foundation issue #887).
Package secretload is fak's first-class secret/config loader — the structural seam for pillars [C] (.env / config loading) and [D] (the vault backend) of the secret-handling epic (#880, foundation issue #887).
selfinstall
Package selfinstall rebuilds the fak binary from the current checkout and atomically swaps it into a target path — but ONLY after the freshly-built binary passes a gate, so a tree that does not compile, fails vet, or produces a binary that cannot even print its version is NEVER installed over a running fleet.
Package selfinstall rebuilds the fak binary from the current checkout and atomically swaps it into a target path — but ONLY after the freshly-built binary passes a gate, so a tree that does not compile, fails vet, or produces a binary that cannot even print its version is NEVER installed over a running fleet.
selfquery
This file is the general policy #1580 asks for: a level up from any single ask-vs-assume decision point, it specifies the ONE rule every such decision point in this codebase should be checkable against, rather than each one growing its own bespoke threshold.
This file is the general policy #1580 asks for: a level up from any single ask-vs-assume decision point, it specifies the ONE rule every such decision point in this codebase should be checkable against, rather than each one growing its own bespoke threshold.
selfupdate
Package selfupdate owns updater orchestration decisions and automation receipts.
Package selfupdate owns updater orchestration decisions and automation receipts.
sensecheck
Package sensecheck is the "does this actually make sense?" side-car.
Package sensecheck is the "does this actually make sense?" side-car.
seoaeoscore
JSON-LD parsing and shape helpers.
JSON-LD parsing and shape helpers.
serveradapter
Package serveradapter renders and probes supported external inference servers.
Package serveradapter renders and probes supported external inference servers.
serverartifact
Package serverartifact resolves a local model file to digest-bound identity facts and verifies that the file has not changed before launch handoff.
Package serverartifact resolves a local model file to digest-bound identity facts and verifies that the file has not changed before launch handoff.
serverlifecycle
Package serverlifecycle owns one local server instance from configuration through readiness and identity-checked teardown.
Package serverlifecycle owns one local server instance from configuration through readiness and identity-checked teardown.
serverproduct
Package serverproduct defines the versioned, secret-free boundary between an independently owned inference server and its consumers.
Package serverproduct defines the versioned, secret-free boundary between an independently owned inference server and its consumers.
servicelease
Package servicelease is the lease / generation / incarnation fencing layer over the fak.service.v1 contract (#4752, parent #4748, foundation #4749).
Package servicelease is the lease / generation / incarnation fencing layer over the fak.service.v1 contract (#4752, parent #4748, foundation #4749).
serviceledger
Package serviceledger is the portable append-only observed-state event ledger for services (#4753, parent #4748, depends on #4749).
Package serviceledger is the portable append-only observed-state event ledger for services (#4753, parent #4748, depends on #4749).
servicespec
Package servicespec defines the portable fak.service.v1 desired-state and restart-semantics contract (#4749, parent #4748).
Package servicespec defines the portable fak.service.v1 desired-state and restart-semantics contract (#4749, parent #4748).
servingsim
Package servingsim provides a high-fidelity, discrete-event simulation engine for LLM serving architectures.
Package servingsim provides a high-fidelity, discrete-event simulation engine for LLM serving architectures.
session
Rung H6 (issue #1899): the session-side wiring of the relay driver's Recontinue seam.
Rung H6 (issue #1899): the session-side wiring of the relay driver's Recontinue seam.
sessionaudit
Package sessionaudit audits Claude Code session-transcript JSONL files.
Package sessionaudit audits Claude Code session-transcript JSONL files.
sessiondesc
Package sessiondesc is the session-descriptor join schema (fak.session.descriptor.v1, issue #2214, epic #2209): ONE record that binds the four identity spaces a fak session lives in but which today never join —
Package sessiondesc is the session-descriptor join schema (fak.session.descriptor.v1, issue #2214, epic #2209): ONE record that binds the four identity spaces a fak session lives in but which today never join —
sessiondiag
Package sessiondiag classifies bounded, redacted evidence from Codex's local structured log and SQLite store.
Package sessiondiag classifies bounded, redacted evidence from Codex's local structured log and SQLite store.
sessionimage
Issue #4144 (wiring half): the production on-disk wiring for relay's cross-host WARM-resume seam.
Issue #4144 (wiring half): the production on-disk wiring for relay's cross-host WARM-resume seam.
sessionintent
Package sessionintent defines provider-neutral session-level operator intent.
Package sessionintent defines provider-neutral session-level operator intent.
sessionjournal
Package sessionjournal is the crash-survivable session-registration journal: an append-only JSONL lifecycle log (open / beat / close, each boot-stamped) plus the pure fold that classifies every recorded session LIVE / CRASHED / STALE / CLOSED against the machine BOOT EPOCH — so a system-wide infra crash (a Windows-update reboot, or a WindowsTerminal 0xc0000005 that kills every terminal at one instant) can be recovered from: the fleet re-enumerated and the crashed set resumed.
Package sessionjournal is the crash-survivable session-registration journal: an append-only JSONL lifecycle log (open / beat / close, each boot-stamped) plus the pure fold that classifies every recorded session LIVE / CRASHED / STALE / CLOSED against the machine BOOT EPOCH — so a system-wide infra crash (a Windows-update reboot, or a WindowsTerminal 0xc0000005 that kills every terminal at one instant) can be recovered from: the fleet re-enumerated and the crashed set resumed.
sessionledger
Package sessionledger is the durable per-trace hash chain the gateway and the RSI loop append to at every turn boundary.
Package sessionledger is the durable per-trace hash chain the gateway and the RSI loop append to at every turn boundary.
sessionmine
Package sessionmine normalizes local agent histories into privacy-safe workflow metrics.
Package sessionmine normalizes local agent histories into privacy-safe workflow metrics.
sessionobs
Package sessionobs scores the OBSERVABILITY of our own coding-session data for RSI loops.
Package sessionobs scores the OBSERVABILITY of our own coding-session data for RSI loops.
sessionread/directory
Package directory is the sessionread C4 read projection (issue #4195, child of epic #4176): it exposes, over the session READ plane, the two things an external process needs to DISCOVER and ADDRESS a session it did not launch —
Package directory is the sessionread C4 read projection (issue #4195, child of epic #4176): it exposes, over the session READ plane, the two things an external process needs to DISCOVER and ADDRESS a session it did not launch —
sessionread/durablestore
Package durablestore is the DURABLE, file-backed store that sits behind the gateway's span/context reads (fak_context_spans / fak_context_restore) — child C3 of the sessionread plane (epic #4176, issue #4194).
Package durablestore is the DURABLE, file-backed store that sits behind the gateway's span/context reads (fak_context_spans / fak_context_restore) — child C3 of the sessionread plane (epic #4176, issue #4194).
sessionread/mcpresources
Package mcpresources is the sessionread C6 MCP resource projection (issue #4197, child of epic #4176): it exposes a session's queryable transcript/context/decisions as standard MCP resources — the exact resources/list + resources/read shape any MCP client already understands (see internal/gateway/mcp_resources_prompts.go, read for wire-shape reference only, never imported here).
Package mcpresources is the sessionread C6 MCP resource projection (issue #4197, child of epic #4176): it exposes a session's queryable transcript/context/decisions as standard MCP resources — the exact resources/list + resources/read shape any MCP client already understands (see internal/gateway/mcp_resources_prompts.go, read for wire-shape reference only, never imported here).
sessionread/supervisor
Package supervisor is the CAPSTONE of the session read/query/observe plane (epic #4176, child C7 / #4198): the reference implementation of the external-supervisor pattern that BRIDGES the read plane (this epic) to the control plane (#2753).
Package supervisor is the CAPSTONE of the session read/query/observe plane (epic #4176, child C7 / #4198): the reference implementation of the external-supervisor pattern that BRIDGES the read plane (this epic) to the control plane (#2753).
sessionread/transcriptfeed
Package transcriptfeed is the THIRD cursor-CDC feed of the session read/query/observe plane (epic #4176, child C5 / #4196) — the transcript-event tail a peer or monitor subscribes to and re-attaches to by cursor.
Package transcriptfeed is the THIRD cursor-CDC feed of the session read/query/observe plane (epic #4176, child C5 / #4196) — the transcript-event tail a peer or monitor subscribes to and re-attaches to by cursor.
sessionregistry
Package sessionregistry stores durable, inspectable parent/child execution lineage.
Package sessionregistry stores durable, inspectable parent/child execution lineage.
sessionreplay
Package sessionreplay freezes one turn's regime-conditioned harness decision into a checked-in, deterministically replayable regression fixture (#4425, part of the managed-turn epic #4107).
Package sessionreplay freezes one turn's regime-conditioned harness decision into a checked-in, deterministically replayable regression fixture (#4425, part of the managed-turn epic #4107).
sessionreset
Package sessionreset builds the "human-like" carryover a fresh session is seeded with when a long-running session crosses its token budget.
Package sessionreset builds the "human-like" carryover a fresh session is seeded with when a long-running session crosses its token budget.
sessionsearch
Package sessionsearch provides witnessed cross-session recall over the guard tool-process journal (#2913).
Package sessionsearch provides witnessed cross-session recall over the guard tool-process journal (#2913).
sessionsignals
Package sessionsignals defines the closed vocabulary of terminal-turn transcript signals (usage limits, auth/credit walls, and transient errors) used to classify session state.
Package sessionsignals defines the closed vocabulary of terminal-turn transcript signals (usage limits, auth/credit walls, and transient errors) used to classify session state.
sessionsteer
Package sessionsteer is the steering + admission half of the zero-knob automatic-context doctrine (epic #2198, spine #3512).
Package sessionsteer is the steering + admission half of the zero-knob automatic-context doctrine (epic #2198, spine #3512).
shadowgit
Package shadowgit attributes every file write an agent makes to the exact step that made it, without touching the repo the agent is working in.
Package shadowgit attributes every file write an agent makes to the exact step that made it, without touching the repo the agent is working in.
sharedtask
Package sharedtask is the in-memory reference fold for collaborative task records.
Package sharedtask is the in-memory reference fold for collaborative task records.
shellprov
Package shellprov provides execution footprint recording and provenance tracking.
Package shellprov provides execution footprint recording and provenance tracking.
shelltoken
Package shelltoken provides small, dialect-neutral helpers for inspecting already-tokenized shell command words and flags.
Package shelltoken provides small, dialect-neutral helpers for inspecting already-tokenized shell command words and flags.
shipgate
Package shipgate provides fail-closed evidence gates for candidate changes and release actions.
Package shipgate provides fail-closed evidence gates for candidate changes and release actions.
signals
Package signals defines plain-English BEHAVIORAL signals over an agent's turns — the behavioral complement to the structural anti-pattern detectors.
Package signals defines plain-English BEHAVIORAL signals over an agent's turns — the behavioral complement to the structural anti-pattern detectors.
simhash
Package simhash provides reference vector-similarity primitives for near-duplicate detection, trajectory clustering, and outlier detection using deterministic feature hashing over character and word n-grams.
Package simhash provides reference vector-similarity primitives for near-duplicate detection, trajectory clustering, and outlier detection using deterministic feature hashing over character and word n-grams.
skilleffectiveness
Package skilleffectiveness measures whether each Claude Code skill in `.claude/skills/*/SKILL.md` is BUILT to be effective -- discoverable (a frontmatter description), triggerable (an explicit "use when"/"use to"), affordable (per-load-tier word budgets), and reachable through the queried loader (a queryable, paging, in-sync capability catalog) -- and folds the gaps into the control-pane payload every fak scorecard emits.
Package skilleffectiveness measures whether each Claude Code skill in `.claude/skills/*/SKILL.md` is BUILT to be effective -- discoverable (a frontmatter description), triggerable (an explicit "use when"/"use to"), affordable (per-load-tier word budgets), and reachable through the queried loader (a queryable, paging, in-sync capability catalog) -- and folds the gaps into the control-pane payload every fak scorecard emits.
skillenv
Package skillenv tracks active skill versions and previews blast radius for hot-swap or rollback through the context and KV MMU surfaces.
Package skillenv tracks active skill versions and previews blast radius for hot-swap or rollback through the context and KV MMU surfaces.
skillfootprint
Package skillfootprint prices the resident `.claude/skills` description floor — the always-shipped USERLAND slice of the token tax epic #3229 is shrinking — and holds the one-way ratchet that keeps it from growing unopposed (#5444).
Package skillfootprint prices the resident `.claude/skills` description floor — the always-shipped USERLAND slice of the token tax epic #3229 is shrinking — and holds the one-way ratchet that keeps it from growing unopposed (#5444).
skillvalue
Package skillvalue provides outcome value accounting for skills by comparing loaded sessions against matched baseline sessions of the same task class.
Package skillvalue provides outcome value accounting for skills by comparing loaded sessions against matched baseline sessions of the same task class.
skipledger
Package skipledger is a pure fold over one dispatchorder.Result tick into an auditable ledger: one row per candidate (skipped or selected), naming the issue, lane, reason, and timestamp, plus -- for a skip -- whether it was safety- or capacity-related.
Package skipledger is a pure fold over one dispatchorder.Result tick into an auditable ledger: one row per candidate (skipped or selected), naming the issue, lane, reason, and timestamp, plus -- for a skip -- whether it was safety- or capacity-related.
slackenv
Package slackenv is the ONE resolver for fak's Slack-surface configuration: it reads a key from the process environment or a gitignored .env.slack.local file (walking up from the working directory), so the "one gitignored file configures every workspace" idiom lives in a single tested place instead of eight verbatim copies.
Package slackenv is the ONE resolver for fak's Slack-surface configuration: it reads a key from the process environment or a gitignored .env.slack.local file (walking up from the working directory), so the "one gitignored file configures every workspace" idiom lives in a single tested place instead of eight verbatim copies.
slackmeta
Package slackmeta renders the common metadata line every fak Slack report carries.
Package slackmeta renders the common metadata line every fak Slack report carries.
slackoutbox
Package slackoutbox is the durable Slack outbox (#2262, epic #2259): every fak-native message survives crashes, 429s, and token drift by being ENQUEUED as a local JSONL append first and POSTED by a single serialized drainer second — the transactional-outbox pattern sized for a one-box fleet.
Package slackoutbox is the durable Slack outbox (#2262, epic #2259): every fak-native message survives crashes, 429s, and token drift by being ENQUEUED as a local JSONL append first and POSTED by a single serialized drainer second — the transactional-outbox pattern sized for a one-box fleet.
slackwire
Package slackwire is the ONE Slack Web API transport for fak: chat.postMessage, chat.update, conversations.history, and auth.test in a single tested client with 429/Retry-After handling and a typed error.
Package slackwire is the ONE Slack Web API transport for fak: chat.postMessage, chat.update, conversations.history, and auth.test in a single tested client with 429/Retry-After handling and a typed error.
snapshot
Package snapshot is the uniform DUMP/RESTORE seam over fak's primitives.
Package snapshot is the uniform DUMP/RESTORE seam over fak's primitives.
sortkeys
Package sortkeys compares records by source location and a stable tie-breaker.
Package sortkeys compares records by source location and a stable tie-breaker.
sotacoverage
Package sotacoverage drives `fak sota-coverage-scorecard`: it cross-checks the prior-art matrix (internal/sotamatrix) against the REAL tree -- every row points at code that exists, carries an http(s) primary link and a verification oracle; every kernel file is covered by some row; the matrix provenance is inside the freshness window -- and folds the gaps into one sota_debt integer.
Package sotacoverage drives `fak sota-coverage-scorecard`: it cross-checks the prior-art matrix (internal/sotamatrix) against the REAL tree -- every row points at code that exists, carries an http(s) primary link and a verification oracle; every kernel file is covered by some row; the matrix provenance is inside the freshness window -- and folds the gaps into one sota_debt integer.
sotamatrix
Package sotamatrix is the single, in-binary source of truth for "for each compute operation fak's kernel actually performs, what is the production / SOTA stack to learn from before writing it from scratch, and how should we relate to it (borrow / bind / stay-minimal)."
Package sotamatrix is the single, in-binary source of truth for "for each compute operation fak's kernel actually performs, what is the production / SOTA stack to learn from before writing it from scratch, and how should we relate to it (borrow / bind / stay-minimal)."
speedab
Package speedab grades pinned Claude fast-versus-standard experiments.
Package speedab grades pinned Claude fast-versus-standard experiments.
spendrollup
Package spendrollup builds the cross-account `fak spend` rollup: one or more labeled spend figures per account, each carrying a valuation basis AND a WITNESSED/OBSERVED provenance label, plus a gate that fails any figure that forgets either label.
Package spendrollup builds the cross-account `fak spend` rollup: one or more labeled spend figures per account, each carrying a valuation basis AND a WITNESSED/OBSERVED provenance label, plus a gate that fails any figure that forgets either label.
stablejson
Package stablejson renders the canonical on-disk JSON form shared by fak's receipts, ledgers, and proposed manifests: two-space-indented encoding/json output with a single trailing newline.
Package stablejson renders the canonical on-disk JSON form shared by fak's receipts, ledgers, and proposed manifests: two-space-indented encoding/json output with a single trailing newline.
stackpreflight
Package stackpreflight binds assembly, workload fitness, and exact support evidence before launch.
Package stackpreflight binds assembly, workload fitness, and exact support evidence before launch.
stackresolve
Package stackresolve resolves a versioned component request into a deterministic stack receipt.
Package stackresolve resolves a versioned component request into a deterministic stack receipt.
stalework
Package stalework builds bounded, read-only evidence packets for stale-artifact adjudication.
Package stalework builds bounded, read-only evidence packets for stale-artifact adjudication.
stallpage
Package stallpage turns stallscan's reboot high-water decision into a durable, deduped operator page.
Package stallpage turns stallscan's reboot high-water decision into a durable, deduped operator page.
stallscan
Package stallscan classifies whole-machine "stall" fingerprints from cheap, point-in-time system counters — the pure, OS-independent heart of `fak stallscan`.
Package stallscan classifies whole-machine "stall" fingerprints from cheap, point-in-time system counters — the pure, OS-independent heart of `fak stallscan`.
steerpr
Overlay MAINTENANCE loop (#5023): the tick that keeps the operator overlay current.
Overlay MAINTENANCE loop (#5023): the tick that keeps the operator overlay current.
stepbaton
Package stepbaton provides durable, cross-process persistence for step-advice decisions captured before trace rotation during session restarts.
Package stepbaton provides durable, cross-process persistence for step-advice decisions captured before trace rotation during session restarts.
stepbatoncapture
Package stepbatoncapture captures live managed-context advice reports from the gateway and projects them into durable stepbaton stamps before trace rotation.
Package stepbatoncapture captures live managed-context advice reports from the gateway and projects them into durable stepbaton stamps before trace rotation.
steward
Package steward is the steward population: a set of cheap, single-invariant validators that garden the kernel's journal.
Package steward is the steward population: a set of cheap, single-invariant validators that garden the kernel's journal.
stopfailure
Package stopfailure reads and settles DOS StopFailure breaker markers.
Package stopfailure reads and settles DOS StopFailure breaker markers.
stopgate
Package stopgate unifies lifecycle stop gates across fak guard and the fak agent native harness (#11253).
Package stopgate unifies lifecycle stop gates across fak guard and the fak agent native harness (#11253).
storage
Package storage implements flash-aware storage primitives for high-volume agent workloads.
Package storage implements flash-aware storage primitives for high-volume agent workloads.
storagepressure
Package storagepressure combines read-only storage-owner receipts into one provenance-honest filesystem pressure report.
Package storagepressure combines read-only storage-owner receipts into one provenance-honest filesystem pressure report.
storedrv
Package storedrv is fak's pluggable STORAGE-DRIVER framework — the seam that lets every kind of data live in the place that fits it (hot RAM, durable disk, a remote object store, later a columnar or KV backend) instead of the one in-memory map the v0.1 blob store gives everything.
Package storedrv is fak's pluggable STORAGE-DRIVER framework — the seam that lets every kind of data live in the place that fits it (hot RAM, durable disk, a remote object store, later a columnar or KV backend) instead of the one in-memory map the v0.1 blob store gives everything.
streamrules
Package streamrules matches regular-expression rules against incrementally received text, thinking, and tool-argument streams.
Package streamrules matches regular-expression rules against incrementally received text, thinking, and tool-argument streams.
strictjson
Package strictjson decodes exactly one JSON value while rejecting unknown fields.
Package strictjson decodes exactly one JSON value while rejecting unknown fields.
stringlist
Package stringlist parses compact operator-facing string lists.
Package stringlist parses compact operator-facing string lists.
stringset
Package stringset provides deterministic views of string sets.
Package stringset provides deterministic views of string sets.
stripeload
Package stripeload fans a single logical read across byte-identical mirrors of the same file, sized proportionally by relative bandwidth.
Package stripeload fans a single logical read across byte-identical mirrors of the same file, sized proportionally by relative bandwidth.
strmatch
Package strmatch is the one shared any-substring matcher the per-package containsAny copies converged on (slop de-dup #776): six identical bool bodies and one first-match variant were duplicated across internal/{attemptbudget,benchlineagegate,headroom,windowgate, readmevisualaudit,terminalbench,vcacheqa}.
Package strmatch is the one shared any-substring matcher the per-package containsAny copies converged on (slop de-dup #776): six identical bool bodies and one first-match variant were duplicated across internal/{attemptbudget,benchlineagegate,headroom,windowgate, readmevisualaudit,terminalbench,vcacheqa}.
study
Package study persists immutable source-to-decision receipts.
Package study persists immutable source-to-decision receipts.
studyadjacency
Package studyadjacency defines and validates the bounded related-system manifest used by runtime studies.
Package studyadjacency defines and validates the bounded related-system manifest used by runtime studies.
studybench
Package studybench measures bounded retrieval quality over study records.
Package studybench measures bounded retrieval quality over study records.
studyclass
Package studyclass is the deterministic upstream forge-corpus classification and validation spine.
Package studyclass is the deterministic upstream forge-corpus classification and validation spine.
studyforge
Package studyforge captures reproducible, paginated GitHub repository corpora.
Package studyforge captures reproducible, paginated GitHub repository corpora.
studylink
Package studylink deterministically joins stable upstream mechanism clusters to captured FAK issue state and repository artifacts.
Package studylink deterministically joins stable upstream mechanism clusters to captured FAK issue state and repository artifacts.
studyprio
Package studyprio builds and validates the bounded priority queue derived from a study join ledger.
Package studyprio builds and validates the bounded priority queue derived from a study join ledger.
studyreceipt
Package studyreceipt implements verifiable study receipt tracking, validation, and tamper-evident storage for empirical study artifacts.
Package studyreceipt implements verifiable study receipt tracking, validation, and tamper-evident storage for empirical study artifacts.
studytickets
Package studytickets validates conversion of prioritized study clusters into dispatchable issues.
Package studytickets validates conversion of prioritized study clusters into dispatchable issues.
subtractiveprofile
Package subtractiveprofile resolves capability profiles with sticky removals.
Package subtractiveprofile resolves capability profiles with sticky removals.
suiteverify
Package suiteverify provides shared validation primitives for JSON-backed test suites.
Package suiteverify provides shared validation primitives for JSON-backed test suites.
superloop
Package superloop is the operator-intent META-LOOP: a SUPER LOOP walks a curated set of member loops/gardens/scorecards, reads their status FIRST, and selects worst-first which member to enter — the layer that sits ABOVE a normal loop.
Package superloop is the operator-intent META-LOOP: a SUPER LOOP walks a curated set of member loops/gardens/scorecards, reads their status FIRST, and selects worst-first which member to enter — the layer that sits ABOVE a normal loop.
superstream
Package superstream provides the functional top-level coordinator for "Super Workstreams": an organized, queue-ordered execution stream that bridges high-level operator intents, dynamic per-item lane leases, and rigorous context safety across long multi-turn sessions.
Package superstream provides the functional top-level coordinator for "Super Workstreams": an organized, queue-ordered execution stream that bridges high-level operator intents, dynamic per-item lane leases, and rigorous context safety across long multi-turn sessions.
supervisionpolicy
Package supervisionpolicy defines the platform-neutral decision contract for supervising logical sessions.
Package supervisionpolicy defines the platform-neutral decision contract for supervising logical sessions.
supervisoragent
Package supervisoragent defines the closed, payload-free INPUT CONTRACT that a supervisor agent consumes — fence #1 of the supervisor-seat doctrine (docs/notes/CONCEPT-SUPERVISOR-AGENT-SEAT-2026-07-13.md; epic #4477, leaf #4478).
Package supervisoragent defines the closed, payload-free INPUT CONTRACT that a supervisor agent consumes — fence #1 of the supervisor-seat doctrine (docs/notes/CONCEPT-SUPERVISOR-AGENT-SEAT-2026-07-13.md; epic #4477, leaf #4478).
supportgraph
Package supportgraph queries provenance-bearing hardware and quantization support facts.
Package supportgraph queries provenance-bearing hardware and quantization support facts.
supportmaturity
featureroster.go — C6 of the support-maturity epic (#1249/#1243): score non-model FEATURES on the SAME M0–M7 ladder the model×backend grid reads off, so "feature support" and "architecture support" come off one instrument instead of two prose tables.
featureroster.go — C6 of the support-maturity epic (#1249/#1243): score non-model FEATURES on the SAME M0–M7 ladder the model×backend grid reads off, so "feature support" and "architecture support" come off one instrument instead of two prose tables.
supportmaturityscore
Package supportmaturityscore grades the covmatrix support rungs as a scorecard.
Package supportmaturityscore grades the covmatrix support rungs as a scorecard.
swebench
Package swebench turns SWE-bench Verified into a fak-native benchmark whose results are directly comparable to the external "N-Server Cache Benchmarking Tool" (the Benchmark repo, "bench") that runs the same task set against an SGLang endpoint.
Package swebench turns SWE-bench Verified into a fak-native benchmark whose results are directly comparable to the external "N-Server Cache Benchmarking Tool" (the Benchmark repo, "bench") that runs the same task set against an SGLang endpoint.
swebenchsota
Package swebenchsota emits a dated SWE-bench SOTA reference snapshot extracted from the official leaderboard at https://www.swebench.com/.
Package swebenchsota emits a dated SWE-bench SOTA reference snapshot extracted from the official leaderboard at https://www.swebench.com/.
sweepcert
Package sweepcert provides pure cross-layer sweep evidence validation and deterministic finding folds.
Package sweepcert provides pure cross-layer sweep evidence validation and deterministic finding folds.
syspromptmmu
Package syspromptmmu emits fak's ordered base-context plan — the fak-first head of the context window (Rung 1 of the system-prompt MMU, epic #1258, issue #1259).
Package syspromptmmu emits fak's ordered base-context plan — the fak-first head of the context window (Rung 1 of the system-prompt MMU, epic #1258, issue #1259).
systembaseline
Package systembaseline captures and validates ambient system-load attestations for performance runs.
Package systembaseline captures and validates ambient system-load attestations for performance runs.
systemservice
Package systemservice renders service-manager definitions that keep fak's control plane outside terminal, compositor, and login-session process trees.
Package systemservice renders service-manager definitions that keep fak's control plane outside terminal, compositor, and login-session process trees.
systools
Package systools implements safe system and web search/fetch utility tools for the native agent harness: get_time for system timestamps and timezones, fetch_web with SSRF protection and byte capping, and web_search for structured web or documentation search.
Package systools implements safe system and web search/fetch utility tools for the native agent harness: get_time for system timestamps and timezones, fetch_web with SSRF protection and byte capping, and web_search for structured web or documentation search.
taskgraph
Package taskgraph folds a shared task journal into a typed task table with lease-gated claims.
Package taskgraph folds a shared task journal into a typed task table with lease-gated claims.
taskidentity
Package taskidentity derives the canonical task identity for an agent session.
Package taskidentity derives the canonical task identity for an agent session.
taskmgr
Package taskmgr is fak's process-local task manager concept.
Package taskmgr is fak's process-local task manager concept.
taskvc
Package taskvc binds the fleet's live Windows Scheduled Tasks to the installers that recreate them from version control (#3323).
Package taskvc binds the fleet's live Windows Scheduled Tasks to the installers that recreate them from version control (#3323).
tb4bench
Package tb4bench is a tier-composer leaf (describe its single responsibility).
Package tb4bench is a tier-composer leaf (describe its single responsibility).
tempartifact
Package tempartifact inventories and conservatively reaps direct fak artifacts from the resolved OS temporary directory.
Package tempartifact inventories and conservatively reaps direct fak artifacts from the resolved OS temporary directory.
terminalbarrier
Package terminalbarrier coordinates the fail-closed pause barrier before terminal host replacement.
Package terminalbarrier coordinates the fail-closed pause barrier before terminal host replacement.
terminalbench
Package terminalbench adapts Terminal-Bench-shaped command traces into fak command-boundary mediation reports.
Package terminalbench adapts Terminal-Bench-shaped command traces into fak command-boundary mediation reports.
testenv
Package testenv provides the credential-free process boundary used by the repository test entry point.
Package testenv provides the credential-free process boundary used by the repository test entry point.
testquality
Package testquality is the Go TEST-QUALITY ratchet: the Go-side twin of internal/pythongate, pointed at tests that pass whether or not the code under test works.
Package testquality is the Go TEST-QUALITY ratchet: the Go-side twin of internal/pythongate, pointed at tests that pass whether or not the code under test works.
timeaware
Package timeaware provides deterministic accounting and health signals for agent work.
Package timeaware provides deterministic accounting and health signals for agent work.
timeoutphase
Package timeoutphase is a pure classifier over one timed-out worker attempt: given the facts the caller observed (which lifecycle stage markers fired before the kill), decide WHICH stage the timeout actually happened in -- before the worker ever started, during its edit pass, during tests, during commit, or during push (#1793).
Package timeoutphase is a pure classifier over one timed-out worker attempt: given the facts the caller observed (which lifecycle stage markers fired before the kill), decide WHICH stage the timeout actually happened in -- before the worker ever started, during its edit pass, during tests, during commit, or during push (#1793).
tokencache
Package tokencache is the persisted, content-addressed backing store for clonescan's per-file tokenization (#4330).
Package tokencache is the persisted, content-addressed backing store for clonescan's per-file tokenization (#4330).
tokenizer
Package tokenizer is a tokenizer leaf for offline text/id conversion outside the model proof path.
Package tokenizer is a tokenizer leaf for offline text/id conversion outside the model proof path.
tokenprofile
Package tokenprofile classifies forecast and observed model tokens by economic and scheduling duty.
Package tokenprofile classifies forecast and observed model tokens by economic and scheduling duty.
toolbound
Package toolbound is generic tool output bounding with managed spill files.
Package toolbound is generic tool output bounding with managed spill files.
toolcallcontrol
Package toolcallcontrol applies deterministic, pre-execution checks to proposed agent tool calls and attributes their long-context cost in an ablation report.
Package toolcallcontrol applies deterministic, pre-execution checks to proposed agent tool calls and attributes their long-context cost in an ablation report.
toolcatalog
Package toolcatalog defines the boundary between executable tool registration, model-visible discovery, and deterministic skill compilation.
Package toolcatalog defines the boundary between executable tool registration, model-visible discovery, and deterministic skill compilation.
toolcoverage
Package toolcoverage audits which load-bearing tools modules have sibling tests.
Package toolcoverage audits which load-bearing tools modules have sibling tests.
toolgrammar
Package toolgrammar compiles discriminated union schemas into EBNF grammars for constrained tool calling with literal parameter escaping and byte-level space protection.
Package toolgrammar compiles discriminated union schemas into EBNF grammars for constrained tool calling with literal parameter escaping and byte-level space protection.
toollint
Package toollint is the kernel's STATIC tool linter: it checks the registered tool SURFACE for inconsistencies the runtime would otherwise silently paper over on every single call.
Package toollint is the kernel's STATIC tool linter: it checks the registered tool SURFACE for inconsistencies the runtime would otherwise silently paper over on every single call.
toolplugin
Package toolplugin defines a monotone, typed extension host around tool-call adjudication.
Package toolplugin defines a monotone, typed extension host around tool-call adjudication.
toolproc
Package toolproc is the kernel's process table for tool calls — the lifecycle spine for LONG-RUNNING tool use.
Package toolproc is the kernel's process table for tool calls — the lifecycle spine for LONG-RUNNING tool use.
toolprocgate
Package toolprocgate is the revocation gate — the first ENFORCEMENT rung of the tool process table (seam 2 of docs/notes/CONCEPT-TOOL-PROCESS-TABLE-2026-07-02.md).
Package toolprocgate is the revocation gate — the first ENFORCEMENT rung of the tool process table (seam 2 of docs/notes/CONCEPT-TOOL-PROCESS-TABLE-2026-07-02.md).
toolrollup
Package toolrollup folds tool-call records into per-tool aggregates.
Package toolrollup folds tool-call records into per-tool aggregates.
toolsandbox
Package toolsandbox adapts tau3/ToolSandbox-shaped policy-state traces into fak adjudication reports.
Package toolsandbox adapts tau3/ToolSandbox-shaped policy-state traces into fak adjudication reports.
toolseq
Package toolseq turns ordered per-session tool-call sequences into a tool-transition graph and its most common contiguous sequence variants — the "when do tools run, and in what order" view over a trajectory corpus.
Package toolseq turns ordered per-session tool-call sequences into a tool-transition graph and its most common contiguous sequence variants — the "when do tools run, and in what order" view over a trajectory corpus.
toolshape
Package toolshape fingerprints the SHAPE of one tool call's input and output — the redaction-safe structural record the session-analytics rollup chain consumes (epic #2822: this is C1, the keystone leaf C2/C4/C5 build on).
Package toolshape fingerprints the SHAPE of one tool call's input and output — the redaction-safe structural record the session-analytics rollup chain consumes (epic #2822: this is C1, the keystone leaf C2/C4/C5 build on).
tooltrend
Package tooltrend folds an ordered sequence of per-session tool-call buckets into a tool-mix and response output-shape trend across sessions.
Package tooltrend folds an ordered sequence of per-session tool-call buckets into a tool-mix and response output-shape trend across sessions.
toon
Package toon is a general JSON<->TOON (Token-Oriented Object Notation) codec whose correctness spine is a lossless, type-preserving round-trip: Decode(Encode(v)) deep- equals v for every value in the supported domain.
Package toon is a general JSON<->TOON (Token-Oriented Object Notation) codec whose correctness spine is a lossless, type-preserving round-trip: Decode(Encode(v)) deep- equals v for every value in the supported domain.
tracesink
Package tracesink provides a payload-bearing, IFC-labeled trajectory sink.
Package tracesink provides a payload-bearing, IFC-labeled trajectory sink.
trajctl
Package trajctl is the trajectory-control objective, score-row, witness-rung, and JSONL ledger model.
Package trajctl is the trajectory-control objective, score-row, witness-rung, and JSONL ledger model.
trajctlhook
Package trajctlhook is the impure call-site assembly that binds the pure trajctl turn-boundary fold (trajctl.Sample / trajctl.CompactionBoundary / trajctl.AppendSample) to a running session's host evidence.
Package trajctlhook is the impure call-site assembly that binds the pure trajctl turn-boundary fold (trajctl.Sample / trajctl.CompactionBoundary / trajctl.AppendSample) to a running session's host evidence.
trajectory
Package trajectory is fak's TRAJECTORY DATA PLANE — the typed, exportable record of what an agent actually did, turn by turn, that application-layer optimizers build trajectory/memory/cache/planner analyses ON TOP of.
Package trajectory is fak's TRAJECTORY DATA PLANE — the typed, exportable record of what an agent actually did, turn by turn, that application-layer optimizers build trajectory/memory/cache/planner analyses ON TOP of.
trajectoryassurance
Package trajectoryassurance builds read-only, privacy-safe trajectory health receipts.
Package trajectoryassurance builds read-only, privacy-safe trajectory health receipts.
trajhook
Package trajhook is the PLUGGABLE TRAJECTORY-SCORER SEAM — the rung that lets a trivial application-layer skill garden trajectories (flag bad queries, find near-duplicate work, prune dead memory) WITHOUT a core edit to fak.
Package trajhook is the PLUGGABLE TRAJECTORY-SCORER SEAM — the rung that lets a trivial application-layer skill garden trajectories (flag bad queries, find near-duplicate work, prune dead memory) WITHOUT a core edit to fak.
trajquery
Package trajquery lets an agent query its OWN trajectory corpus with a small SQL SELECT — and confines that query to an operator-defined scope by REWRITING it as a view, with a validator that proves the rewrite cannot leak rows outside the scope.
Package trajquery lets an agent query its OWN trajectory corpus with a small SQL SELECT — and confines that query to an operator-defined scope by REWRITING it as a view, with a validator that proves the rewrite cannot leak rows outside the scope.
treedoctor
Package treedoctor diagnoses and (optionally) sweeps a fak working tree that has gone un-tidy under a permanently-on agent fleet, where the trunk is never quiescent.
Package treedoctor diagnoses and (optionally) sweeps a fak working tree that has gone un-tidy under a permanently-on agent fleet, where the trunk is never quiescent.
trendreport
Package trendreport provides shared envelope, advisory gate, and ledger formatting structures used across trend reports.
Package trendreport provides shared envelope, advisory gate, and ledger formatting structures used across trend reports.
trigram
Package trigram is a pure-Go trigram postings index for substring and regex search over a document set — the tree + sibling-repo code-search seam (#3437, epic #3434).
Package trigram is a pure-Go trigram postings index for substring and regex search over a document set — the tree + sibling-repo code-search seam (#3437, epic #3434).
trunkbuildprobe
Package trunkbuildprobe diagnoses *why* the release gate's ci-fast subset is red: is it a forgotten `git add`?
Package trunkbuildprobe diagnoses *why* the release gate's ci-fast subset is red: is it a forgotten `git add`?
tuiplugin
Package tuiplugin is the in-process extension seam for fak console panes.
Package tuiplugin is the in-process extension seam for fak console panes.
turnavoid
Package turnavoid replays immutable, independently labelled turn decisions.
Package turnavoid replays immutable, independently labelled turn decisions.
turnbench
changepoint.go — CHANGE-POINT DETECTION on the overhead/benchmark series (issue #1163, T7 of the self-tax assurance epic #1147).
changepoint.go — CHANGE-POINT DETECTION on the overhead/benchmark series (issue #1163, T7 of the self-tax assurance epic #1147).
turnkind
Package turnkind classifies the latest user turn of an agentic conversation from message STRUCTURE alone — which content-block types the last user message carries, never their content.
Package turnkind classifies the latest user turn of an agentic conversation from message STRUCTURE alone — which content-block types the last user message carries, never their content.
turntaxmeter
hooklat.go — the guard-hook latency rollup (issue #1993): fold the DOS hook-observation stream's per-observation latency_ms into percentiles and judge the tail against a declared budget.
hooklat.go — the guard-hook latency rollup (issue #1993): fold the DOS hook-observation stream's per-observation latency_ms into percentiles and judge the tail against a declared budget.
turntaxvisual
Package turntaxvisual renders the checked-in turn-tax efficiency visual from its JSON source of truth.
Package turntaxvisual renders the checked-in turn-tax efficiency visual from its JSON source of truth.
uiquality
Package uiquality is the deterministic measuring stick for fak's terminal UI/UX quality — the surface the sibling scorecards never watch.
Package uiquality is the deterministic measuring stick for fak's terminal UI/UX quality — the surface the sibling scorecards never watch.
ultracodebench
Package ultracodebench evaluates paired single-agent and fleet coding runs.
Package ultracodebench evaluates paired single-agent and fleet coding runs.
ultracodeborrow
Package ultracodeborrow validates external workflow borrowing artifacts against required mechanisms, license boundaries, benchmark contracts, and ownership claims.
Package ultracodeborrow validates external workflow borrowing artifacts against required mechanisms, license boundaries, benchmark contracts, and ownership claims.
ultracodecrossover
Package ultracodecrossover evaluates the bounded task-complexity crossover where micro-context scoping stops preserving accepted outcomes.
Package ultracodecrossover evaluates the bounded task-complexity crossover where micro-context scoping stops preserving accepted outcomes.
ultracodedogfood
Package ultracodedogfood evaluates and verifies UltraCode dogfood lifecycle session replays.
Package ultracodedogfood evaluates and verifies UltraCode dogfood lifecycle session replays.
ultracodenegcontrol
Package ultracodenegcontrol evaluates predeclared negative controls for the frozen managed-context campaign.
Package ultracodenegcontrol evaluates predeclared negative controls for the frozen managed-context campaign.
ultracodetokenizer
Package ultracodetokenizer evaluates tokenizer-portable Ultracode context-omission receipts.
Package ultracodetokenizer evaluates tokenizer-portable Ultracode context-omission receipts.
unwiredscore
Package unwiredscore is the UNWIRED-CODE scorecard -- the recurring detector for the failure class the operator named "code complete but not wired into the default path".
Package unwiredscore is the UNWIRED-CODE scorecard -- the recurring detector for the failure class the operator named "code complete but not wired into the default path".
unwitnessedclaim
Package unwitnessedclaim is a closed, pure checker for one narrow drift: an issue whose latest comment reads as a self-reported completion claim ("done", "fixed", "shipped", ...) while the issue itself is still open -- meaning no commit's ship-stamp ancestry ("Fixes #N") ever landed to close it.
Package unwitnessedclaim is a closed, pure checker for one narrow drift: an issue whose latest comment reads as a self-reported completion claim ("done", "fixed", "shipped", ...) while the issue itself is still open -- meaning no commit's ship-stamp ancestry ("Fixes #N") ever landed to close it.
urllint
Package urllint is a static witness for the network external-boundary claim's twin of pathlint: that no Go source hardcodes a model/tokenizer DOWNLOAD url outside the one audited chokepoint that derives and (via a network-gated test) verifies them.
Package urllint is a static witness for the network external-boundary claim's twin of pathlint: that no Go source hardcodes a model/tokenizer DOWNLOAD url outside the one audited chokepoint that derives and (via a network-gated test) verifies them.
usagelog
Package usagelog is the durable, append-only, tamper-evident CLI-INVOCATION journal — the record of how `fak` ITSELF is used, the gap epic #1601 (child A, #1608) closes.
Package usagelog is the durable, append-only, tamper-evident CLI-INVOCATION journal — the record of how `fak` ITSELF is used, the gap epic #1601 (child A, #1608) closes.
usagepreflight
Package usagepreflight decides whether an outbound provider request may spend the selected seat's quota.
Package usagepreflight decides whether an outbound provider request may spend the selected seat's quota.
vcachecal
Package vcachecal is the vCache observe & calibrate engine — milestone M1 of the vCache epic (issue #716).
Package vcachecal is the vCache observe & calibrate engine — milestone M1 of the vCache epic (issue #716).
vcachechain
Package vcachechain is the vCache chains & recall engine — milestone M4 of the vCache epic (issue #719).
Package vcachechain is the vCache chains & recall engine — milestone M4 of the vCache epic (issue #719).
vcacheextract
Package vcacheextract sanitizes Codex session JSONL token telemetry.
Package vcacheextract sanitizes Codex session JSONL token telemetry.
vcachegov
Package vcachegov is the vCache Governor — the steady-state policy layer that decides, per cacheable prefix, whether to heartbeat-pin it, let it lazy-rebuild, ride natural traffic, or evict it; and how many prefixes to warm inside rate-limit headroom.
Package vcachegov is the vCache Governor — the steady-state policy layer that decides, per cacheable prefix, whether to heartbeat-pin it, let it lazy-rebuild, ride natural traffic, or evict it; and how many prefixes to warm inside rate-limit headroom.
vcacheobserve
Package vcacheobserve is the vCache per-sub-concept OBSERVABILITY lens over real provider-cache telemetry — the "10x observability into all the sub-concepts" surface behind `fak vcache observe`.
Package vcacheobserve is the vCache per-sub-concept OBSERVABILITY lens over real provider-cache telemetry — the "10x observability into all the sub-concepts" surface behind `fak vcache observe`.
vcacheqa
Package vcacheqa is the shared QA harness + witness contract every vCache gate (M1 vcachecal, M2 vcachestar, M3 vcachewarm, M4 vcachechain, M5 vcachegov, and the attribution/conflation surfaces) must pass before it is allowed to flip default-on.
Package vcacheqa is the shared QA harness + witness contract every vCache gate (M1 vcachecal, M2 vcachestar, M3 vcachewarm, M4 vcachechain, M5 vcachegov, and the attribution/conflation surfaces) must pass before it is allowed to flip default-on.
vcachescore
Package vcachescore composes the vCache proof leaves into an agent-facing benchmark scorecard.
Package vcachescore composes the vCache proof leaves into an agent-facing benchmark scorecard.
vcachesnapshot
Package vcachesnapshot persists the gateway's observed per-turn provider-cache window to a small JSONL file at a well-known per-user path, so a SEPARATE `fak vcache score` process can read the REALIZED cache window a finished `fak guard`/`fak serve` session observed — instead of falling back to the synthetic-Zipf planned forecast.
Package vcachesnapshot persists the gateway's observed per-turn provider-cache window to a small JSONL file at a well-known per-user path, so a SEPARATE `fak vcache score` process can read the REALIZED cache window a finished `fak guard`/`fak serve` session observed — instead of falling back to the synthetic-Zipf planned forecast.
vcachestar
Package vcachestar is the vCache M2 star-anchor decision layer.
Package vcachestar is the vCache M2 star-anchor decision layer.
vcachewarm
Package vcachewarm is the vCache M3 dedicated-warming decision layer.
Package vcachewarm is the vCache M3 dedicated-warming decision layer.
vdso
Package vdso is the tool vDSO: a 3-tier local fast path that answers a tool call with NO engine and NO remote round-trip — the agentic analogue of the kernel vDSO that serves gettimeofday() from userspace without a syscall.
Package vdso is the tool vDSO: a 3-tier local fast path that answers a tool call with NO engine and NO remote round-trip — the agentic analogue of the kernel vDSO that serves gettimeofday() from userspace without a syscall.
verattest
Package verattest provides commit-bound pre-PR verification attestation schemas and deterministic, read-only validation primitives (#10463, parent #2391).
Package verattest provides commit-bound pre-PR verification attestation schemas and deterministic, read-only validation primitives (#10463, parent #2391).
verifierexposure
Package verifierexposure ranks the gameability of fak's verification gates.
Package verifierexposure ranks the gameability of fak's verification gates.
versionskew
Package versionskew turns "I can't tell which fak is running" into a STRUCTURED, REFUSABLE version-skew verdict — the binary-provenance R2 witness (#3351, epic #2218 G2).
Package versionskew turns "I can't tell which fak is running" into a STRUCTURED, REFUSABLE version-skew verdict — the binary-provenance R2 witness (#3351, epic #2218 G2).
vllmcompile
Package vllmcompile provides tuned-baseline verification for served-engine benchmarks, recording compile, CUDA-graph, and warmup state artifacts.
Package vllmcompile provides tuned-baseline verification for served-engine benchmarks, recording compile, CUDA-graph, and warmup state artifacts.
vllmquant
Package vllmquant decides which vLLM quantization kernel may serve a quantized artifact, and refuses to invent an answer when the evidence does not contain one.
Package vllmquant decides which vLLM quantization kernel may serve a quantized artifact, and refuses to invent an answer when the evidence does not contain one.
waiting
Package waiting is the R3 waiting-on-human queue (#2272, epic #2269): a pure fold over loop-event ledgers (internal/loopmgr) that turns each blocked-on-operator notify into one kernel object with age, held resources, deadline, and the safe default that fires on expiry — babysitting inverted: the fleet files tickets on the human, with deadlines.
Package waiting is the R3 waiting-on-human queue (#2272, epic #2269): a pure fold over loop-event ledgers (internal/loopmgr) that turns each blocked-on-operator notify into one kernel object with age, held resources, deadline, and the safe default that fires on expiry — babysitting inverted: the fleet files tickets on the human, with deadlines.
walkfiles
Package walkfiles traverses directory trees, visiting regular files and ignoring walk-step errors.
Package walkfiles traverses directory trees, visiting regular files and ignoring walk-step errors.
watchdoghealth
Package watchdoghealth is the pure health-digest core for fak's DEFAULT watchdog monitors — the OS-scheduled fleet timers (resume, supervisor, dos-dispatch, stale-work-garden) that `cmd/fak`'s watchdog-autoheal keeps alive on every `fak serve` / `fak guard` boot.
Package watchdoghealth is the pure health-digest core for fak's DEFAULT watchdog monitors — the OS-scheduled fleet timers (resume, supervisor, dos-dispatch, stale-work-garden) that `cmd/fak`'s watchdog-autoheal keeps alive on every `fak serve` / `fak guard` boot.
wavefuel
Package wavefuel holds the executable contract for fleet-wave operator receipts.
Package wavefuel holds the executable contract for fleet-wave operator receipts.
webbench
Package webbench turns frontier web/browser agent benchmarks into fak-native benchmarks whose results directly measure the value of fak's session value stack on multi-turn web automation tasks.
Package webbench turns frontier web/browser agent benchmarks into fak-native benchmarks whose results directly measure the value of fak's session value stack on multi-turn web automation tasks.
webbench/browser
Package browser is the webbench browser-control adapter over Playwright CLI.
Package browser is the webbench browser-control adapter over Playwright CLI.
wiki
Package wiki is the fak-native, witness-verified repo-wiki core (epic #4277, mined from AsyncFuncAI/deepwiki-open @ 16f35a0 — inspire, clean-room Go).
Package wiki is the fak-native, witness-verified repo-wiki core (epic #4277, mined from AsyncFuncAI/deepwiki-open @ 16f35a0 — inspire, clean-room Go).
windowgate
Package windowgate is the NO-DESKTOP-POPUP ratchet: the durable gate that keeps always-on fleet automation from flashing console windows on the interactive desktop — the "random terminal popups".
Package windowgate is the NO-DESKTOP-POPUP ratchet: the durable gate that keeps always-on fleet automation from flashing console windows on the interactive desktop — the "random terminal popups".
wipattr
Package wipattr is the pure attribution core for #3874 (C2).
Package wipattr is the pure attribution core for #3874 (C2).
wipfence
Package wipfence applies and removes the shared-trunk WIP build fence.
Package wipfence applies and removes the shared-trunk WIP build fence.
wiplease
Package wiplease projects the ATTRIBUTED DIRTY TREE into the lease geometry the shared-tree admission decision already understands, so a session's real footprint is visible to peers from its first dirty byte instead of only during cleanup.
Package wiplease projects the ATTRIBUTED DIRTY TREE into the lease geometry the shared-tree admission decision already understands, so a session's real footprint is visible to peers from its first dirty byte instead of only during cleanup.
wipreadiness
Package wipreadiness models a reusable observation receipt for fresh-work admission.
Package wipreadiness models a reusable observation receipt for fresh-work admission.
wiprecon
Package wiprecon is the pure reconciliation core for #3875 (C3).
Package wiprecon is the pure reconciliation core for #3875 (C3).
wipref
Package wipref is the PURE core of `fak wip`: the working-tree checkpoint ledger that lives under refs/fak/wip/<session> — a sibling of the lease refs (internal/leaseref, refs/fak/locks/*).
Package wipref is the PURE core of `fak wip`: the working-tree checkpoint ledger that lives under refs/fak/wip/<session> — a sibling of the lease refs (internal/leaseref, refs/fak/locks/*).
wirescreen
Package wirescreen — ROADMAP for the "local model on the wire" proposer spine.
Package wirescreen — ROADMAP for the "local model on the wire" proposer spine.
witness
decision.go — the append-only decision recorder: every adjudication / refusal the kernel makes, written as a git note on a DEDICATED side ref so the record is durable, peer-readable, and NEVER touches the trunk's commit objects.
decision.go — the append-only decision recorder: every adjudication / refusal the kernel makes, written as a git note on a DEDICATED side ref so the record is durable, peer-readable, and NEVER touches the trunk's commit objects.
witnessprocess
Package witnessprocess defines the witness-first contract shared by issue and worker packets.
Package witnessprocess defines the witness-first contract shared by issue and worker packets.
workaccount
Package workaccount declares every shipped fak mechanism whose work effect must be visible, explicitly excluded, or honestly unavailable in the WORK DONE product seam.
Package workaccount declares every shipped fak mechanism whose work effect must be visible, explicitly excluded, or honestly unavailable in the WORK DONE product seam.
workdelivery
Package workdelivery defines the versioned contract for independently tracking authored work, compile admission, verification, integration, release, activation, and operator acceptance.
Package workdelivery defines the versioned contract for independently tracking authored work, compile admission, verification, integration, release, activation, and operator acceptance.
workerenvelope
Package workerenvelope defines a small machine-readable envelope for the RESULT a dispatch worker hands back when it finishes a GitHub issue.
Package workerenvelope defines a small machine-readable envelope for the RESULT a dispatch worker hands back when it finishes a GitHub issue.
workerworktree
Package workerworktree is the native Go port of tools/worker_worktree.py: the per-worker git worktree isolation primitive that the live dispatch spawn wires in for #3168.
Package workerworktree is the native Go port of tools/worker_worktree.py: the per-worker git worktree isolation primitive that the live dispatch spawn wires in for #3168.
workflow
Package workflow is a built-in workflow orchestration layer (D-005, issue #245): a small, deterministic DAG engine plus the three patterns agent frameworks reach for most — map-reduce, fan-out, and an explicit dependency DAG — expressible as a JSON/YAML document and executed CPU-correctly with no model in the loop.
Package workflow is a built-in workflow orchestration layer (D-005, issue #245): a small, deterministic DAG engine plus the three patterns agent frameworks reach for most — map-reduce, fan-out, and an explicit dependency DAG — expressible as a JSON/YAML document and executed CPU-correctly with no model in the loop.
workflow/ultracoderesume
Package ultracoderesume persists the small identity and receipt spine needed to resume an interrupted Ultracode graph without trusting controller memory.
Package ultracoderesume persists the small identity and receipt spine needed to resume an interrupted Ultracode graph without trusting controller memory.
workflowaudit
Package workflowaudit classifies every git-branch / tag reference in the project's GitHub Actions workflows against the branch-role contract (internal/branchrole), so the dev->main front-door migration (#1697 / #1701) has a checkable map of what each branch filter is FOR -- and a gate that reds the moment a new, unclassified development-path `main`/`master` reference is introduced.
Package workflowaudit classifies every git-branch / tag reference in the project's GitHub Actions workflows against the branch-role contract (internal/branchrole), so the dev->main front-door migration (#1697 / #1701) has a checkable map of what each branch filter is FOR -- and a gate that reds the moment a new, unclassified development-path `main`/`master` reference is introduced.
workflowlint
Package workflowlint refutes "fak-blind" ultracode Workflow scripts — the ones an ultracode session emits that never touch fak's own self-index, memory algebra, or shared-path leasing.
Package workflowlint refutes "fak-blind" ultracode Workflow scripts — the ones an ultracode session emits that never touch fak's own self-index, memory algebra, or shared-path leasing.
workloadfit
Package workloadfit evaluates technically compatible stacks against a domain-owned workload contract without turning preferences into hard gates.
Package workloadfit evaluates technically compatible stacks against a domain-owned workload contract without turning preferences into hard gates.
worklog
Package worklog is the unified agent-work change feed (#3172): the "outbox insight" applied to agent work.
Package worklog is the unified agent-work change feed (#3172): the "outbox insight" applied to agent work.
workspin
Package workspin detects sustained repository activity that is not producing witnessed, substantive delivery.
Package workspin detects sustained repository activity that is not producing witnessed, substantive delivery.
worktreewitness
Package worktreewitness runs a command inside a transient detached git worktree pinned at origin/main, so the verdict reflects the trunk tip and NOT the caller's dirty working tree.
Package worktreewitness runs a command inside a transient detached git worktree pinned at origin/main, so the verdict reflects the trunk tip and NOT the caller's dirty working tree.
worktype
Package worktype names the closed set of WORK CLASSES the project-management surfaces sort work into — the single source of truth that lets the milestone roadmap and the `fak program` report draw the same line between an ONGOING OPTIMIZATION PROGRAM and a DISCRETE DELIVERABLE EPIC.
Package worktype names the closed set of WORK CLASSES the project-management surfaces sort work into — the single source of truth that lets the milestone roadmap and the `fak program` report draw the same line between an ONGOING OPTIMIZATION PROGRAM and a DISCRETE DELIVERABLE EPIC.
xenginekv
Package xenginekv ships the cross-engine zero-copy KV co-residence seam (#448): a RegionBackend whose Resolver hands out RefRegion handles into ONE addressable arena where an EXTERNAL engine's KV cache and fak's tool args/results CO-RESIDE.
Package xenginekv ships the cross-engine zero-copy KV co-residence seam (#448): a RegionBackend whose Resolver hands out RefRegion handles into ONE addressable arena where an EXTERNAL engine's KV cache and fak's tool args/results CO-RESIDE.
zaitask
Package zaitask is a bounded Z.AI task runner.
Package zaitask is a bounded Z.AI task runner.
pkg
abi
Package abi is the IMPORTABLE vendor surface of fak's frozen ABI.
Package abi is the IMPORTABLE vendor surface of fak's frozen ABI.
conversationprofile
Package conversationprofile binds portable conversation intent to harness-specific adapters.
Package conversationprofile binds portable conversation intent to harness-specific adapters.
fakclient
Package fakclient is the importable Go client SDK for the fak gateway's fak-native verdict surface (F-007, issue #205).
Package fakclient is the importable Go client SDK for the fak gateway's fak-native verdict surface (F-007, issue #205).
harnessconformance
Package harnessconformance provides an external black-box compatibility suite for harness adapters without importing fak internals.
Package harnessconformance provides an external black-box compatibility suite for harness adapters without importing fak internals.
harnesskit
Package harnesskit defines fak's supported public vocabulary for agent products.
Package harnesskit defines fak's supported public vocabulary for agent products.
harnesssidecar
Package harnesssidecar provides a bounded, fail-closed local transport for language-neutral harness extensions.
Package harnesssidecar provides a bounded, fail-closed local transport for language-neutral harness extensions.
managedharness
Package managedharness implements a local immutable-generation lifecycle for named harness products.
Package managedharness implements a local immutable-generation lifecycle for named harness products.
scorecard
Package scorecard is the IMPORTABLE shared kernel behind fak's scorecard family.
Package scorecard is the IMPORTABLE shared kernel behind fak's scorecard family.
sessionsignals
Package sessionsignals defines the closed vocabulary of terminal-turn transcript signals (usage limits, auth/credit walls, and transient errors) used to classify session state.
Package sessionsignals defines the closed vocabulary of terminal-turn transcript signals (usage limits, auth/credit walls, and transient errors) used to classify session state.
Package tools hosts repository-tooling contract tests whose executable implementations remain in the fak command and grandfathered maintenance scripts.
Package tools hosts repository-tooling contract tests whose executable implementations remain in the fak command and grandfathered maintenance scripts.
videogen command
Command video is the single entry point for the repository's shared explainer-video renderer.
Command video is the single entry point for the repository's shared explainer-video renderer.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL