← 返回
AI智能 中文

Agent Os

Persistent agent operating system for OpenClaw. Agents remember across sessions, learn from experience, coordinate on complex projects without duplicate work.
OpenClaw 的持久化代理操作系统。代理跨会话记忆,从经验中学习,协同复杂项目,避免重复工作。
cryptocana
AI智能 clawhub v0.1.0 1 版本 99910.2 Key: 无需
★ 0
Stars
📥 1,113
下载
💾 16
安装
1
版本
#latest

概述

Agent OS — Persistent Agent Operating System

Agents that remember. Learn. Coordinate.

What It Does

Agent OS enables multi-agent project execution with persistent memory:

  • Agent Memory — Each agent remembers past tasks, lessons learned, success rates
  • Task Decomposition — Break high-level goals into executable task sequences
  • Smart Routing — Assign tasks to agents based on capability fit
  • Execution Tracking — Live progress board showing what every agent is doing
  • State Persistence — Project state survives restarts (resume mid-project)

Quick Start

Installation

clawhub install nova/agent-os

Basic Usage

const { AgentOS } = require('agent-os');

const os = new AgentOS('my-project');

// Register agents with capabilities
os.registerAgent('research', '🔍 Research', ['research', 'planning']);
os.registerAgent('design', '🎨 Design', ['design', 'planning']);
os.registerAgent('dev', '💻 Development', ['development']);

os.initialize();

// Run a project
const result = await os.runProject('Build a feature', [
  'planning',
  'design',
  'development',
]);

console.log(result.progress); // 100

Core Concepts

Agent

Persistent worker with:

  • Memory — Past tasks, lessons learned, success rates
  • State — Current task, progress, blockers
  • Capabilities — What it's good at (research, design, development, etc.)

TaskRouter

Decomposes goals into executable tasks:

  • Breaks "Build a feature" into: plan → design → develop → test
  • Matches tasks to agents based on capability fit
  • Tracks dependencies (task A must finish before task B)

Executor

Runs tasks sequentially:

  • Assigns tasks to agents
  • Tracks progress in real-time
  • Persists state so projects survive restarts
  • Handles blockers and errors

AgentOS

Orchestrates everything:

  • Register agents
  • Initialize system
  • Run projects
  • Get status

Architecture

AgentOS (top-level orchestration)
├── Agent (persistent worker)
│   ├── Memory (lessons, capabilities, history)
│   └── State (current task, progress)
├── TaskRouter (goal decomposition)
│   ├── Templates (planning, design, development, etc.)
│   └── Matcher (task → agent assignment)
└── Executor (task execution)
    ├── Sequential runner
    ├── Progress tracking
    └── State persistence

State Persistence

All state is saved to the data/ directory:

  • [agent-id]-memory.json — Agent knowledge base
  • [agent-id]-state.json — Current agent status
  • [project-id]-project.json — Project task list + status

This means:

✅ Projects survive restarts

✅ Agents remember past work

✅ Resume mid-project seamlessly

File Structure

agent-os/
├── core/
│   ├── agent.js          # Agent class
│   ├── task-router.js    # Task decomposition
│   ├── executor.js       # Execution scheduler
│   └── index.js          # AgentOS class
├── ui/
│   ├── dashboard.html    # Live progress UI
│   ├── dashboard.js      # Dashboard logic
│   └── style.css         # Styling
├── examples/
│   └── research-project.js  # Full working example
├── data/                 # Auto-created (persistent state)
└── package.json

API Reference

AgentOS

new AgentOS(projectId?)
registerAgent(id, name, capabilities)
initialize()
runProject(goal, taskTypes)
getStatus()
getAgentStatus(agentId)
toJSON()

Agent

startTask(task)
updateProgress(percentage, message)
completeTask(output)
setBlocker(message)
recordError(error)
learnLesson(category, lesson)
reset()
getStatus()

TaskRouter

decompose(goal, taskTypes)
matchAgent(taskType)
getTasksForAgent(agentId, tasks)
canExecuteTask(task, allTasks)
getNextTask(tasks)
completeTask(taskId, tasks, output)
getProjectStatus(tasks)

Executor

initializeProject(goal, taskTypes)
execute()
executeTask(task)
getStatus()

Example: Research + Design + Development

See examples/research-project.js for the canonical example:

npm start

This demonstrates:

  • ✅ 3 agents with different capabilities
  • ✅ 12 tasks across 3 phases (planning, design, development)
  • ✅ Sequential execution with progress tracking
  • ✅ State persistence to disk
  • ✅ Final status report

Expected output:

✅ Registered 3 agents
📋 Task Plan: 12 tasks
🚀 Starting execution...
✅ [Task 1] Complete
✅ [Task 2] Complete
...
📊 PROJECT COMPLETE - 100% progress

What's Coming (v0.2+)

  • HTTP server + live dashboard
  • Parallel task execution (DAG solver)
  • Capability learning system (auto-score agents)
  • Smart agent routing (match to best agent)
  • Failure recovery + retry logic
  • Cost tracking (token usage per agent)
  • Human checkpoints (review high-risk outputs)

Philosophy

Agents should remember what they learn.

Most agent frameworks are stateless. Agent OS keeps persistent memory so agents:

  1. Remember — No redundant context resets
  2. Learn — Capability scores improve over time
  3. Coordinate — Shared state prevents duplication
  4. Cost less — Less context = cheaper API calls

License

MIT


Built with ❤️ by Nova for OpenClaw

See README.md and ARCHITECTURE.md for complete documentation.

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-03-29 13:51 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 711 📥 243,715
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,356 📥 318,059
ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 834 📥 212,997