/ Annuaire / Playground / ordinary-claude-skills
● Communauté Microck ⚡ Instantané

ordinary-claude-skills

par Microck · Microck/ordinary-claude-skills

A pragmatic, self-deprecatingly named collection of everyday Claude Skills — the boring-but-useful helpers you actually reach for.

ordinary-claude-skills is a grab-bag of general-purpose Agent Skills from Microck: the kind of utilities most people end up writing anyway (file wrangling, quick summaries, repeatable formatting). Clone once, and Claude picks the right sub-skill automatically. Use it as a starting template before you write your own bespoke skill set.

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

ordinary-claude-skill.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": {
    "ordinary-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Microck/ordinary-claude-skills",
        "~/.claude/skills/ordinary-claude-skills"
      ],
      "_inferred": true
    }
  }
}

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "ordinary-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Microck/ordinary-claude-skills",
        "~/.claude/skills/ordinary-claude-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": {
    "ordinary-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Microck/ordinary-claude-skills",
        "~/.claude/skills/ordinary-claude-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": {
    "ordinary-claude-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/Microck/ordinary-claude-skills",
        "~/.claude/skills/ordinary-claude-skills"
      ],
      "_inferred": true
    }
  }
}

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

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

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

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

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

claude mcp add ordinary-claude-skill -- git clone https://github.com/Microck/ordinary-claude-skills ~/.claude/skills/ordinary-claude-skills

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

Cas d'usage

Usages concrets : ordinary-claude-skills

Use a general-purpose skill bundle as your default toolkit

👤 Anyone starting with Claude Skills who doesn't want to author from scratch ⏱ ~10 min beginner

Quand l'utiliser : You just installed Claude Code and want something useful loaded before you build your own skills.

Prérequis
  • Claude Code or any Agent-Skills-compatible client — Install Claude Code from claude.ai
Déroulement
  1. Clone into the skills directory
    git clone https://github.com/Microck/ordinary-claude-skills ~/.claude/skills/ordinary-claude-skills✓ Copié
    → Directory populated with SKILL.md files
  2. Let the skill auto-activate on matching requests
    Ask whatever everyday thing you need — Claude should pick up the right sub-skill when relevant.✓ Copié
    → Claude references the skill name or its patterns
  3. Fork and customize
    Copy the sub-skill you like into your own repo and edit SKILL.md to match your workflow.✓ Copié
    → You have a personal skill bundle shaped like this one

Résultat : A working, broadly useful skill bundle installed — with a template you can extend.

Pièges
  • Too many skills active bloats the context window — Remove sub-skills you don't use — each SKILL.md is opt-in by presence
Combiner avec : filesystem

Use this repo as a template to author your own skills

👤 Developers writing their first SKILL.md ⏱ ~30 min beginner

Quand l'utiliser : You want to ship a skill but don't know the file layout or frontmatter format.

Déroulement
  1. Read one of the sub-skills
    Open ordinary-claude-skills and pick the smallest SKILL.md. Explain its structure.✓ Copié
    → Frontmatter + name + description + body sections called out
  2. Adapt to your domain
    Clone the shape but rewrite the description and examples for <your domain>.✓ Copié
    → A new SKILL.md tailored to your topic

Résultat : A first draft of your own skill using a known-good layout.

Pièges
  • Copying the frontmatter but leaving Microck's name/description — Update name and description — Claude uses description to decide when to activate

Combinaisons

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

ordinary-claude-skill + filesystem

Sub-skills that deal with files need filesystem access to actually edit

Use the formatting skill on every .md file under docs/ and save the results back.✓ Copié
ordinary-claude-skill + skill-optimizer-skill

Run skill-optimizer on this bundle to see which sub-skills are actually firing

Analyze my ordinary-claude-skills dir and tell me which sub-skills have never activated.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
general-purpose helpers varies per sub-skill Claude auto-selects based on the request 0
skill-authoring template your domain description You're about to write your own skill 0

Coût et limites

Coût d'exécution

Quota d'API
none
Tokens par appel
each active sub-skill adds a few hundred to a few thousand tokens
Monétaire
free
Astuce
Delete sub-skills you don't use — Claude loads all SKILL.md descriptions on startup

Sécurité

Permissions, secrets, portée

Stockage des identifiants : none
Sortie de données : none — local markdown skills

Dépannage

Erreurs courantes et correctifs

Skills don't appear to load

Make sure each sub-skill is its own directory under ~/.claude/skills/ with a SKILL.md at the root.

Vérifier : find ~/.claude/skills -name SKILL.md
Wrong sub-skill activates

Tighten the description frontmatter so it only matches the intended queries.

Alternatives

ordinary-claude-skills vs autres

AlternativeQuand l'utiliserCompromis
awesome-claude-skillYou want a curated list rather than an installable bundleIndex vs installable; you still have to pick and clone items
claude-code-skill-factory-skillYou want a generator that writes new skills for youMore opinionated, less 'read and copy'

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills