/ Verzeichnis / Playground / DSkills
● Community Dianel555 ⚡ Sofort

DSkills

von Dianel555 · Dianel555/DSkills

6 CLI tool skills for AI coders — Grok search, Exa semantic search, sequential thinking, time utilities, Serena code nav, ace-tool prompt enhancement.

A tight collection of 6 skills aimed at giving coding agents (Claude Code, Codex, Gemini CLI) better tool-shaped capabilities: grok-search (Grok API web search), exa (semantic search via Exa), sequential-think (iterative reasoning engine), time (tz utilities), Serena (semantic code navigation), and ace-tool (semantic code search + prompt enhancement).

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

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

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

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

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

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

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

claude mcp add dskills-skill -- git clone https://github.com/Dianel555/DSkills ~/.claude/skills/DSkills

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

Anwendungsfälle

Praxisnahe Nutzung: DSkills

Navigate an unfamiliar codebase like an IDE

👤 Engineers onboarding to a repo ⏱ ~10 min beginner

Wann einsetzen: You inherited a large repo and want to jump to symbol definitions / usages, not grep.

Voraussetzungen
  • Skill installed — git clone https://github.com/Dianel555/DSkills ~/.claude/skills/DSkills
  • Serena MCP — Install Serena MCP server
Ablauf
  1. Activate Serena via DSkills
    Use DSkills Serena — what are the usages of AuthService.login across the repo?✓ Kopiert
    → Symbol-level results, not text grep

Ergebnis: Navigation that feels like a real IDE.

Kombinieren mit: agent-skill-tdd-skill

Reason through a complex design decision iteratively

👤 Engineers on hard design questions ⏱ ~30 min intermediate

Wann einsetzen: The problem isn't amenable to one-shot answers.

Ablauf
  1. Invoke sequential-think
    Use sequential-think. Design question: 'how should we shard our user table across regions?' Work iteratively.✓ Kopiert
    → Steps with self-corrections, not a monolith answer

Ergebnis: A reasoned design path.

Kombinieren mit: swing-skill

Find conceptually similar content with Exa semantic search

👤 Researchers, content strategists ⏱ ~15 min beginner

Wann einsetzen: Keyword search isn't catching what you actually mean.

Voraussetzungen
  • EXA_API_KEY — Get at exa.ai
Ablauf
  1. Run semantic query
    Use DSkills exa — find the 10 most conceptually similar articles to 'graph RAG for enterprise search'.✓ Kopiert
    → Semantically relevant results

Ergebnis: Better research starting points than keyword search.

Reason about timezones without off-by-one errors

👤 Anyone scheduling across regions ⏱ ~5 min beginner

Wann einsetzen: Scheduling a meeting or scheduled job across timezones.

Ablauf
  1. Use time utils
    Convert 9:00 Tokyo Monday to SF local time.✓ Kopiert
    → Correct conversion with DST-awareness

Ergebnis: No more 'wait, is that yesterday?' errors.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

dskills-skill + agent-skill-tdd-skill

Serena through DSkills powers the semantic nav step of TDD

Run agent-skill-tdd with DSkills serena for the investigation phase.✓ Kopiert
dskills-skill + swing-skill

Sequential-think + swing-review for high-stakes decisions

Start with sequential-think; end with swing-review on the output.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
grok-search query Web search Grok API quota
exa query Semantic search Exa API quota
sequential-think problem Hard design problems 0
time tz op Scheduling 0
serena symbol query Code navigation 0
ace-tool prompt or code query Prompt sharpening 0

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Grok + Exa APIs bring their own
Tokens pro Aufruf
Low
Kosten in €
Skill free; APIs separate
Tipp
Prefer Serena (local) for code nav, save Grok/Exa credits for research

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: GROK_API_KEY, EXA_API_KEY in env
Datenabfluss: Queries go to Grok/Exa when those skills are invoked

Fehlerbehebung

Häufige Fehler und Lösungen

Serena returns no results

Reindex; confirm Serena is pointed at the right repo root

Exa 401

EXA_API_KEY missing or wrong

Prüfen: curl https://api.exa.ai/search with the key

Alternativen

DSkills vs. andere

AlternativeWann stattdessenKompromiss
Skills-4-SEYou want 180+ skills not 6 tight onesMore noise

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen