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

推荐订阅源

Martin Fowler
Martin Fowler
爱范儿
爱范儿
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
IT之家
IT之家
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
C
Check Point Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
G
Google Developers Blog
V
V2EX
雷峰网
雷峰网
美团技术团队
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
V
Visual Studio Blog
J
Java Code Geeks

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - officeos-co/officeos: Launch agents in seconds. ...
Harro123 · 2026-05-12 · via Hacker News - Newest: "AI"

OfficeOS logo

Open-source infrastructure for deploying, hosting, and managing fleets of AI agents across your infrastructure.

Website · Docs · Getting Started · Issues

OfficeOS is the infrastructure layer for running AI agents in production. Self-host the stack once, then launch agents on demand with their own virtual environment, attached browser, tools, persistent memory, credential access, structured logs, and isolated workspace.

The dashboard is the control plane for deploying agents, managing their capabilities, observing every turn, and operating them across teams and environments.

Self-host the full stack with Docker Compose or Kubernetes.

Preview

2026-05-05.00-13-55-readme-1.5x-cropped.mp4
Quickstart Integrations Launch setup
OfficeOS quickstart screen with agent name, model, prompt, and integrations OfficeOS dashboard integrations list for agent tools OfficeOS quickstart launch setup with available integrations

Highlights

  • One control plane — deploy, host, configure, and observe agents from the dashboard
  • Fast agent launch — go from a configured control plane to new isolated agents in seconds
  • Fleet scale — operate one agent or hundreds across your infrastructure
  • Virtual environments — every agent gets an isolated workspace with filesystem and shell access
  • Attached browsers — every agent has browser capabilities for web workflows and automation
  • Managed tools and MCP — connect agents to built-in tools and MCP servers for external integrations
  • Persistent memory — store agent memory, conversations, and operational context centrally
  • Credential management — give agents scoped access to provider keys and integration secrets
  • Structured logs — inspect message, tool call, tool result, and agent output timelines
  • Model-agnostic — bring your own LLM keys for Anthropic, OpenAI, Google, xAI, and compatible providers

Quick Start

For local development, the root .env file is the source of truth for runtime config and secrets. Copy the template once, edit the provider keys, then start the development infrastructure from the repo root.

git clone https://github.com/HarKro753/EnterpriseAgentOs.git
cd EnterpriseAgentOs

cp .env.example .env
# Edit .env: add at least one LLM provider key

docker build -t harkro123/eaos-pod-executor:latest packages/pod-executor
docker compose -f docker-compose.infra.yml up -d

Kubernetes

OfficeOS is built for self-hosters who want to run agent infrastructure on their own cloud. Kubernetes manifests are available under k8s/ for production and staging deployments.

kubectl apply -f k8s/prod/

You can also install the core control plane with Helm:

cp k8s/helm/examples/values.local.example.yaml values.local.yaml
# Edit values.local.yaml with your database, public URLs, and provider keys.

helm upgrade --install eaos ./k8s/helm \
  --namespace eaos \
  --create-namespace \
  -f values.local.yaml

Development

Run infrastructure in Docker and run product code on the host for fast rebuilds. The backend creates one pod-executor container per agent and binds it to a random localhost port, so local dotnet run can call agent runtimes directly.

# Infra: Postgres, Redis, MinIO, channels, browser controller, browser node
docker compose -f docker-compose.infra.yml up -d
# Rebuild this when packages/pod-executor changes
docker build -t harkro123/eaos-pod-executor:latest packages/pod-executor

# Backend
cd apps/backend && dotnet run --project src/EnterpriseAgentOs.Api

# Dashboard
cd apps/dashboard && bun dev