skills-management

skills-management is a skill for Claude Code, Codex from CodeAlive-AI/ai-driven-development. It costs 151 tokens per session (6,008 once invoked), scanned A, original, MIT.

A collection of commands for managing skills used by AI coding agents. A skill is a set of instructions that teaches an agent how to handle a particular kind of work.

In plain words
What is it for?
Use it to list skills, view their details, review or delete them, move them between user and project scope, audit duplicates, install candidates, or optimize a skill using task results.
Why use it?
It helps you find, inspect, install, remove, move, update, review, and deduplicate skills without managing each skill manually. It can also check for naming conflicts before installation.

Skill for Claude CodeCodex

Part of the ai-driven-development plugin — 25 skills, 1 agent shipped together

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.

agentmods
npx agentmods add skills/codealive-ai/ai-driven-development/skills-management
Any agent
npx skills add CodeAlive-AI/ai-driven-development --skill skills-management
Clone the repo
git clone --depth 1 https://github.com/CodeAlive-AI/ai-driven-development

Made for: Claude Code, Codex.

Or install ai-driven-development, the plugin that ships this one along with the rest of its 25 skills, 1 agent.

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 skills-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/codealive-ai/ai-driven-development/skills-management.svg)](https://agentmods.dev/skills/codealive-ai/ai-driven-development/skills-management)
Your own site
<a href="https://agentmods.dev/skills/codealive-ai/ai-driven-development/skills-management"><img src="https://agentmods.dev/badge/skills/codealive-ai/ai-driven-development/skills-management.svg" alt="Measured on agentmods" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,008 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00151 $0.06008
Opus 5 $0.00076 $0.03004
Sonnet 5 $0.00030 $0.01202
Haiku 4.5 $0.00015 $0.00601

Measured 4d ago against content hash 9738bf5cda9e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skills-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 4d ago.

The scan reads SKILL.md. This mod also ships 22 executable files (scripts/agents.py, scripts/aggregate_runs.py, scripts/audit_skill_duplicates.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/skills-management/SKILL.md · 483 lines

How it starts

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

Skills Manager

Quick Reference

Task Command
List all python3 scripts/list_skills.py
List by scope python3 scripts/list_skills.py -s user or -s project
Show details python3 scripts/show_skill.py <name>
Review skill python3 scripts/review_skill.py <name>
Delete python3 scripts/delete_skill.py <name>
Delete from agents python3 scripts/delete_skill.py <name> --all-agents --force
Move to user python3 scripts/move_skill.py <name> user
Move to project python3 scripts/move_skill.py <name> project
Audit duplicate names python3 scripts/audit_skill_duplicates.py
Preflight install python3 scripts/audit_skill_duplicates.py --candidate /path/to/skill --fail-on-conflict
Create new Use /skill-creator
Optimize & Iterate (SkillOpt-style)
Plan optimisation python3 scripts/optimize_skill.py <name> --tasks tasks.jsonl --dry-run
Run optimisation python3 scripts/optimize_skill.py <name> --tasks tasks.jsonl --output-dir runs/r1
Log a manual edit python3 scripts/log_skill_edit.py <name> --reason "..." --snapshot
List recent edits python3 scripts/log_skill_edit.py <name> --list --since 7d
Diff vs last snapshot python3 scripts/diff_skill_versions.py <name> --log --format stats
Diff between commits python3 scripts/diff_skill_versions.py <name> --git HEAD~3 HEAD
Trigger test python3 scripts/trigger_test.py <name> --cases cases.yaml
Generate trigger cases python3 scripts/trigger_test.py <name> --generate > cases.yaml
Transfer test python3 scripts/transfer_test.py <name> --all
Aggregate runs python3 scripts/aggregate_runs.py runs/*
Compare runs python3 scripts/aggregate_runs.py runs/r1 runs/r2 --compare
Assertion-graded run python3 scripts/optimize_skill.py <name> --tasks tasks.jsonl --verifier assertions
Multi-run variance python3 scripts/optimize_skill.py <name> --tasks tasks.jsonl --runs-per-task 3
Blind A/B compare python3 scripts/blind_comparator.py --skill-a runs/r1/initial_skill.md --skill-b runs/r1/best_skill.md --tasks tasks.jsonl --output-dir cmp/
HTML viewer python3 scripts/eval_viewer.py runs/r1
Compare two runs (HTML) python3 scripts/eval_viewer.py runs/r1 runs/r2 --compare
Discovery & Install
Find skills npx skills find [query]
Review remote skills Fetch skills.sh pages, assess using assessment framework
List ecosystem skills npx skills list or npx skills ls
Install from GitHub npx skills add <owner/repo@skill> -g -y
Remove ecosystem skill npx skills remove <name> -g -y or npx skills rm
Inspect installed versions Read lock metadata and upstream state; do not assume npx skills check is read-only
Update all npx skills update
Browse online skills.sh
Multi-Agent
Detect agents python3 scripts/detect_agents.py
List agent skills python3 scripts/list_agent_skills.py --agent cursor
Install to agent python3 scripts/install_skill.py /path --agent cursor
Copy between agents python3 scripts/copy_skill.py <name> --from claude-code --to cursor
Move between agents python3 scripts/move_skill_agent.py <name> --from claude-code --to cursor

Read the full file on GitHub · 483 lines

Files

What ships with it

48 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.

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. 4d ago First seen · 483 lines · 151 tokens per session scan A 9738bf5cda9e

Subscribe to this mod's changes

skills-management is a skill published in the GitHub repository CodeAlive-AI/ai-driven-development (132 stars, last pushed today), licensed MIT. It adds 151 tokens to every session and 6,008 once invoked, about $0.0008 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.