/ Verzeichnis / Playground / ordinary-claude-skills
● Community Microck ⚡ Sofort

ordinary-claude-skills

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

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

ordinary-claude-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren 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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die 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
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.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 nutzt ein Array von Serverobjekten statt einer 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"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: 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

Wann einsetzen: You just installed Claude Code and want something useful loaded before you build your own skills.

Voraussetzungen
  • Claude Code or any Agent-Skills-compatible client — Install Claude Code from claude.ai
Ablauf
  1. Clone into the skills directory
    git clone https://github.com/Microck/ordinary-claude-skills ~/.claude/skills/ordinary-claude-skills✓ Kopiert
    → 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.✓ Kopiert
    → 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.✓ Kopiert
    → You have a personal skill bundle shaped like this one

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

Fallstricke
  • Too many skills active bloats the context window — Remove sub-skills you don't use — each SKILL.md is opt-in by presence
Kombinieren mit: filesystem

Use this repo as a template to author your own skills

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

Wann einsetzen: You want to ship a skill but don't know the file layout or frontmatter format.

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

Ergebnis: A first draft of your own skill using a known-good layout.

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

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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.✓ Kopiert
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.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
none
Tokens pro Aufruf
each active sub-skill adds a few hundred to a few thousand tokens
Kosten in €
free
Tipp
Delete sub-skills you don't use — Claude loads all SKILL.md descriptions on startup

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: none
Datenabfluss: none — local markdown skills

Fehlerbehebung

Häufige Fehler und Lösungen

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.

Prüfen: find ~/.claude/skills -name SKILL.md
Wrong sub-skill activates

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

Alternativen

ordinary-claude-skills vs. andere

AlternativeWann stattdessenKompromiss
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'

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen