team-os

team-os is a skill for Claude Code from naveedharri/benai-skills. It costs 125 tokens per session (2,060 once invoked), scanned C, original, MIT.

An installation workflow that replaces Obsidian's official Relay plugin with a bundled fork for sharing a vault, an Obsidian notes folder, with team access controls.

In plain words
What is it for?
Use it to locate an Obsidian vault, remove the existing Relay plugin, and install the bundled BenAI Relay build.
Why use it?
It gives a team a defined way to install the required plugin without fetching the build from an unknown source.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: names the AskUserQuestion tool.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/jane/Obsidian/Work.

Part of the all-skills plugin — 99 skills shipped together

Good fit Use it to locate an Obsidian vault, remove the existing Relay plugin, and install the bundled BenAI Relay build.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add naveedharri/benai-skills
Claude Code
/plugin install all-skills

Made for: Claude Code.

Or install all-skills, the plugin that ships this one along with the rest of its 99 skills.

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 team-os

README.md
[![agentmods](https://agentmods.dev/badge/skills/naveedharri/benai-skills/team-os/github.svg)](https://agentmods.dev/skills/naveedharri/benai-skills/team-os)
Your own site
<a href="https://agentmods.dev/skills/naveedharri/benai-skills/team-os"><img src="https://agentmods.dev/badge/skills/naveedharri/benai-skills/team-os/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 team-os

Your own site · 80×15
<a href="https://agentmods.dev/skills/naveedharri/benai-skills/team-os"><img src="https://agentmods.dev/badge/skills/naveedharri/benai-skills/team-os.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,060 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 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.00125 $0.02060
Opus 5 $0.00063 $0.01030
Sonnet 5 $0.00025 $0.00412
Haiku 4.5 $0.00013 $0.00206

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

Security

Grade C, and why

team-os scanned grade C 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 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (reference/benai-relay-fork/main.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf "$VAULT/.obsidian/plugins/system3-relay"
plugins/all-skills/skills/team-os/SKILL.md · 170 lines

How it starts

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

Relay Swap — Install BenAI Relay Fork

This skill replaces the upstream Relay plugin (system3-relay) with the BenAI fork (benai-relay-fork) in a target Obsidian vault. The compiled fork ships at ${CLAUDE_PLUGIN_ROOT}/skills/team-os/reference/benai-relay-fork/ (three files: main.js, manifest.json, styles.css). Copy from there — do not fetch from anywhere else.

What the user provides

Just their Obsidian vault folder — the one they open inside Obsidian itself. The skill will auto-detect it if they invoke /team-os from inside the vault, otherwise it'll walk them through finding it via Obsidian's Settings → About → "Show vault folder".

Example paths the user might give: ~/Documents/MyVault, /Users/jane/Obsidian/Work, or a folder dragged from Finder/Explorer. The skill normalizes all of them.


Workflow

Step 0 — Confirm intent + locate the vault folder

Tell the user what this will do, in plain language:

I'm about to replace the official Relay plugin with the BenAI fork in your Obsidian vault. The fork has custom RBAC + access controls. This will:

  1. Delete the old system3-relay plugin if it's there.
  2. Install the bundled BenAI Relay build.
  3. Update Obsidian's community-plugins config to switch over.

Close Obsidian first — modifying plugin files while it's running can corrupt the install.

Get the vault folder (no jargon)

Don't ask for an "absolute path". Most users don't think in those terms. Try this order:

1. Try the current working directory first.

If the cwd contains a .obsidian/ folder, ask:

I see this folder ({cwd}) is already an Obsidian vault. Is this the one you want to install BenAI Relay into? (yes / no — I'll ask where it is)

If yes, set VAULT="$(pwd)" and skip to Step 1.

2. Otherwise, ask in plain language with platform-specific hints.

AskUserQuestion framed like:

Where is your Obsidian vault — the folder you open inside Obsidian itself?

Easiest way to find it:

  • Open Obsidian → Settings → "About" → click "Show vault folder" (or right-click your vault name in the vault switcher → "Reveal in Finder/Explorer"). Drag that folder into this chat, or copy its path.
  • On macOS it usually looks like /Users/yourname/Documents/MyVault or ~/Obsidian/MyVault.
  • On Windows it usually looks like C:\Users\yourname\Documents\MyVault.
  • The folder you want is the one with a hidden .obsidian subfolder inside it (not the Documents folder above it).

Read the full file on GitHub · 170 lines

Files

What ships with it

4 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.

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. 6d ago First seen · 170 lines · 125 tokens per session scan C df0e07b46294

Subscribe to this mod's changes

team-os is a skill published in the GitHub repository naveedharri/benai-skills (61 stars, last pushed 7d ago), licensed MIT. It adds 125 tokens to every session and 2,060 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.