Borrowing it
Nothing to install: this file belongs to Everyone-Needs-A-Copilot/claude-copilot. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Everyone-Needs-A-Copilot/claude-copilot/main/.claude/commands/skills-approve.mdgit clone --depth 1 https://github.com/Everyone-Needs-A-Copilot/claude-copilotWrote 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.
[](https://agentmods.dev/commands/everyone-needs-a-copilot/claude-copilot/skills-approve)<a href="https://agentmods.dev/commands/everyone-needs-a-copilot/claude-copilot/skills-approve"><img src="https://agentmods.dev/badge/commands/everyone-needs-a-copilot/claude-copilot/skills-approve/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.
<a href="https://agentmods.dev/commands/everyone-needs-a-copilot/claude-copilot/skills-approve"><img src="https://agentmods.dev/badge/commands/everyone-needs-a-copilot/claude-copilot/skills-approve.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00612 |
| Opus 5 | $0.00000 | $0.00306 |
| Sonnet 5 | $0.00000 | $0.00122 |
| Haiku 4.5 | $0.00000 | $0.00061 |
Grade A, and why
skills-approve 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.
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.
How it starts
The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skills Manager
Browse, search, and manage reusable skills via the cc CLI.
Overview
Skills are SKILL.md files discovered from configured directories:
- Project skills:
.claude/skills/(project-local, highest priority) - Global skills:
~/.claude/skills/(machine-level) - Knowledge repo: configured via
cc config set paths.knowledge_repo
Step 1: List Available Skills
cc skill list
This shows all discovered skills with name, description, tags, and source (project/global).
Step 2: Search Skills
cc skill search "<keywords>"
Example:
cc skill search "testing patterns"
cc skill search "auth security"
Step 3: Inspect a Skill
cc skill get <name>
Example:
cc skill get testing-patterns
Step 4: Create a New Skill
To add a skill, create a SKILL.md file in the appropriate directory:
# Project skill (committed to git)
mkdir -p .claude/skills/<category>
# Then write .claude/skills/<category>/SKILL.md
# Global skill (machine-level, all projects)
mkdir -p ~/.claude/skills/<category>
# Then write ~/.claude/skills/<category>/SKILL.md
SKILL.md format:
---
name: skill-name
description: One-line description used for search and discovery
tags: [tag1, tag2]
triggers:
filePatterns: ["**/*.test.ts"]
keywords: ["testing", "jest"]
---
# Skill Name
[Skill content here — guidelines, patterns, examples]
Step 5: Find Relevant Skills by Keyword
Search for skills relevant to the current task:
cc skill search "auth security"
cc skill search "testing"
Step 6: Load a Skill in Claude
Use @include to inject a skill into the current session:
@include .claude/skills/<category>/SKILL.md
Skills are plain prose files — the model reads them directly via @include or by running cc skill get <name> and reading the output.
File Organization
.claude/skills/
├── testing/
│ └── SKILL.md
├── patterns/
│ └── SKILL.md
└── security/
└── SKILL.md
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.
- 4d ago First seen · 125 lines · 0 tokens per session scan A 1bd7c7076243
skills-approve is a command published in the GitHub repository Everyone-Needs-A-Copilot/claude-copilot (13 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 612 tokens. 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-04.
Other commands, from other repositories
workflow-classify
Classify task size (S/M/L/XL) and recommend the appropriate workflow pipeline.
atomic-plan
Write a design doc (concepts, business rules, approaches) and a checkpoint-table spec (contract) for non-trivial work; inline spec only for trivial. Gauges triviality; loops spec authoring with subagents. Human-facing artifact, Mermaid diagrams allowed.
export-closedloop-learnings
Exports pending ClosedLoop learnings to global location with deduplication.
sonarqube
Analyze SonarCloud quality issues for a specific PR.
refactor
Analyze code for SOLID violations and suggest targeted improvements.
generate-tests
Generate comprehensive tests for specified code.