Skill Management

Skill Management is a skill for Claude Code from sseshachala/conductai. It costs 12 tokens per session (1,022 once invoked), scanned A, original, Apache-2.0.

A set of instructions for managing skills stored in a Claude Code workspace. It covers creating, editing, deleting, and reviewing skill files, including how those changes must be saved.

In plain words
What is it for?
Use it to draft new skills, revise existing ones, remove skills, or audit their instructions and ownership.
Why use it?
It prevents skill files from being changed through blocked or unsupported file tools. It also requires each skill to define its trigger, steps, file references, output, and boundaries.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the conductai plugin — 3 skills, 5 agents, 5 hooks, 1 MCP server, 2 plugins shipped together

Good fit Use it to draft new skills, revise existing ones, remove skills, or audit their instructions and ownership.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sseshachala/conductai/rundock-skills
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 sseshachala/conductai --skill rundock-skills
Clone the repo
git clone --depth 1 https://github.com/sseshachala/conductai

Made for: Claude Code.

Or install conductai, the plugin that ships this one along with the rest of its 3 skills, 5 agents, 5 hooks, 1 MCP server, 2 plugins.

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 Skill Management

README.md
[![agentmods](https://agentmods.dev/badge/skills/sseshachala/conductai/rundock-skills/github.svg)](https://agentmods.dev/skills/sseshachala/conductai/rundock-skills)
Your own site
<a href="https://agentmods.dev/skills/sseshachala/conductai/rundock-skills"><img src="https://agentmods.dev/badge/skills/sseshachala/conductai/rundock-skills/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 Skill Management

Your own site · 80×15
<a href="https://agentmods.dev/skills/sseshachala/conductai/rundock-skills"><img src="https://agentmods.dev/badge/skills/sseshachala/conductai/rundock-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,022 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

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 →

  • high Prompt Injection · line 37
    Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.
    Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
  • medium Agent Snooping · line 6
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
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.00012 $0.01022
Opus 5 $0.00006 $0.00511
Sonnet 5 $0.00002 $0.00204
Haiku 4.5 $0.00001 $0.00102

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

Security

Grade A, and why

Skill Management 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.

.claude/skills/rundock-skills/SKILL.md · 120 lines

How it starts

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

Manage skills in .claude/skills/. This skill covers the full lifecycle.

Important: file access

Claude Code blocks Write and Edit tools for files inside .claude/. Do NOT use Write, Edit, or Bash to create, modify, or delete skill files. Instead, use RUNDOCK markers. The Rundock client detects these markers in your response and saves the files through the server.

Create a skill

1. Understand the skill

Ask the user:

  • What should this skill do? (purpose, when it triggers)
  • Which agent should own it? (check .claude/agents/ for the current team)

If the user already provided enough detail, skip straight to drafting.

2. Draft the skill

A good skill file has:

  • Clear trigger: When should the agent use this skill? Be specific about the user request or situation.
  • Step-by-step instructions: Numbered steps, not prose paragraphs. Each step should be a concrete action.
  • File references: Specific paths the skill reads from or writes to. Run ls if unsure what exists.
  • Output format: What the result should look like (structure, length, tone).
  • Boundaries: What the skill does NOT cover. Which other skill or agent handles adjacent requests.

Naming: Slugs are lowercase with hyphens: meeting-prep, weekly-digest, code-review.

3. Save the skill

Output the complete skill file wrapped in the marker:

---
name: {Human Readable Name}
description: {What this skill does}
---

{Skill instructions}

The skill will be saved to .claude/skills/{slug}/SKILL.md. The skills panel updates automatically.

4. Assign to an agent

After creating the skill, update the owning agent's instructions to reference the skill slug. This is how Rundock connects skills to agents in the UI.

Tell the user: "To connect this skill to [agent name], I need to update their instructions to reference {slug}. Want me to do that?"

If yes, read the agent file from .claude/agents/{agent-slug}.md, add the skill reference to the appropriate section, and output the updated agent file using:

Read the full file on GitHub · 120 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. 11d ago First seen · 120 lines · 12 tokens per session scan A c14a940f70f4

Subscribe to this mod's changes

Skill Management is a skill published in the GitHub repository sseshachala/conductai (32 stars, last pushed today), licensed Apache-2.0. It adds 12 tokens to every session and 1,022 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

agent-tool

Add a new tool/function the AI agent can call (e.g. look something up, hit an external API, perform an action). Use when extending the assistant's capabilities, wiring a new function into the agent, or when the model needs a new action. This project uses {{ cookiecutter.aiframework }}.

vstorm-co/full-stack-ai-agent-template · 66 tokens

background-task

Add or modify work that runs outside the request/response cycle — emails, document ingestion, webhooks, cleanups, scheduled jobs. Use when something is slow or fire-and-forget, or when adding a periodic/cron task. This project's queue is {{ cookiecutter.backgroundtasks }}.

vstorm-co/full-stack-ai-agent-template · 62 tokens

channel-bot

Work with messaging-channel bots (Telegram / Slack) — register a bot, route inbound messages through the AI agent, handle webhooks vs polling, or add a new channel adapter. Use when wiring chat into a messaging platform or debugging bot delivery.

vstorm-co/full-stack-ai-agent-template · 53 tokens

frontend-feature

Build a new page, view, or data-driven feature in the Next.js frontend. Use when adding a route under the dashboard/marketing area, wiring UI to a backend endpoint, adding client state, or creating a localized page. Covers App Router, data fetching, Zustand stores, and i18n.

vstorm-co/full-stack-ai-agent-template · 64 tokens

pytest-suite

Write or extend the backend test suite following this project's conventions. Use when adding tests for a new service/route/repository, when coverage is missing, or when asked to test a feature. Knows the mocked-session + httpx AsyncClient setup so tests run with no database.

vstorm-co/full-stack-ai-agent-template · 59 tokens

rag-knowledge

Work with the RAG knowledge base — ingest documents, run semantic search, manage collections, or add a sync source/connector (Google Drive, S3). Use when populating or debugging the knowledge base, tuning retrieval, or adding a new document source. This project uses {{ cookiecutter.vectorstore }} + {{…

vstorm-co/full-stack-ai-agent-template · 76 tokens