惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
小众软件
小众软件
爱范儿
爱范儿
Y
Y Combinator Blog
博客园 - Franky
美团技术团队
博客园 - 【当耐特】
The Cloudflare Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
WordPress大学
WordPress大学
V
Visual Studio Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - benjaminkernbaum-ux/stoic-agentos: The Operating...
bk0 · 2026-05-17 · via Hacker News: Show HN

The Operating System for AI Agent Fleets

Monitor, orchestrate, and persist knowledge across your AI agents — from a single dashboard.

GitHub Stars npm version npm downloads Dashboard License

Dashboard · Docs · Get Started Free · npm · Quick Start

⭐ If this helps you ship AI agents faster, give us a star — it helps a lot!


The Problem

You're running AI agents in production — coding assistants, data pipelines, customer support bots, trading bots, content generators. Each one makes autonomous decisions, but:

  • No visibility → Agent fails at 3 AM, you find out Monday
  • No memory → Same agent rediscovers the same bug every session
  • No coordination → 5 agents, 5 silos, zero shared knowledge

The Solution

AgentOS gives your AI fleet a command center — real-time monitoring, persistent knowledge that survives across sessions, and usage-based billing that scales with you.

Your Agent Fleet          →  AgentOS SDK  →  Dashboard
├── Coding Assistant           3 lines       📊 Real-time status
├── Data Pipeline              of code       🧠 Shared knowledge
├── Support Bot                              📈 Usage analytics
└── Content Generator                        🔑 API key management

Quick Start

1. Install

npm install stoic-agentos-sdk

2. Get Your API Key

Sign up at stoic-agentos.vercel.app → Dashboard → Settings → Generate Key

3. Monitor Your First Agent

import { AgentOS } from 'stoic-agentos-sdk';

const os = new AgentOS({
  apiKey: 'sk_live_your_key_here',
  workspace: 'my-project',
});

// Wrap any function → auto-captures start, success, and errors
const myAgent = os.wrapAgent('invoice-processor', async (input) => {
  const result = await processInvoice(input);
  return result;
});

// Run it — AgentOS tracks everything
await myAgent({ invoiceId: 'INV-001' });

4. Capture Decisions & Knowledge

// Capture important observations
os.capture({
  type: 'decision',
  title: 'Switched to GPT-4o-mini for summarization',
  content: 'Reduced cost by 40% with no quality loss on BLEU benchmark',
});

// Persist knowledge across sessions
os.capture({
  type: 'architecture',
  title: 'Payment service uses idempotency keys',
  content: 'Always include X-Idempotency-Key header to prevent double charges',
});

Features

Feature Description
🤖 Agent Monitoring Real-time status, heartbeats, error tracking for your entire fleet
🧠 Knowledge Persistence Agents remember decisions across sessions — no more re-learning
📊 Usage Analytics Observations/month, agent runs, error rates at a glance
📦 Multi-Workspace Group agents by project, repo, or team
Auto-Capture wrapAgent() logs start, success, and errors automatically
🔑 API Key Management Generate, list, and revoke keys from the dashboard
💳 Usage-Based Billing Free tier with real limits, upgrade when you need more
🔒 Row-Level Security Full RLS on Supabase — your data is isolated per org

Why AgentOS?

Stoic AgentOS Langfuse AgentOps CrewAI
Agent monitoring ⚠️ Orchestration only
Knowledge persistence
Auto-capture SDK ✅ 3 lines ⚠️ Decorator-based
Multi-workspace ⚠️ Projects
Self-serve dashboard
Usage limits + billing ✅ Built-in
Open-source core ✅ MIT ✅ MIT Partial
Setup time 3 min 10 min 5 min 30 min

Pricing

Free Pro — $49/mo Team — $299/mo Enterprise
Workspaces 2 10 Unlimited Unlimited
Agents 5 25 100 Unlimited
Observations/mo 10,000 100,000 Unlimited Unlimited
Knowledge items 5 25 Unlimited Unlimited
Members 1 5 15 Unlimited

Start Free →

Architecture

┌────────────────────────────────┐
│  Your Application              │
│  ├── Agent 1                   │
│  ├── Agent 2                   │─── stoic-agentos-sdk (npm)
│  └── Agent N                   │         │
└────────────────────────────────┘         │
                                           ▼
┌──────────────────────────────────────────────────┐
│  AgentOS API (Railway)                            │
│  ├── Auth (Supabase JWT + API Keys)               │
│  ├── Observations → /api/v1/observations          │
│  ├── Agents → /api/v1/agents                      │
│  ├── Knowledge → /api/v1/knowledge-items          │
│  ├── Billing → /api/v1/billing (Stripe)           │
│  └── Webhooks → /webhooks/stripe, /webhooks/git   │
└──────────────────────────────────────────────────┘
         │                    │
         ▼                    ▼
┌─────────────┐    ┌─────────────────┐
│  Supabase   │    │  Stripe         │
│  (Postgres) │    │  (Billing)      │
│  8 tables   │    │  Checkout +     │
│  RLS on all │    │  Portal +       │
│             │    │  Webhooks       │
└─────────────┘    └─────────────────┘

API Reference

Method Endpoint Auth Description
POST /api/v1/observations API Key Create observation
GET /api/v1/observations API Key List observations
POST /api/v1/agents API Key Register agent
GET /api/v1/agents API Key List agents
POST /api/v1/agents/heartbeat API Key Agent heartbeat (upsert)
POST /api/v1/knowledge-items API Key Create knowledge item
POST /api/v1/workspaces API Key Create workspace
GET /api/v1/stats API Key Dashboard stats
POST /api/v1/api-keys JWT Generate API key
DELETE /api/v1/api-keys/:id JWT Revoke API key
POST /api/v1/billing/checkout JWT Start Stripe checkout
POST /api/v1/billing/portal JWT Open customer portal

SDK Reference

import { AgentOS } from 'stoic-agentos-sdk';

// Initialize
const os = new AgentOS({ apiKey: 'sk_live_xxx', workspace: 'my-app' });

// Core methods
os.capture({ type, title, content, metadata })     // Log observation
os.wrapAgent(name, fn)                              // Auto-monitor function
os.addKnowledge({ name, summary, content })         // Persist knowledge
os.listAgents()                                     // Get all agents
os.listObservations({ limit, type })                // Query observations

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

# Clone the repo
git clone https://github.com/benjaminkernbaum-ux/stoic-agentos.git
cd stoic-agentos

# Install dependencies
npm install

# Start dev server
npm run dev

License

MIT © 2026 Benjamin Kernbaum


Built with conviction.
stoic-agentos.vercel.app