os-up

os-up is a command for Claude Code from CronusL-1141/AI-company. It costs 14 tokens per session (467 once invoked), scanned A, original, MIT.

A command that checks and starts the AI Team OS API server and dashboard. An API server provides data and operations to other programs, while a dashboard is a web interface for viewing and using the system.

In plain words
What is it for?
Use it to bring up the local API and development dashboard, verify their addresses, and identify missing Python or Node.js dependencies.
Why use it?
It avoids starting services that are already running and reports which endpoints are available or failed.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the ai-team-os plugin — 5 skills, 8 commands, 25 agents, 15 hooks, 1 MCP server shipped together

Good fit Use it to bring up the local API and development dashboard, verify their addresses, and identify missing Python or Node.js dependencies.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/cronusl-1141/ai-company/os-up
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/CronusL-1141/AI-company

Made for: Claude Code.

Or install ai-team-os, the plugin that ships this one along with the rest of its 5 skills, 8 commands, 25 agents, 15 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for os-up

README.md
[![agentmods](https://agentmods.dev/badge/commands/cronusl-1141/ai-company/os-up/github.svg)](https://agentmods.dev/commands/cronusl-1141/ai-company/os-up)
Your own site
<a href="https://agentmods.dev/commands/cronusl-1141/ai-company/os-up"><img src="https://agentmods.dev/badge/commands/cronusl-1141/ai-company/os-up/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for os-up

Your own site · 80×15
<a href="https://agentmods.dev/commands/cronusl-1141/ai-company/os-up"><img src="https://agentmods.dev/badge/commands/cronusl-1141/ai-company/os-up.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 467 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00014 $0.00467
Opus 5 $0.00007 $0.00234
Sonnet 5 $0.00003 $0.00093
Haiku 4.5 $0.00001 $0.00047

Measured 11d ago against content hash c0222d7e223d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

os-up scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s --max-time 2 http://localhost:8000/api/teams
plugin/commands/os-up.md · 63 lines

What it actually says

/os-up — 一键启动服务

启动 AI Team OS 的 API 服务器和 Dashboard 前端。

操作步骤

1. 检测API服务

curl -s --max-time 2 http://localhost:8000/api/teams
  • 如果返回JSON → API已在运行,跳到步骤3
  • 如果超时/失败 → 执行步骤2

2. 启动API服务(后台)

# 在项目根目录执行(即包含 pyproject.toml 的目录)
python -m uvicorn aiteam.api.app:create_app --host 0.0.0.0 --port 8000 --factory &

等待3秒后验证:

curl -s --max-time 3 http://localhost:8000/api/teams

3. 检测Dashboard

curl -s --max-time 2 http://localhost:5173
  • 如果返回HTML → Dashboard已在运行,跳到步骤5
  • 如果超时/失败 → 执行步骤4

4. 启动Dashboard(后台)

# 在项目的 dashboard 子目录执行
cd dashboard
npm run dev &

等待5秒后验证:

curl -s --max-time 3 http://localhost:5173

5. 报告状态

显示:

AI Team OS 服务状态:
- API: http://localhost:8000 ✅/❌
- Dashboard: http://localhost:5173 ✅/❌
- API文档: http://localhost:8000/docs
- WebSocket: ws://localhost:8000/ws

注意

  • 使用后台方式启动(&),不阻塞当前会话
  • 启动前检测避免重复启动
  • Dashboard使用npm run dev(开发模式),关闭时用Ctrl+C或'q'
  • 如果启动失败,提示检查依赖:pip install -e ".[all]"cd dashboard && npm install
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 63 lines · 14 tokens per session scan A c0222d7e223d

Subscribe to this mod's changes

os-up is a command published in the GitHub repository CronusL-1141/AI-company (357 stars, last pushed 2d ago), licensed MIT. It adds 14 tokens to every session and 467 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.