setup-platform

setup-platform is a skill for Claude Code, Codex from agno-agi/agentos-modal. It costs 67 tokens per session (1,495 once invoked), scanned A, a copy of setup-platform, Apache-2.0.

A setup guide for starting AgentOS from a fresh copy of its code. AgentOS is a platform for running AI agents; the guide covers Docker, environment settings, containers, the MCP connection, its web interface, and a first agent.

In plain words
What is it for?
Use it on a new machine to verify Docker, configure the environment, start the platform, test the MCP endpoint, connect the user interface, and build an initial agent.
Why use it?
It turns a newly downloaded project into a working local platform and checks that an agent can answer through the connection.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/agno-agi/agentos-modal/setup-platform
Any agent
npx skills add agno-agi/agentos-modal --skill setup-platform
Clone the repo
git clone --depth 1 https://github.com/agno-agi/agentos-modal

Made for: Claude Code, Codex.

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 setup-platform

README.md
[![agentmods](https://agentmods.dev/badge/skills/agno-agi/agentos-modal/setup-platform.svg)](https://agentmods.dev/skills/agno-agi/agentos-modal/setup-platform)
Your own site
<a href="https://agentmods.dev/skills/agno-agi/agentos-modal/setup-platform"><img src="https://agentmods.dev/badge/skills/agno-agi/agentos-modal/setup-platform.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,495 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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 $0.00067 $0.01495
Opus 5 $0.00034 $0.00747
Sonnet 5 $0.00013 $0.00299
Haiku 4.5 $0.00007 $0.00150

Measured 4d ago against content hash 8e8a0fa1e8e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

setup-platform scanned grade A with 0 findings 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to setup-platform — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/setup-platform/SKILL.md · 110 lines

How it starts

The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Set Up the Platform

Coding-agent workflow: run as /setup-platform or by describing the task.

Take the user from a fresh clone to a running platform with their first agent live on it. Step 6 is the point of the trip; everything before it is setup, everything after is hand-over.

Be self-driving: do anything you can do yourself (open a file, open a URL, launch an app). Stop only for what needs a human: a secret, an install, a sign-in. Never print or echo secret values.

Narrate: open with this map (tune the words, keep the shape), then a line per step.

Kicking off /setup-platform. Here's the map:

1. Docker — confirm it's installed and running
2. Environment — .env and your OpenAI key
3. Boot — build and start the platform containers
4. Prove it — a real agent answer over the MCP endpoint
5. Connect the UI — os.agno.com, one click
6. First agent — we build it together, live
7. Make it yours — your platform in its own private repo
8. The loop — the skills you own from here

0. Read the manual

Read AGENTS.md end to end.

1. Docker

docker info must succeed. Installed but not running → start it (open -a Docker on macOS) and poll. Not installed → stop and give install steps.

2. Environment

cp example.env .env, then set OPENAI_API_KEY:

  • Already in their shell → say so and copy it across without reading or printing it.
  • Otherwise open .env in their editor (cursor, code) and ask them to paste it. Never open a terminal editor from your shell — it hangs the session.

3. Boot

docker compose up -d --build, then poll http://localhost:8000/docs until 200 (first build takes minutes). If it never comes up, read docker compose logs agentos-api.

4. Prove it

./scripts/mcp_check.sh prints "MCP OK" and a real agent answer. Quote the answer — it's their Platform Manager — and say the MCP server is live.

5. Connect the AgentOS UI

Render the connection as a table, then one line of direction:

Read the full file on GitHub · 110 lines

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. 4d ago First seen · 110 lines · 67 tokens per session scan A 8e8a0fa1e8e5

Subscribe to this mod's changes

setup-platform is a skill published in the GitHub repository agno-agi/agentos-modal (2 stars, last pushed 4d ago), licensed Apache-2.0. It adds 67 tokens to every session and 1,495 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to setup-platform, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

compute-env-setup

Set up a reproducible Feynman compute environment for research jobs. Use when a task needs Python/R packages, GPU libraries, containers, Modal, SSH, caches, or managed model runtime setup.

companion-inc/feynman · 45 tokens

securing-kubernetes-on-cloud

This skill covers hardening managed Kubernetes clusters on EKS, AKS, and GKE by implementing Pod Security Standards, network policies, workload identity, RBAC scoping, image admission controls, and runtime security monitoring. It addresses cloud-specific security features including IRSA for EKS, Workload Identity for…

xalgorix/xalgorix · 80 tokens

securing-azure-with-microsoft-defender

This skill instructs security practitioners on deploying Microsoft Defender for Cloud as a cloud-native application protection platform for Azure, multi-cloud, and hybrid environments. It covers enabling Defender plans for servers, containers, storage, and databases, configuring security recommendations, managing…

xalgorix/xalgorix · 75 tokens

enterprise

Enterprise-grade systems with microservices, Kubernetes, Terraform, and AI Native methodology. For multi-feature initiatives spanning a release timeline, combine with /sprint master-plan (v2.1.13) to group features into a single 8-phase sprint container with shared scope/budget and 4 auto-pause triggers…

ww-w-ai/bkit-claude-code · 106 tokens

nvcf-self-managed-prerequisite

Install the prerequisites the NVCA operator / compute plane needs before nvcf-nvca-install can succeed: the operator tool nvcf-cli (required by the compute-plane stack's register-cluster step), KAI Scheduler (for the KAIScheduler feature gate), and the SMB CSI driver (for the sharedStorage Samba sidecar PVCs). The two…

NVIDIA/nvcf · 195 tokens

aws-cloudformation-ecs

Provides AWS CloudFormation patterns for ECS clusters, task definitions, services, container definitions, auto scaling, blue/green deployments, CodeDeploy integration, ALB integration, service discovery, monitoring, logging, template structure, parameters, outputs, and cross-stack references. Use when creating ECS…

giuseppe-trisciuoglio/developer-kit · 101 tokens