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.
npx skills add naveedharri/benai-skills --skill agentic-os-setupgit clone --depth 1 https://github.com/naveedharri/benai-skillsWrote 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.
[](https://agentmods.dev/skills/naveedharri/benai-skills/agentic-os-setup)<a href="https://agentmods.dev/skills/naveedharri/benai-skills/agentic-os-setup"><img src="https://agentmods.dev/badge/skills/naveedharri/benai-skills/agentic-os-setup/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.
<a href="https://agentmods.dev/skills/naveedharri/benai-skills/agentic-os-setup"><img src="https://agentmods.dev/badge/skills/naveedharri/benai-skills/agentic-os-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00185 | $0.08964 |
| Opus 5 | $0.00093 | $0.04482 |
| Sonnet 5 | $0.00037 | $0.01793 |
| Haiku 4.5 | $0.00018 | $0.00896 |
Grade C, and why
agentic-os-setup scanned grade C with 2 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 12d 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.
Harvests environment variableshighData exfiltration
Enumerating or grepping the environment for keys collects credentials unrelated to what the mod says it does.
## B.3 Pre-flight (collect credentials BEFORE asking discovery questions) Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Do not auto-fetch latest plugin versions at install time — bundled versions are pinned. To refresh, re-run the curl commands. How it starts
The opening of the file, as written. The whole thing — 620 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agentic OS Setup
This skill installs an agentic OS for the user. There are two routes:
- Route A — Obsidian vault. Installs a configurable command-center dashboard inside an existing Obsidian vault. Bundles and side-loads 5 plugins (Dataview, CustomJS, Shell-commands, Terminal, Homepage). Home + per-profile + Vault Overview pages. Button bar wired to user-defined Claude prompts via Shell-commands. Markdown-based, no servers.
- Route B — Standalone web dashboard. Bootstraps a Next.js 14 dashboard wired to the Claude Agent SDK plus up to 7 MCP integrations (Circle community, Fireflies meetings, YouTube/VidIQ, Unipile LinkedIn DMs, Apify Twitter/X, Reddit). Optional Railway deploy with HTTP basic auth and a persistent volume. Real web app, can run locally or live.
Both routes share the same conceptual model: a per-profile dashboard, a button-bar of actions, and snapshot-style data refreshes. They differ in surface (markdown vs Next.js), data shape (frontmatter vs JSON snapshots), and deployment (none vs Railway).
Step 0 — Route question (ALWAYS ASK FIRST)
Before anything else, use AskUserQuestion to route:
"Where do you want this set up?"
- Inside an Obsidian vault — command-center dashboard rendered via Dataview + CustomJS. Best if you already use Obsidian, want markdown-native, no server.
- As a standalone web dashboard — Next.js app with live MCP integrations and optional Railway deploy. Best if you want a real web URL, live API integrations, multi-user access via HTTP basic auth.
Header: "Surface". multiSelect: false. Don't pre-select. Don't proceed until answered.
Then execute the matching route below.
Route A — Obsidian vault
Use this entire section when the user picks "Inside an Obsidian vault" in Step 0.
Installs a configurable command-center dashboard in any Obsidian vault. Home + per-profile + Vault Overview pages, KPI cards, sparklines, heatmap, task rollup, recent-files lists, and a button bar wired to user-defined Claude prompts via the Shell-commands plugin. All 5 required plugins are bundled and auto-enabled — the user only has to restart Obsidian.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/obsidian/claude-md-template.md 2.8 KB
- references/obsidian/command-center.css 38 KB
- references/obsidian/dashboard-template.js 195 KB runs code
- references/obsidian/frappe-charts.min.js 67 KB runs code
- references/obsidian/home-template.md 220 B
- references/obsidian/plugins/customjs/main.js 578 KB runs code
- references/obsidian/plugins/customjs/manifest.json 285 B
- references/obsidian/plugins/customjs/styles.css 69 B
- references/obsidian/plugins/dataview/main.js 2322 KB runs code
- references/obsidian/plugins/dataview/manifest.json 357 B
- references/obsidian/plugins/dataview/styles.css 2.9 KB
- references/obsidian/plugins/homepage/main.js 58 KB runs code
- references/obsidian/plugins/homepage/manifest.json 344 B
- references/obsidian/plugins/homepage/styles.css 4.2 KB
- references/obsidian/plugins/obsidian-shellcommands/main.js 3136 KB runs code
- references/obsidian/plugins/obsidian-shellcommands/manifest.json 517 B
- references/obsidian/plugins/obsidian-shellcommands/styles.css 10 KB
- references/obsidian/plugins/terminal/main.js 2493 KB runs code
- references/obsidian/plugins/terminal/manifest.json 413 B
- references/obsidian/plugins/terminal/styles.css 5.6 KB
- references/obsidian/profile-template.md 281 B
- references/obsidian/setup-template.md 4.3 KB
- references/obsidian/vault-overview-template.md 232 B
- references/standalone/personalization.md 8.6 KB
- references/standalone/RAILWAY.md 4.6 KB
- references/standalone/template/.env.example 984 B
- references/standalone/template/.gitignore 161 B
- references/standalone/template/.railwayignore 133 B
- references/standalone/template/app/api/comms/send/route.ts 2.0 KB runs code
- references/standalone/template/app/api/refresh/[snapshot]/route.ts 935 B runs code
- references/standalone/template/app/api/runs/[id]/events/route.ts 1.4 KB runs code
- references/standalone/template/app/api/runs/[id]/route.ts 682 B runs code
- references/standalone/template/app/api/runs/route.ts 768 B runs code
- references/standalone/template/app/api/skills/[name]/route.ts 442 B runs code
- references/standalone/template/app/api/skills/route.ts 455 B runs code
- references/standalone/template/app/api/skills/upload/route.ts 2.2 KB runs code
- references/standalone/template/app/api/snapshot/[name]/route.ts 737 B runs code
- references/standalone/template/app/globals.css 17 KB
- references/standalone/template/app/layout.tsx 464 B
- references/standalone/template/app/overview/page.tsx 1.2 KB
- references/standalone/template/app/page.tsx 2.5 KB
- references/standalone/template/app/profile/[name]/page.tsx 4.5 KB
- references/standalone/template/components/Card.tsx 1.2 KB
- references/standalone/template/components/charts/BarChart.tsx 1.4 KB
- references/standalone/template/components/charts/DeltaPill.tsx 352 B
- references/standalone/template/components/charts/Heatmap.tsx 1.1 KB
- references/standalone/template/components/charts/LineChart.tsx 1.5 KB
- references/standalone/template/components/charts/Recharts.tsx 5.5 KB
- references/standalone/template/components/charts/Ring.tsx 1.4 KB
- references/standalone/template/components/charts/Sparkline.tsx 1009 B
- references/standalone/template/components/DashboardShell.tsx 5.1 KB
- references/standalone/template/components/KPI.tsx 1.1 KB
- references/standalone/template/components/RefreshAllAction.tsx 347 B
- references/standalone/template/components/RefreshButton.tsx 2.7 KB
- references/standalone/template/components/RunToast.tsx 2.3 KB
- references/standalone/template/components/views/overview/index.tsx 5.9 KB
- references/standalone/template/components/views/overview/RunsTableClient.tsx 2.4 KB
- references/standalone/template/components/views/overview/SkillsClient.tsx 3.6 KB
- references/standalone/template/components/views/profile/index.tsx 49 KB
- references/standalone/template/components/views/profile/primary.tsx 30 KB
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.
- 12d ago First seen · 620 lines · 185 tokens per session scan C 6cab6a59614d
agentic-os-setup is a skill published in the GitHub repository naveedharri/benai-skills (61 stars, last pushed today), licensed MIT. It adds 185 tokens to every session and 8,964 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it C with 2 findings (harvests environment variables, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
project
A single starting point for setting up an AI-assisted project in Claude Cowork. It asks questions about the work, reviews available add-ons, and creates project instructions, custom agents, and connected workflows.
design-sync-upload
An uploader for design-system files such as DESIGN.md, tokens, logos, fonts, and images into Claude Design. It can either use an authenticated connection or prepare a folder and guide for manual upload.
doc-html-slide
A renderer that turns presentation content into a single HTML slide deck that opens directly in a browser. It creates a 16:9 slide sequence with navigation, fullscreen viewing, printing to PDF, and speaker-note controls.
cs-channel-message
A channel-message writing tool for search ads, advertising, customer relationship messages, and app notifications. It uses the NCM sequence—Need, Channel, Moment, Message, and CTA—to adapt wording to where and when customers see it.
design-tokens-transformer
A converter for design tokens, which are named values for colors, fonts, spacing, borders, shadows, and motion. It translates one shared token source into CSS variables and Tailwind or shadcn-style theme files, and can convert them back for checking.
media-higgsfield-explainer
A Higgsfield workflow for making non-photorealistic narrated explainer videos. It pairs each narration line with a 10-second animated clip and joins the clips into one finished video.