team-skill-library

team-skill-library is a skill for Claude Code from TommyBez/skillsboard. It costs 141 tokens per session (1,114 once invoked), scanned A, original, MIT.

A guide for using a team's shared library of AI skills through Skills Board, a searchable web service for saving and sharing those skills.

In plain words
What is it for?
Use it to search the team library, list collections, get installation commands, or save skills back to the shared library.
Why use it?
It helps developers find existing team skills, install them, and save useful new skills instead of managing them separately.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skills-board plugin — 1 skill, 1 MCP server shipped together

Good fit Use it to search the team library, list collections, get installation commands, or save skills back to the shared library.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tommybez/skillsboard/team-skill-library
Install

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.

Any agent
npx skills add TommyBez/skillsboard --skill team-skill-library
Clone the repo
git clone --depth 1 https://github.com/TommyBez/skillsboard

Made for: Claude Code.

Or install skills-board, the plugin that ships this one along with the rest of its 1 skill, 1 MCP server.

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-skill-library

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/tommybez/skillsboard/team-skill-library"><img src="https://agentmods.dev/badge/skills/tommybez/skillsboard/team-skill-library.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 141 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,114 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00141 $0.01114
Opus 5 $0.00071 $0.00557
Sonnet 5 $0.00028 $0.00223
Haiku 4.5 $0.00014 $0.00111

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

Security

Grade A, and why

team-skill-library 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 7d 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.

plugin/skills/team-skill-library/SKILL.md · 94 lines

How it starts

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

Skills Board team library

Skills Board is a web app where a team keeps and shares its AI skills in one searchable library. This skill covers how to use that library from an agent: find a saved skill, hand off an install command, and save a new skill back to the team.

Before the first call

The plugin ships one MCP server, skills-board, pointing at https://www.skillsboard.sh/api/mcp. It is OAuth protected: the client runs the authorization flow, not this skill. If the tools are missing, tell the user to connect the server in their client and to sign in at https://www.skillsboard.sh first.

Two scopes matter:

  • skills:read is required for every tool. Without it the endpoint answers 403.
  • skills:write is required to save skills or change collections. Without it the write tools return an error asking the user to reconnect with write access.

Clients usually namespace tool names, for example mcp__skills-board__list_skills. Match on the trailing tool name.

Find what the team already saved

  • search_skills takes a query and matches saved skills by name, description, note, example prompt, repository, or tag. Start here.
  • list_skills returns every skill saved across the user's team libraries. Use it when the library is small or when a search returns nothing.
  • search_collections and list_collections do the same for collections, which group saved skills by use case or project.
  • get_collection_skills takes a collectionId and returns the skills in that collection, each with an install command.

Report what the team saved, including the note and example prompts a teammate wrote, before suggesting anything from outside the library.

Hand off an install

Skills Board records what a team saved. It does not install skills into an agent, so the last step is always a command the user runs, or a file the user downloads.

  • One saved skill: get_skill_command with its skillId returns npx skills add <github url> --skill <skill name>.
  • A published collection: get_collection_install_command with its collectionId returns the share URL and npx skills add https://www.skillsboard.sh/p/<share id> --skill "*", plus the active revision. It errors when the collection has no active install link. Rerunning the command adds skills introduced by a later revision. The update path refreshes installed skills but does not remove skills deleted from the collection.
  • The original GitHub source is in every skill record. Reading the source before installing is the honest default: a saved skill is the team's own choice, not a review or a pinned release.

Read the full file on GitHub · 94 lines

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. 7d ago First seen · 94 lines · 141 tokens per session scan A dc380e3cea09

Subscribe to this mod's changes

team-skill-library is a skill published in the GitHub repository TommyBez/skillsboard (6 stars, last pushed today), licensed MIT. It adds 141 tokens to every session and 1,114 once invoked, about $0.0007 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-09-03.

Related

Other skills, from other repositories

intelligence-docs

Keeps the CopilotKit Intelligence landing page in sync when a new Intelligence feature ships or when Intelligence docs are added, renamed, or removed. Use when adding Intelligence capabilities, writing or moving pages under docs/intelligence, editing IntelligenceFeatureCards, or changing…

CopilotKit/CopilotKit · 83 tokens

reskin

Author a NEW skin for the reskinnable-demo app. A skin is a self-contained domain plugin under src/skins/ / that implements the frozen Skin contract (src/shell/skin-contract.ts) to swap the app's entire experience — brand, theme, layout, pages, tools, data, and agent — as a live sales demo. Use when the user says "add…

CopilotKit/CopilotKit · 154 tokens

setup-slack-channel

Use for the PROVIDER half of getting a locally running CopilotKit Channels agent to answer in Slack, when no Slack app exists yet — setting up a Channels bot in Slack for the first time, creating the Slack app and its tokens, attaching it to a managed Intelligence Channel, or when a Channel reports setuprequired, sits…

CopilotKit/CopilotKit · 206 tokens

copilotkit-channels

Use for the CODE half of a managed Intelligence Channel with Slack or Microsoft Teams: customising the Channel a CLI-scaffolded project already ships, or — for a project the CLI did not generate — writing the Channel declaration, the long-running host, and the awaited activation call. Teams provider setup is in scope…

CopilotKit/CopilotKit · 112 tokens

runtime

@copilotkit/runtime — mount a fetch-native CopilotRuntime on any JS server, wire middleware, pick an AgentRunner, instantiate BuiltInAgent (Factory Mode with TanStack AI is the preferred default) or plug in any of 12 external agent frameworks (Mastra, LangGraph, CrewAI Crews/Flows, PydanticAI, ADK, LlamaIndex, Agno…

CopilotKit/CopilotKit · 150 tokens

copilotkit-integrations

Use when wiring an external agent framework (LangGraph, CrewAI, PydanticAI, Mastra, ADK, LlamaIndex, Agno, Strands, Microsoft Agent Framework, or others) into a CopilotKit application via the AG-UI protocol.

CopilotKit/CopilotKit · 61 tokens