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

推荐订阅源

V
V2EX
Y
Y Combinator Blog
博客园_首页
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
B
Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
WordPress大学
WordPress大学
L
LangChain Blog
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Help Net Security

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 - Audazia/solar-system-agents: Cyberpunk Mission C...
carlosaudaz · 2026-04-27 · via Hacker News - Newest: "AI"

The AI agent dashboard your team actually wants to look at.

A cyberpunk command center for monitoring AI agent fleets in real-time. Two views: an orbital solar system visualization and a full mission control dashboard. Works with any agent framework.

Zero dependencies. Static HTML files. No build step. No npm install.

Deploy with Vercel   Deploy to Netlify


Mission Control + Solar System — AI Agent Dashboard

Mission Control — real-time agent monitoring with cyberpunk UI.

Solar System — Orbital Agent Visualization

Solar System — your agents orbiting in real-time.


What You Get

Mission Control (mission-control.html)

A full-featured dashboard with:

  • Agent Roster — live status, model, skills, and channel tags for every agent
  • Scheduled Missions — cron job monitoring with OK/ERR status
  • System Vitals — RAM gauge, uptime, platform info with Chart.js graphs
  • KPI Streams — revenue, API usage, or any metrics you track
  • Channels & Providers — Slack, Telegram, WhatsApp, API status at a glance
  • Live ticker — scrolling status bar across the bottom
  • Particle network background — tsParticles with interactive hover effects
  • Scanline overlay — CRT retro feel
  • Demo mode — works out of the box with realistic sample data

Solar System (index.html)

An orbital visualization where:

  • The Sun is your core system / gateway
  • Each planet is an AI agent (size = importance, speed = activity)
  • Moons are sub-agents or tools
  • Rings (Saturn-style) indicate agents with cron jobs
  • Click any planet for detailed stats

Deploy in 30 Seconds

Deploy with Vercel Deploy to Netlify

Or run locally:

git clone https://github.com/Audazia/solar-system-agents.git
cd solar-system-agents
open mission-control.html

That's it. The dashboard loads with demo data showing 12 agents, 11 cron jobs, 4 channels, and 4 model providers. Everything renders at 60fps.

Configure Your Agents

Edit config.js to set up your own fleet:

const CONFIG = {
  brand: {
    name: 'MY COMPANY',
    subtitle: 'MISSION CONTROL',
    centerTitle: 'AI OPERATIONS HQ',
  },

  agents: [
    {
      id: 'researcher',
      name: 'RESEARCHER',
      model: 'claude-sonnet-4-6',
      role: 'Deep research & analysis',
      tier: 'command',       // 'command' | 'operations' | 'support'
      premium: true,         // highlighted card
      skills: 8,
      channels: ['API', 'SLACK'],
      status: 'active',      // 'active' | 'idle' | 'error' | 'dormant'
    },
    // ... add more agents
  ],

  crons: [
    { agent: 'RESEARCHER', name: 'Daily Report', schedule: '06:00', status: 'ok' },
  ],

  channels: [
    { name: 'Slack', icon: '\u2709', status: 'online', detail: '4 CHANNELS' },
  ],

  providers: [
    { name: 'Anthropic', detail: 'claude-sonnet-4-6', status: 'active', label: 'PRIMARY' },
  ],
};

See config.js for the full configuration reference with all available options.

Connect Live Data

Option 1: API Polling (built-in)

Set your gateway URL in config.js:

gateway: {
  url: 'http://localhost:8080',
  healthEndpoint: '/health',
  statusEndpoint: '/api/status',
  refreshInterval: 15000,
},

The dashboard polls your API every 15 seconds and updates agent status dots and last messages.

Option 2: Direct JavaScript

Update agent data from your own API:

async function syncAgents() {
  const data = await fetch('/api/agents').then(r => r.json());
  data.forEach(agent => {
    const dot = document.getElementById('dot-' + agent.id);
    if (dot) dot.className = 'status-dot ' + (agent.active ? 'green' : 'yellow');
  });
}
setInterval(syncAgents, 10000);

Option 3: WebSocket (real-time)

const ws = new WebSocket('ws://localhost:8080/agents');
ws.onmessage = (e) => {
  const update = JSON.parse(e.data);
  const dot = document.getElementById('dot-' + update.id);
  if (dot) dot.className = 'status-dot ' + update.statusClass;
};

Works With Any Framework

  • CrewAI / LangChain / LangGraph
  • AutoGPT / BabyAGI
  • OpenAI Assistants API
  • Semantic Kernel
  • Custom REST/WebSocket agents
  • OpenClaw (built with this)

Use Cases

Who What
AI Startups Monitor production agent fleet
Dev Teams Visualize CI/CD bots, code review agents
Sales Teams Track outreach agents, lead gen bots
Content Teams Monitor social media agents, content generators
Security Watch threat detection agents, compliance monitors
Solo Builders Your personal AI assistant ecosystem

Hosting

Method Cost Setup Time
Open index.html locally Free 10 seconds
GitHub Pages Free 2 minutes
Vercel (button above) Free 30 seconds
Netlify (button above) Free 30 seconds
Any static host Free-$5/mo 5 minutes

Roadmap

  • Solar System orbital visualization
  • Mission Control dashboard
  • Configurable agents, crons, channels, providers
  • Demo mode (works without config)
  • Live data polling via API
  • Mobile responsive layout
  • Framework adapters (CrewAI, LangChain, AutoGPT)
  • Agent-to-agent communication lines
  • Asteroid belt for queued tasks
  • Comet events for alerts/incidents
  • Custom themes (dark/light/custom)
  • Docker image with built-in API server
  • SaaS hosted version with auth + team features
  • Agent marketplace & templates
  • Webhooks & notification integrations

Contributing

PRs welcome. The codebase is intentionally simple — static HTML with inline CSS and JS. No build tools. Keep it that way.

# Fork, clone, edit, open in browser to test

License

MIT License. Use it however you want.


Built by AUDAZ.IA — We build AI agent infrastructure.

If this helps you, star the repo. It helps others find it.