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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

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 - winsenlabs/platos: Platos is the only runtime in...
tejassuds · 2026-05-07 · via Hacker News: Show HN

The open-source agent runtime.

Build, ship, and operate AI agents on infrastructure you own. Apache 2.0. Self-hostable in one docker compose up.

Docs · Guides · Quickstart · Roadmap · Discord


What is Platos?

Platos is a complete agent runtime — the open-source replacement for hosted services like Claude Managed Agents and OpenAI Assistants.

It bundles everything an agent needs to live in production:

  • Streaming chat runtime with prompt caching, tool-calling, structured outputs, sub-agents, and multi-turn compaction.
  • Durable execution layer built on top of trigger.dev — every long-running tool call, scheduled job, or batch operation is a resumable run with retries, queues, and traces.
  • Universal MCP gateway that federates four tool families (entity-pushed, native, skills, control plane) behind a single endpoint with OAuth scoping and per-tool ACL.
  • Memory + skills + observability wired together at the runtime layer — vector store, knowledge graph, manifest-driven skills, OpenTelemetry traces, ClickHouse cost ledger.
  • Multi-tenant scope model — every row is keyed by (organizationId, projectId, environmentId). Build SaaS or run an internal platform; the same primitives fit both.
  • BYOK for every provider — Anthropic, OpenAI, Google, Vertex AI, OpenRouter. Keys are encrypted in your database and never leave it.

You own the infra, the data, and the model choice. No vendor seat license, no telemetry-based billing, no lock-in.

Quickstart

git clone https://github.com/winsenlabs/platos.git
cd platos
cp .env.example .env                       # set ANTHROPIC_API_KEY (or OPENAI_API_KEY, etc.)
docker compose -f docker-compose.platos.yml up -d
open http://localhost:3030                 # magic-link login → Agents → Create

Chat-ready in ~2 minutes. Full walkthrough: platos.dev/guides/quickstart.

Prerequisites

  • Docker Desktop (or any Docker Engine 24+) with Compose v2
  • 4 GB free RAM, 6 GB free disk
  • An LLM provider API key (Anthropic recommended for first install)

What you get

Service Port Purpose
webapp 3030 Dashboard + REST API + auth
agent 3100 Streaming runtime, MCP gateway, tool dispatch
postgres 5432 State
clickhouse 8123 Telemetry + cost ledger
redis 6379 Cache, queues, pub/sub
minio 9000 Attachments, artifacts

One compose file. All on your hardware.

Architecture

flowchart LR
  Client[Web app · MCP clients · SDKs] -- HTTP/WS --> Webapp[apps/webapp<br/>Remix]
  Client -- Streaming --> Agent[apps/agent<br/>NestJS]
  Agent -- Prisma --> PG[(Postgres)]
  Agent -- pub/sub --> R[(Redis)]
  Agent -- traces + cost --> CH[(ClickHouse)]
  Agent -- attachments --> MinIO[(MinIO)]
  Agent -- inference --> LLM{{Anthropic · OpenAI ·<br/>Google · Vertex · OpenRouter}}
  Agent -- BGO / schedules --> Engine[Trigger Run Engine]
  Engine -- runs --> Webapp
  External[External tool servers<br/>via platools SDK] -- WSS --> Agent
Loading

Read the full architecture: platos.dev/docs/architecture.

Repository layout

apps/
  agent/           NestJS streaming runtime + MCP gateway
  webapp/          Remix dashboard, public REST API, auth
  coordinator/     Run-engine coordination
  supervisor/      Worker supervision
  k8s-provider/    Kubernetes execution provider
  docker-provider/ Docker execution provider

packages/
  platos-client/   Official JS/TS SDK (agents, threads, streaming)
  platools-js/     SDK for building external tool entities (TypeScript)
  platools-py/     Same, for Python
  trigger-sdk/     Run-engine SDK
  cli-v3/          Local dev + deploy CLI
  core/            Shared core types + utilities

internal-packages/
  database/        Prisma schema + migrations
  clickhouse/      Telemetry + cost ledger schema
  run-engine/      Durable execution engine

references/
  entity-hello-world/        Minimal example: connect a tool entity
  entity-docs-mcp-bridge/    Bridge any external MCP server into Platos

content/
  docs/            User-facing reference docs (served by the public docs API)
  guides/          Task-oriented walkthroughs

SDKs

npm install @platosdev/client      # JS / TS
pip install platos-client       # Python (coming soon)
import { PlatosClient } from "@platosdev/client";

const client = new PlatosClient({
  baseUrl: "https://your-platos-host.com",
  sessionToken: process.env.PLATOS_SESSION_TOKEN!, // mint on your backend
});

const thread = await client.threads.create(undefined, { agentId: "..." });
for await (const event of client.threads.send(thread.id, "Hello!")) {
  if (event.type === "token") process.stdout.write(event.text);
  if (event.type === "done") break;
}

SDK reference →

MCP

Platos ships an MCP gateway. Wire Claude Code, Cursor, or Claude Desktop to your runtime in one command:

claude mcp add platos https://your-platos-host.com/mcp/platform \
  --header "Authorization: Bearer $PLATOS_PAT"

Then call agents and tools directly from your editor. Per-entity MCP endpoints with OAuth 2.1 + DCR are also supported. Details: platos.dev/docs/mcp-gateway.

Self-hosting

Production deploy guide with TLS, backups, observability, and scaling notes: platos.dev/docs/self-hosting.

We test against Postgres 16, ClickHouse 25.3, Redis 7, and MinIO. The compose file works on a $20 VPS for evaluation; production deployments scale horizontally on Kubernetes via the bundled Helm chart.

Why we built this

The agent stack should be open and ownable. Most teams reach for hosted agent services and accept the trade — their conversations live elsewhere, their model choice is whatever the vendor ships, their data trains whatever the vendor wants. The teams that opt out spend three months rebuilding the plumbing themselves. We built Platos so neither group has to.

Read more: platos.dev/about.

Contributing

PRs welcome. Read CONTRIBUTING.md for the dev setup, coding standards, and the changeset workflow.

A few things we care about:

  • Multi-tenant scope is sacred. Every scoped row carries (organizationId, projectId, environmentId). Don't bypass it.
  • Tests use real services, not mocks. Vitest + testcontainers for everything that crosses a process boundary.
  • Conversations are encrypted at rest (AES-256). Don't bypass the envelope.

Community

Built on

Platos stands on great open-source projects. Where we extend or specialize, we say so explicitly in the docs.

Security

If you've found a vulnerability, please email hello@winsenlabs.com rather than opening a public issue. Full policy: SECURITY.md.

License

Apache 2.0. Use it, fork it, ship it. Maintained by Winsen Labs.