smithery.ai

library-management

Manage the Sandboxed.sh library (skills, agents, commands, tools, rules, MCPs) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, save skill, create skill.

First seen Mar 20, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents opencode

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,722 B
  • docs SUMMARY.md 217 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Sandboxed.sh Library Management

The Sandboxed.sh Library is a Git-backed configuration repo that stores reusable skills, agents, commands, tools, rules, MCP servers, and workspace templates. Use the library-* tools to read and update that repo.

When to Use

  • Creating or updating skills, agents, commands, tools, rules, or MCPs
  • Syncing library git state (status/sync/commit/push)
  • Updating workspace templates or plugins in the library

When NOT to Use

  • Local file operations unrelated to the library
  • Running missions or managing workspace lifecycle

Tool Map (file name + export)

Tool names follow the pattern <filename>_<export>.

Skills (library-skills.ts)

  • library-skillslistskills
  • library-skillsgetskill
  • library-skillssaveskill
  • library-skillsdeleteskill

Agents (library-agents.ts)

  • library-agentslistagents
  • library-agentsgetagent
  • library-agentssaveagent
  • library-agentsdeleteagent

Commands / Tools / Rules (library-commands.ts)

  • Commands: library-commandslistcommands, library-commandsgetcommand, library-commandssavecommand, library-commandsdeletecommand
  • Tools: library-commandslisttools, library-commandsgettool, library-commandssavetool, library-commandsdeletetool
  • Rules: library-commandslistrules, library-commandsgetrule, library-commandssaverule, library-commandsdeleterule

MCPs + Git (library-git.ts)

  • MCPs: library-gitgetmcps, library-gitsavemcps
  • Git: library-gitstatus, library-gitsync, library-gitcommit, library-gitpush

Procedure

  1. List existing items
  2. Get current content before editing
  3. Save the full updated content (frontmatter + body)
  4. Commit with a clear message
  5. Push to sync the library remote

File Formats

Skill (skill/<name>/SKILL.md)

---
name: skill-name
description: What this skill does
---
Instructions for using this skill...

Agent (agent/<name>.md)

---
description: Agent description
mode: primary | subagent
model: provider/model-id
hidden: true | false
color: "#44BA81"
tools:
  "*": false
  "read": true
  "write": true
permission:
  edit: ask | allow | deny
  bash:
    "*": ask
rules:
  - rule-name
---
Agent system prompt...

Command (command/<name>.md)

---
description: Command description
model: provider/model-id
subtask: true | false
agent: agent-name
---
Command prompt template. Use $ARGUMENTS for user input.

Tool (tool/<name>.ts)

import { tool } from "@opencode-ai/plugin"

export const my_tool = tool({
  description: "What it does",
  args: { param: tool.schema.string().describe("Param description") },
  async execute(args) {
    return "result"
  },
})

Rule (rule/<name>.md)

---
description: Rule description
---
Rule instructions applied to agents referencing this rule.

MCPs (mcp/servers.json)

{
  "server-name": {
    "type": "local",
    "command": ["npx", "package-name"],
    "env": { "KEY": "value" },
    "enabled": true
  },
  "remote-server": {
    "type": "remote",
    "url": "https://mcp.example.com",
    "headers": { "Authorization": "Bearer token" },
    "enabled": true
  }
}

Guardrails

  • Always read before updating to avoid overwrites
  • Keep names lowercase (hyphens allowed) and within 1-64 chars
  • Use descriptive commit messages
  • Check library-git_status before pushing