EveryDev.ai
Subscribe
Home
Tools

3,355+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. fak — the Fused Agent Kernel
    fak — the Fused Agent Kernel icon

    fak — the Fused Agent Kernel

    Agent Frameworks
    Featured

    A single Go binary that turns any tool-using AI agent (Claude Code, Codex, Cursor, OpenAI/Anthropic/MCP clients) into a managed agent with cache-stable model traffic, nanosecond tool-call policy, and context compaction.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under Apache-2.0. Download and self-host the single static binary.

    Engagement

    Available On

    CLI
    API
    Linux
    macOS
    Windows

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksAI InfrastructureLLM Orchestration

    Alternatives

    CalljmpClawRouterMistral AI
    Developer
    Netra Systems, Inc.Irvine, CAEst. 2025

    Listed Aug 2026

    About fak — the Fused Agent Kernel

    fak (Fused Agent Kernel) is an open-source Go binary that sits between an AI agent and the tools it calls, acting as a management plane for model traffic, context lifetime, and capability policy. Released under Apache-2.0 by Netra Systems, Inc., it is designed to drop in front of existing agents — Claude Code, Codex, Cursor, or any OpenAI/Anthropic/MCP client — without requiring a rewrite or API key to evaluate. The project is pre-1.0 and actively developed, with every capability claim tagged as [SHIPPED], [SIMULATED], or [STUB] in a public claims ledger.

    What It Is

    fak is an agent kernel: an in-process gate that intercepts every tool call an agent makes and treats it like a syscall. The model proposes; the kernel disposes. From the operations seat it is a control plane with audit and policy enforcement. From the performance seat it is a coordination layer that eliminates repeated work across context, cache, and model traffic. The project's own framing is that those two functions turn out to be the same gate — the tool-call boundary.

    The kernel runs in two modes: fak guard launches beside a single local agent session as its supervisor, and fak serve runs as a shared OpenAI-, Anthropic-, or MCP-compatible endpoint that multiple clients can point at. Both modes run the same kernel; the difference is scope.

    How the Kernel Gate Works

    Every tool call passes through a five-gate flow inside the kernel before it reaches the outside world:

    • Policy verdict — each proposed call receives ALLOW, DENY, TRANSFORM, or REQUIRE_WITNESS against a reviewable capability floor. The project states this check runs at ~362 ns in-process with no policy model or network hop, and defaults to default-deny for unknown tools.
    • Addressable KV cache — the kernel can reach into the middle of a kept run, evict a single poisoned or expired span, and leave the model's scratchpad bit-for-bit identical to a run that never saw it (the project labels this max|Δ| = 0).
    • Shared-prefix reuse — the system-prompt-plus-tools block is prefilled once for a whole agent fleet and reused across sessions. The project's benchmark authority documents claim approximately 4.1× fewer prefill tokens versus a tuned warm-cache stack on a 5-agent × 50-turn workload.
    • Context compaction — sessions compact their own history (up to ~107K tokens per trim) and can resume after a crash instead of dying at the context limit.
    • In-kernel GGUF serving — the kernel can load GGUF weights itself and serve OpenAI, Anthropic, and MCP clients directly, with SSD expert-weight offload for mixture-of-experts models so the full model does not have to sit in RAM.

    Deployment Model

    fak is a single static binary with no runtime dependencies. Installation is a one-line curl or go install for Go 1.26+ users. It is offline-capable: fak agent --offline runs a deterministic mock planner that verifies the managed-agent path and policy boundary without an API key, model download, or GPU. The project also ships a Colab quickstart notebook for browser-based evaluation.

    For production use, fak guard wraps an existing agent CLI (e.g., fak guard -- claude) and fak serve exposes a gateway endpoint that existing OpenAI or Anthropic clients point at unchanged. A fak node install command registers an always-on MCP service.

    Tradeoffs to Know

    The project's README is explicit about what fak is not:

    • It is not a faster model server — vLLM, SGLang, and llama.cpp win raw throughput; fak runs in front of them.
    • The security floor is structural, not detection-based — it removes the tools and results a prompt injection would need rather than claiming to detect a successful injection.
    • Tool-calling turns are adjudicated whole-turn, not token-streamed — prose deltas still stream, but tool-call bytes do not, so full-turn latency applies when wiring an interactive harness to the gateway.
    • The reuse win is self-host only; frontier-scale fleet numbers are design targets, not measurements.
    • Power and energy numbers are simulated.

    Update: v0.43.0 (July 2026)

    The README was verified against VERSION 0.43.0 on 2026-07-29. The latest GitHub release tag is v0.41.0 (published 2026-07-14). The repository was last pushed on 2026-07-29, indicating active development. The project's CLAIMS.md and BENCHMARK-AUTHORITY.md are maintained as living documents that trace every benchmark number to a commit and artifact, and label what is simulated versus measured.

    fak — the Fused Agent Kernel - 1

    Community Discussions

    Be the first to start a conversation about fak — the Fused Agent Kernel

    Share your experience with fak — the Fused Agent Kernel, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under Apache-2.0. Download and self-host the single static binary.

    • Single static binary install
    • fak guard and fak serve modes
    • Default-deny tool-call policy
    • Addressable KV cache
    • Context compaction and crash resume

    Capabilities

    Key Features

    • Drop-in agent kernel — no rewrite required
    • fak guard: local launcher and supervisor for existing agents
    • fak serve: shared OpenAI/Anthropic/MCP-compatible endpoint
    • Default-deny tool-call policy with ALLOW/DENY/TRANSFORM/REQUIRE_WITNESS verdicts
    • Nanosecond in-process policy checks (~362 ns, no network hop)
    • Addressable KV cache with mid-run span eviction (max|Δ|=0)
    • Shared-prefix reuse across agent fleets
    • Context compaction up to ~107K tokens per trim
    • Crash resume for long-running sessions
    • In-kernel GGUF weight loading with SSD expert offload for MoE models
    • Offline mode for keyless, GPU-free evaluation
    • Audit journal for every tool-call verdict
    • Quarantine for poisoned tool results
    • Code linting at the kernel boundary (Go, JSON, Python, CUDA)
    • OpenAI, Anthropic, and MCP client compatibility
    • Single static binary, no runtime dependencies
    • Apache-2.0 open-source license
    • Public claims ledger with SHIPPED/SIMULATED/STUB tags

    Integrations

    Claude Code
    OpenAI Codex
    Cursor
    opencode
    OpenAI API
    Anthropic API
    MCP (Model Context Protocol)
    llama.cpp
    Ollama (via base-url)
    vLLM (via base-url)
    SGLang (via base-url)
    GGUF models
    Qwen models
    Google Colab
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate fak — the Fused Agent Kernel and help others make informed decisions.

    Developer

    Netra Systems, Inc.

    Netra Systems builds fak, the Fused Agent Kernel — an open-source Go binary that turns tool-using AI agents into managed agents with structural policy enforcement, cache-stable model traffic, and context compaction. The project is maintained by Anthony Chaudhary and released under Apache-2.0. Netra Systems focuses on the operational boundary around AI agent sessions, separating the task loop (owned by the agent) from the management plane (owned by fak) and the token generation (owned by the model provider).

    Founded 2025
    Irvine, CA
    5 employees
    Read more about Netra Systems, Inc.
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Calljmp icon

    Calljmp

    Calljmp is a managed backend platform for building and deploying AI agents and workflows as TypeScript code, with built-in state management, human-in-the-loop, and observability.

    ClawRouter icon

    ClawRouter

    An open-source, agent-native LLM router that reduces AI API costs by up to 92% using 15-dimension local routing, wallet-based auth, and USDC micropayments via the x402 protocol.

    Mistral AI icon

    Mistral AI

    Open-source-first AI company providing state-of-the-art LLMs, APIs, agent orchestration, fine-tuning tools, and deployable private inference solutions for enterprise and developer use.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    549 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    331 tools

    LLM Orchestration

    Platforms and frameworks for designing, managing, and deploying complex LLM workflows with visual interfaces, allowing for the coordination of multiple AI models and services.

    192 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions