/ Annuaire / Playground / skills
● Communauté huangwb8 ⚡ Instantané

skills

par huangwb8 · huangwb8/skills

12 meta-skills for building, testing, documenting, and shipping your own Claude/Codex skills — a full skill development pipeline.

huangwb8/skills is a meta-library for skill builders. It includes init-project (creates AGENTS.md/CLAUDE.md/README.md), install-bensz-skills, write-skill-readme, auto-test-skill, auto-test-project, better-prompt, awesome-code (multi-agent dev), parallel-vibe (parallel solution testing), git-commit/git-pr-review/git-publish-release, and bensz-collect-bugs.

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

skills-skill-8.replay ▶ prêt
0/0

Installer

Choisissez votre client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "skills-skill-8": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/huangwb8/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "skills-skill-8": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/huangwb8/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Cursor utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "skills-skill-8": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/huangwb8/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "skills-skill-8": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/huangwb8/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "skills-skill-8",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/huangwb8/skills",
        "~/.claude/skills/skills"
      ]
    }
  ]
}

Continue utilise un tableau d'objets serveur plutôt qu'une map.

~/.config/zed/settings.json
{
  "context_servers": {
    "skills-skill-8": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/huangwb8/skills",
          "~/.claude/skills/skills"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

claude mcp add skills-skill-8 -- git clone https://github.com/huangwb8/skills ~/.claude/skills/skills

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : skills

Author a new Claude skill and test it before publishing

👤 Developers who've built one-shot skills and want them actually reliable ⏱ ~60 min intermediate

Quand l'utiliser : You have a draft SKILL.md and want it audited before sharing.

Prérequis
  • Skill cloned to ~/.claude/skills/ — git clone https://github.com/huangwb8/skills ~/.claude/skills/huangwb8-skills
Déroulement
  1. Scaffold with init-project
    Use init-project to scaffold AGENTS.md and CLAUDE.md for my new skill project.✓ Copié
    → Directive files appear with sensible defaults
  2. Polish the prompt with better-prompt
    Run better-prompt on my SKILL.md body.✓ Copié
    → Clearer, more executable wording
  3. Stress-test
    Now auto-test-skill my SKILL.md — find weaknesses.✓ Copié
    → Failure modes named (vague triggers, missing examples, ambiguous steps)
  4. Write the README
    write-skill-readme for this skill.✓ Copié
    → README following convention

Résultat : A skill that passes its own tests before anyone else sees it.

Pièges
  • auto-test-skill flags everything and you fix nothing — Prioritize Critical + Warning; Suggestion-level is aspirational
Combiner avec : skillcheck-free-skill

Compare two implementation approaches with parallel-vibe

👤 Engineers stuck between two architectures ⏱ ~90 min advanced

Quand l'utiliser : You can't decide between approach A and approach B and want to try both.

Déroulement
  1. Describe both approaches
    parallel-vibe: implement approach A (server-sent events) and approach B (polling) in separate workspaces. Same test suite.✓ Copié
    → Two independent workspaces with separate code and test results
  2. Compare
    Now compare — which is simpler to maintain and which is faster under load?✓ Copié
    → Honest tradeoff analysis grounded in both codebases

Résultat : A data-backed decision between two architectures.

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

skills-skill-8 + skillcheck-free-skill

Cross-validate: auto-test-skill finds design weaknesses, SkillCheck validates spec compliance

Run auto-test-skill, then SkillCheck, then fix whatever either flags.✓ Copié
skills-skill-8 + github

git-pr-review + git-publish-release against real PRs and releases

Use git-pr-review on PR #47 then draft the release notes via git-publish-release.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
init-project project intent First commit in a new project 0
better-prompt draft prompt/instructions Before shipping any prompt-heavy artifact 0
auto-test-skill SKILL.md path Before publishing a skill 0
parallel-vibe N approaches + test criteria When you genuinely can't pick an approach on paper 0 + LLM tokens for each branch
git-commit diff intent End of a unit of work 0
git-pr-review PR number or diff Reviewing a PR you're assigned 0

Coût et limites

Coût d'exécution

Quota d'API
None
Tokens par appel
parallel-vibe can be expensive — runs multiple solution attempts
Monétaire
Free — skills are local files
Astuce
Use parallel-vibe sparingly; it multiplies your token spend by N branches.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : No credentials — pure prompts. git-* skills use your local git config.
Sortie de données : None from skills themselves; git-* may push to remotes you configure.

Dépannage

Erreurs courantes et correctifs

Skill not invoked — Claude uses its own defaults instead of init-project

Name the specific skill ('use init-project to scaffold...').

Vérifier : ls ~/.claude/skills/huangwb8-skills/
SKILL.md frontmatter wrong in a sub-skill

Each sub-skill has its own SKILL.md — inspect the specific folder.

Vérifier : head ~/.claude/skills/huangwb8-skills/init-project/SKILL.md
Wrong trigger keywords — git-commit doesn't activate

Say 'use git-commit' explicitly; 'commit' alone is too generic.

Alternatives

skills vs autres

AlternativeQuand l'utiliserCompromis
skillcheck-free-skillYou want spec validation rather than robustness testingNarrower scope, higher specificity to the agentskills spec
skills-skill-9 (tenequm)You want broader product-building skills, not just skill authoringLess meta — more domain skills

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills