/ Diretório / Playground / ordinary-claude-skills
● Comunidade Microck ⚡ Instantâneo

ordinary-claude-skills

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

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

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

Instalar

Escolha seu cliente

~/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
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um 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"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: 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

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

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

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

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

Use this repo as a template to author your own skills

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

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

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

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

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

Combinações

Combine com outros MCPs para 10× de alavancagem

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

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
none
Tokens por chamada
each active sub-skill adds a few hundred to a few thousand tokens
Monetário
free
Dica
Delete sub-skills you don't use — Claude loads all SKILL.md descriptions on startup

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: none
Saída de dados: none — local markdown skills

Solução de problemas

Erros comuns e correções

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.

Verificar: find ~/.claude/skills -name SKILL.md
Wrong sub-skill activates

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

Alternativas

ordinary-claude-skills vs. outros

AlternativaQuando usarTroca
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'

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills