Skills-Registry-CLI: Skill for Claude Code

.github/skills/skill-format-converter/SKILL.md

skill-format-converter is a skill for Claude Code, Codex from shyamsridhar123/Skills-Registry-CLI. It costs 46 tokens per session (1,397 once invoked), scanned A, original, MIT.

A skill for converting skills between the format used by Anthropic and the format used by GitHub Copilot. It preserves the main instructions and supporting folders such as scripts, references, and assets.

In plain words
What is it for?
Use it to migrate a skill into or out of the GitHub Copilot skills directory structure and validate its required metadata.
Why use it?
It avoids manually restructuring skill files when moving them between these two compatible formats.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is shyamsridhar123/Skills-Registry-CLI's own configuration. It tells Claude Code and Codex how to work on Skills-Registry-CLI itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Skills-Registry-CLI configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/shyamsridhar123/Skills-Registry-CLI/main/.github/skills/skill-format-converter/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/shyamsridhar123/Skills-Registry-CLI

Made for: Claude Code, Codex.

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-format-converter

README.md
[![agentmods](https://agentmods.dev/badge/skills/shyamsridhar123/skills-registry-cli/skill-format-converter/github.svg)](https://agentmods.dev/skills/shyamsridhar123/skills-registry-cli/skill-format-converter)
Your own site
<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.

agentmods 80×15 button for skill-format-converter

Your own site · 80×15
<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>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,397 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.00046 $0.01397
Opus 5 $0.00023 $0.00698
Sonnet 5 $0.00009 $0.00279
Haiku 4.5 $0.00005 $0.00140

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

Security

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.

.github/skills/skill-format-converter/SKILL.md · 231 lines

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 chars
  • description: 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 [];
  }
}

Read the full file on GitHub · 231 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 · 231 lines · 46 tokens per session scan A e46406053709

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

work

Execute an approved wish plan — orchestrate subagents per task group with fix loops, validation, and review handoff.

automagik-dev/genie · 26 tokens

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…

egregore-labs/egregore · 71 tokens

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

anton-abyzov/specweave · 41 tokens

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

anton-abyzov/specweave · 0 tokens

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.

huangrichao2020/pretty-skills · 121 tokens

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…

damusix/atomic-claude · 142 tokens