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 skill-os-buildergit 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/skill-os-builder)<a href="https://agentmods.dev/skills/naveedharri/benai-skills/skill-os-builder"><img src="https://agentmods.dev/badge/skills/naveedharri/benai-skills/skill-os-builder/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/skill-os-builder"><img src="https://agentmods.dev/badge/skills/naveedharri/benai-skills/skill-os-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Rogue Agent · line 8 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00075 | $0.01358 |
| Opus 5 | $0.00037 | $0.00679 |
| Sonnet 5 | $0.00015 | $0.00272 |
| Haiku 4.5 | $0.00007 | $0.00136 |
Grade A, and why
skill-os-builder 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill OS Builder
You help the user create a Skill OS: their entire second brain packaged as one
Claude skill. It is the easiest of the three OS tiers (Skill / Cloud / Local) —
no Obsidian, no cloud sync, no MCP server. The skill's SKILL.md is the router;
the context/ files are the brain.
Read references/structure-spec.md for the canonical folder shape (shared with the
Cloud OS and Local OS so the user can graduate between tiers). Read
references/routing-patterns.md before writing the generated router.
Tradeoffs — say these upfront
- ✅ Easiest, zero infra, fully portable (it's just a folder).
- ✅ Claude reads it natively; no setup beyond dropping it in
~/.claude/skills/. - ❌ Single-user, no live multiplayer, no realtime sync across devices.
- ❌ Grows in one folder — great for personal use, not a team vault.
Build flow
- Explain the tradeoffs above; confirm Skill OS is the right tier.
- Interview (keep it short):
- Name / what to call the OS
- Their role + voice/preferences (for
about-me.md) - What they want to track — pick from: projects, notes/intelligence, people, systems/routines. Only include what they need.
- Scaffold the OS folder from
templates/:SKILL.md←templates/_SKILL.md.tmpl(short router: CLAUDE.md-style rules- routing table — NO long content)
context/*.md← the templates they chose- Frontmatter must be valid YAML. Keep
descriptionon ONE line wrapped in double quotes (description: "…"). Never leave it as an unquoted multi-line scalar — colons (Trigger phrases:) and inner quotes break the YAML and the skill is rejected on upload. Don't put"inside the quoted description; use plain words for trigger phrases.
- Confirm the layout — DON'T skip this. Show the user the full tree you just
created (the folder,
SKILL.md, and everycontext/file) and ask: "Does this layout look right, or do you want to add / rename / remove anything — another context file, a sub-folder, etc.?" Apply whatever they ask, and keep theSKILL.mdrouting table in sync with the final file list before moving on. - Populate the content — DON'T ship empty or placeholder files. Ask the user
in ONE go to dump everything they have at once — "Upload any files or just
paste all your context here — projects, notes, people, routines, whatever you've
got. Don't worry about organizing it; I'll sort it into the right files."
Then YOU split that material across the context files by topic (projects →
projects.md, people →people.md, etc.). Don't make them go file by file. After sorting, show what landed where and ask if anything's miscategorized or missing. If a file ends up with nothing, leave a one-line note of what it's for rather than fake filler. - Package as a zip (so they can upload it anywhere — Cowork, Claude
Desktop, the API). Zip the contents of the OS folder so
SKILL.mdsits at the root of the zip — never wrap it in an extra folder. Run from inside the generated folder:
Then verify before handing it over:cd <name> && zip -rX "../<name>.zip" . -x '.*' '*/.*'unzip -l <name>.zip— the listing MUST showSKILL.mdat the top level (e.g.SKILL.md,context/...), NOT<name>/SKILL.md.- Frontmatter parses as YAML:
unzip -p <name>.zip SKILL.md | sed -n '/^---$/,/^---$/p' | python3 -c 'import sys,yaml; yaml.safe_load(sys.stdin.read().strip().strip("-"))'— it must exit cleanly with no error. Hand them the path to<name>.zip.
- Place + test: tell them to put it in
~/.claude/skills/<name>/, restart, and ask Claude something that should route to a context file. (Or just upload the zip into Cowork and start using it there.) - Graduating later: the same
context/shape moves straight into a Cloud OS or Local OS — point them tocloud-os-builderwhen they need sync.
What ships with it
8 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/routing-patterns.md 837 B
- references/structure-spec.md 1.7 KB
- templates/_SKILL.md.tmpl 1012 B
- templates/context/about-me.md.tmpl 168 B
- templates/context/intelligence.md.tmpl 100 B
- templates/context/people.md.tmpl 106 B
- templates/context/projects.md.tmpl 193 B
- templates/context/systems.md.tmpl 105 B
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.
- 11d ago First seen · 86 lines · 75 tokens per session scan A d0579e6e88f8
skill-os-builder is a skill published in the GitHub repository naveedharri/benai-skills (61 stars, last pushed 7d ago), licensed MIT. It adds 75 tokens to every session and 1,358 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
handoff
Emit a paste-ready two-part handoff for a fresh session: a ## Goal statement hard-capped under 4000 characters (produced by the /goal skill), plus an unbounded ## Full prompt carrying cwd, ordered reading list, hard rules, pitfalls, and deliverables. Runs with or without a git repository — branch and PR facts are…
weekly-digests
Generate a serial week-by-week narrative digest of a project's full claude-mem timeline. Splits the timeline into per-ISO-week files, then runs one consecutive subagent per week — each receiving the prior week's carry-forward block — to produce one chapter per ISO week of data. Use when asked for "weekly digests"…
cloud-sync
Set up or check claude-mem cloud sync with cmem.ai Pro. Use when the user says "set up cloud sync", "sync my memories", "cmem pro", "cloud backup", "sync status", or wants their memory database backed up or synced to their cmem.ai account.
long-context
Extend context windows of transformer models using RoPE, YaRN, ALiBi, and position interpolation techniques. Use when processing long documents (32k-128k+ tokens), extending pre-trained models beyond original context limits, or implementing efficient positional encodings. Covers rotary embeddings, attention biases…
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…
vellum-memory-v3-migration
One-time migration of an existing memory-v2 concept corpus into the memory-v3 section-grain "wiki" — topical articles with a stand-alone lead and queryable sections — with loss-proof staging, assistant-reviewed authoring, and a retrieval-eval gate before cutover.