/trusted-capabilities
Discover, evaluate, safely install, and update reusable skills from a curated set of trusted open-source repositories.
$ npx -y skills add sonichi/sutando --skill trusted-capabilities --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/trusted-capabilities
Context preview
The summary Claude sees to decide when to auto-load this skill.
Discover, evaluate, safely install, and update reusable skills from a curated set of trusted open-source repositories.
SKILL.md
trusted-capabilities.SKILL.mdname: trusted-capabilities
description: Discover, evaluate, safely install, and update reusable skills from a curated set of trusted open-source repositories.
Trusted capabilities
Use this skill when the owner asks to find, assess, install, or update reusable agent skills and tools from public ecosystems.
The catalog is allowlist-only. Skill sources can be installed after inspection. Tool sources can be discovered and statically inspected, while tool and index sources remain install-disabled because their setup and runtime permissions are project-specific.
C=skills/trusted-capabilities/scripts/catalog.py
python3 "$C" sources
python3 "$C" search browser
python3 "$C" inspect openai-skills skills/.curated/browser-automation
python3 "$C" inspect mcp-reference-servers src/filesystem
python3 "$C" install openai-skills skills/.curated/browser-automation
# Review the dry-run output, then copy its exact commit into the write:
python3 "$C" install openai-skills skills/.curated/browser-automation --commit <40-char-sha> --yes
python3 "$C" update browser-automation
python3 "$C" update browser-automation --commit <40-char-sha> --yes
`install` and `update` show the resolved commit, destination, and risk findings, then print a write command pinned to that immutable commit. Writes require both the full `--commit <sha>` from the reviewed dry run and `--yes`; resolving the moving default branch again is not authorization to write. Updates also re-check that the source remains installable in the current allowlist. The default destination is the runtime's canonical `$CLAUDE_CONFIG_DIR/skills/` path via `src/util_paths.py`. Use `--dest-root` for an explicit test or alternate install root.
Every install is pinned to a Git commit, fetched file-by-file, bounded by file count and total size, and written atomically. Provenance is recorded in `.sutando-source.json`; `update` uses it to compare and fetch the same upstream path.
Read more
name: trusted-capabilities description: Discover, evaluate, safely install, and update reusable skills from a curated set of trusted open-source repositories.
Trusted capabilities
Use this skill when the owner asks to find, assess, install, or update reusable agent skills and tools from public ecosystems.
The catalog is allowlist-only. Skill sources can be installed after inspection. Tool sources can be discovered and statically inspected, while tool and index sources remain install-disabled because their setup and runtime permissions are project-specific.
C=skills/trusted-capabilities/scripts/catalog.py python3 "$C" sources python3 "$C" search browser python3 "$C" inspect openai-skills skills/.curated/browser-automation python3 "$C" inspect mcp-reference-servers src/filesystem python3 "$C" install openai-skills skills/.curated/browser-automation # Review the dry-run output, then copy its exact commit into the write: python3 "$C" install openai-skills skills/.curated/browser-automation --commit <40-char-sha> --yes python3 "$C" update browser-automation python3 "$C" update browser-automation --commit <40-char-sha> --yes
`install` and `update` show the resolved commit, destination, and risk findings, then print a write command pinned to that immutable commit. Writes require both the full `--commit <sha>` from the reviewed dry run and `--yes`; resolving the moving default branch again is not authorization to write. Updates also re-check that the source remains installable in the current allowlist. The default destination is the runtime's canonical `$CLAUDE_CONFIG_DIR/skills/` path via `src/util_paths.py`. Use `--dest-root` for an explicit test or alternate install root.
Every install is pinned to a Git commit, fetched file-by-file, bounded by file count and total size, and written atomically. Provenance is recorded in `.sutando-source.json`; `update` uses it to compare and fetch the same upstream path.
My AI Stand — Realtime by Day, Rewriting Itself by Night. Summon my AI superpower. Voice, vision, screen, meetings, calls when I'm engaged. Learns my patterns, ships its own code when I'm not. Runs across my Macs, interacts with people & their Stands.
Repo: sonichi/sutando
Other skills on sutando.
- /agent-registry
Local Agent Registry — a standalone, dependency-free service that tracks running Claude Code (and other) agent instances. Agents self-register on startup and heartbeat while alive; the Electron overlay and Sutando dashboard read the live list. Use when you need to know which
Open skill - /agent-room-ops
**One skill, multiple tools.** Everything an agent does in a room beyond its task inbox lives here as a tool, so the parity capabilities are self-evidently *one collection* (not N scattered skills). Each tool is a thin **gateway-only** client verb sharing `_gateway.py`; the
Open skill - /audio-transcribe
Transcribes audio files and voice notes to text via Gemini 2.5-flash. Integrates with Slack, Discord, and Telegram bridges so voice clips surface as readable text in tasks.
Open skill - /bot2bot-post
Post a coordination message from this bot to the shared bot2bot channel — @-mentioning a specific peer via --to, auto-mentioning only in single-peer fleets, never guessing.
Open skill - /call-diagnostics
Analyze phone call observability data, detect problems, track them across calls, and recommend systematic repairs.
Open skill - /claude-codex
Bash wrapper around the local Codex CLI for non-interactive runs from inside Sutando (bridges, cron, scripts). For interactive code review or task hand-off from this Claude Code session, prefer the official `/codex:*` plugin commands; this skill is the file-bridge-compatible
Open skill

