claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Frameworks & SDKs

flue

The sandbox agent framework.

// Frameworks & SDKs[ cli ][ api ][ claude ]#claude#frameworksApache-2.0$open-sourceupdated 15 days ago
Actively maintained
99/100
last commit 5 days ago
last release none
releases 0
open issues 22
// install
git clone https://github.com/withastro/flue

Flue — The Agent Harness Framework

Not another SDK. Build autonomous agents and powerful AI workflows with Flue's programmable TypeScript harness.

// agents/triage.ts
import { defineAgent, type AgentRouteHandler } from '@flue/runtime';
import { local } from '@flue/runtime/node';
import triage from '../skills/triage/SKILL.md' with { type: 'skill' };
import verify from '../skills/verify/SKILL.md' with { type: 'skill' };
import * as githubTools from '../tools/github.ts';

// Give agents the context and autonomy to solve complex tasks:
const instructions = `
Triage a bug report end-to-end: reproduce the bug,
diagnose the root cause, verify whether the behavior is
intentional, and attempt a fix.

...`;

// Expose (and protect) your agents over HTTP:
export const route: AgentRouteHandler = async (_c, next) => next();

// Compose the complete harness your agent needs to do real work,
// complete with virtual, local, or remote container sandbox.
export default defineAgent(() => ({
  model: 'anthropic/claude-sonnet-4-6',
  tools: [...githubTools],
  skills: [triage, verify],
  sandbox: local(),
  instructions,
}));

The framework for building the next generation of agents.

The first agents were built with raw LLM API calls. This worked for simple chatbots and scripted tasks, but not much else.

Agents like Claude Code and Codex broke the mold. These were real agents. Autonomous. You give them a task — not a pre-defined series of steps — and trust them to complete it using the context and tools that you provide.

Flue unlocks this new architecture for agents. Its built-in TypeScript harness gives any model the context and environment it needs for truly autonomous work: sessions, tools, skills, instructions, filesystem access, and a secure sandbox to run in. Run your agents locally via CLI or deploy them to your hosted runtime of choice.

Features

Build agents that can safely take action, maintain continuity, and connect to the systems where work already happens.

  • Agents — Build agents that can keep context across conversations and events as they autonomously work toward a goal.
  • Workflows — Run structured automations where your code guides agent reasoning from a clear input to a finished result.
  • Sandboxes — Give agents a secure environment where they can use tools, modify files, and autonomously complete real work.
  • Durable Execution — Learn how agents preserve progress through failures and restarts with durable recovery for accepted work.
  • Subagents — Define specialized roles for different tasks, then let your agent delegate work to the right expert.
  • Tools — Give agents typed actions for calling APIs, querying data, and making controlled changes through your application.
  • Skills — Package reusable expertise and workflows that agents can load whenever a task needs specialized guidance.
  • MCP Servers — Connect agents to authenticated tools and services through the open Model Context Protocol ecosystem.
  • Observability — Monitor your agents and export telemetry with OpenTelemetry, Braintrust, Sentry, or your own observer.
  • Channels — Receive verified events from Slack, Teams, Discord, GitHub, and more.

Deploy Anywhere

Packages

PackageDescription
@flue/runtimeRuntime: harness, sessions, tools, sandbox
@flue/cliCLI and build/dev tooling (flue binary)
@flue/sdkClient SDK for consuming deployed agents and workflows
@flue/opentelemetryOpenTelemetry tracing adapter
@flue/postgresPostgres persistence adapter

// compatibility

Platformscli, api
Operating systems
AI compatibilityclaude
LicenseApache-2.0
Pricingopen-source
LanguageTypeScript

// faq

What is flue?

The sandbox agent framework.. It is open-source on GitHub.

Is flue free to use?

flue is open-source under the Apache-2.0 license, so it is free to use.

What category does flue belong to?

flue is listed under automation in the Claudeers registry of Claude-compatible tools.

0 views
7,139 stars
unclaimed
updated 15 days ago

// embed badge

flue on Claudeers
[![Claudeers](https://claudeers.com/api/badge/flue.svg)](https://claudeers.com/flue)

// retro hit counter

flue hit counter
[![Hits](https://claudeers.com/api/counter/flue.svg)](https://claudeers.com/flue)

// reviews

// guestbook

0/500

// related in Frameworks & SDKs

🔓

An open-source AI coding agent that lives in your terminal.

// frameworksQwenLM/TypeScript25,830Apache-2.0[ claude ]
🔓

Claude Code 泄露源码 - 本地可运行版本,新增跨平台桌面端软件补齐Computer Use(附带核心模块解析)

// frameworksNanmiCoder/TypeScript13,109NOASSERTION[ claude ]
🔓

LangGPT: Empowering everyone to become a prompt expert! 🚀 📌 结构化提示词(Structured Prompt)提出者 📌 元提示词(Meta-Prompt)发起者 📌 最流行的提示词落地范式 | Language of GPT The p…

// frameworkslanggptai/Jupyter Notebook12,304Apache-2.0[ claude ]
🔓

Multi-Agent Harness for Production AI

// frameworksaden-hive/Python10,632Apache-2.0[ claude ]

// built by

→ see how flue connects across the ecosystem