Borrowing it
Nothing to install: this file belongs to shyamsridhar123/Skills-Registry-CLI. 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/shyamsridhar123/Skills-Registry-CLI/main/.github/skills/skill-format-converter/SKILL.mdgit clone --depth 1 https://github.com/shyamsridhar123/Skills-Registry-CLIWrote 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/skills/shyamsridhar123/skills-registry-cli/skill-format-converter)<a href="https://agentmods.dev/skills/shyamsridhar123/skills-registry-cli/skill-format-converter"><img src="https://agentmods.dev/badge/skills/shyamsridhar123/skills-registry-cli/skill-format-converter/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/skills/shyamsridhar123/skills-registry-cli/skill-format-converter"><img src="https://agentmods.dev/badge/skills/shyamsridhar123/skills-registry-cli/skill-format-converter.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.00046 | $0.01397 |
| Opus 5 | $0.00023 | $0.00698 |
| Sonnet 5 | $0.00009 | $0.00279 |
| Haiku 4.5 | $0.00005 | $0.00140 |
Grade A, and why
skill-format-converter 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.
How it starts
The opening of the file, as written. The whole thing — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill Format Converter Skill
This skill provides guidance for converting skills between different formats for GitHub Copilot compatibility.
Format Comparison
Source: anthropics/skills Format
skills/
└── <skill-name>/
├── SKILL.md
├── scripts/
├── references/
└── assets/
Target: GitHub Copilot Format
.github/skills/
└── <skill-name>/
├── SKILL.md
├── scripts/
├── references/
└── assets/
SKILL.md Format
Both formats use the same SKILL.md structure:
---
name: skill-name
description: Description of the skill
---
# Skill Title
Instructions and content...
Required Frontmatter
Per VS Code Agent Skills specification:
name: lowercase, hyphens for spaces, max 64 charsdescription: what it does and when to use, max 1024 chars
Conversion Process
Step 1: Parse Source Skill
import { readFile, readdir, stat } from 'fs/promises';
import { join } from 'path';
import { parse as parseYaml } from 'yaml';
async function parseSkill(skillPath) {
const skillMd = await readFile(join(skillPath, 'SKILL.md'), 'utf-8');
// Extract frontmatter
const fmMatch = skillMd.match(/^---\n([\s\S]*?)\n---/);
if (!fmMatch) {
throw new Error('Invalid SKILL.md: no frontmatter');
}
const frontmatter = parseYaml(fmMatch[1]);
const body = skillMd.slice(fmMatch[0].length).trim();
// Scan for resources
const resources = {
scripts: await scanDir(join(skillPath, 'scripts')),
references: await scanDir(join(skillPath, 'references')),
assets: await scanDir(join(skillPath, 'assets'))
};
return {
name: frontmatter.name,
description: frontmatter.description,
license: frontmatter.license,
body,
resources
};
}
async function scanDir(dir) {
try {
const entries = await readdir(dir, { withFileTypes: true });
return entries.map(e => ({
name: e.name,
isDirectory: e.isDirectory()
}));
} catch {
return [];
}
}
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.
- 11d ago First seen · 231 lines · 46 tokens per session scan A e46406053709
skill-format-converter is a skill published in the GitHub repository shyamsridhar123/Skills-Registry-CLI (2 stars, last pushed 7mo ago), licensed MIT. It adds 46 tokens to every session and 1,397 once invoked, about $0.0002 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-31.
Other skills, from other repositories
work
Execute an approved wish plan — orchestrate subagents per task group with fix loops, validation, and review handoff.
preview-design
Render a real artifact through this branch's local MERIDIAN design code (not the published npm package) so the team can test the new Design Convention on the document / handoff / platform surfaces before it ships. Use for /preview-design, "preview the design convention", "render this with the new design", or Design…
sw-do
Implement a SpecWeave increment task by task through the ledger, with evidence per task and a verified close. Use for "implement this", "start working", "continue the increment", "keep going".
done
Close an increment: ledger check, specweave verify, optional review, then specweave complete. Use when all tasks are done and saying "close increment", "we are done", or "finish up".
xiaohongshu-image-creator
An image-making assistant for Xiaohongshu, a Chinese social platform for lifestyle, product, and educational posts. It creates vertical covers and supporting images matched to the post’s topic, audience, and visual style.
atomic-tdd
Test-first discipline. Auto-triggers on "let's implement X", "add feature Y", "fix bug Z", "write a test for", "implement", "build out", and similar pre-code-change phrases. Iron rule: failing test exists before production code. Skip only for pure docs/config changes with an explicit "skipped because:" note. Explicit…