Agent Skills: DeepWiki

>

UncategorizedID: trancong12102/pi-skills/deepwiki

Install this agent skill to your local

pnpm dlx add-skill https://github.com/trancong12102/pi-skills/tree/HEAD/deepwiki

Skill Files

Browse the full folder contents for deepwiki.

Download Skill

Loading file tree…

deepwiki/SKILL.md

Skill Metadata

Name
deepwiki
Description
>

DeepWiki

Overview

The DeepWiki skill uses the mcporter CLI to query DeepWiki’s public repository documentation endpoint. Suitable for exploring a GitHub repo: listing documentation topics, reading documentation content, and asking questions about the codebase.

Endpoint:

https://mcp.deepwiki.com/mcp

Workflow

Step 1: Inspect tool signatures

List available tools and their parameters:

bunx mcporter list https://mcp.deepwiki.com/mcp --all-parameters

Step 2: List documentation topics

bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
  repoName:owner/repo

Parameters:

  • repoName (required): GitHub repository in owner/repo format.

Step 3: Read documentation content

bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
  repoName:owner/repo

Parameters:

  • repoName (required): GitHub repository in owner/repo format.

Step 4: Ask a repo question

bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
  repoName:owner/repo \
  question:"How does the routing layer work?"

Parameters:

  • repoName (required): GitHub repository in owner/repo format.
  • question (required): The question to answer about the repo.

Examples

List topics for React

bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_structure \
  repoName:facebook/react

Read documentation for React

bunx mcporter call https://mcp.deepwiki.com/mcp.read_wiki_contents \
  repoName:facebook/react

Ask a question about React

bunx mcporter call https://mcp.deepwiki.com/mcp.ask_question \
  repoName:facebook/react \
  question:"How is the rendering pipeline structured?"

Tips

  • Always start with mcporter list to confirm parameter names and defaults.
  • Use precise, repo-specific questions for better answers.
  • Only public GitHub repositories are supported.
DeepWiki Skill | Agent Skills