trancong12102/pi-skills · Archived

deepwiki

Retrieve and explore DeepWiki-generated documentation for public GitHub repositories. Use when listing repository documentation topics, reading DeepWiki pages, or asking focused questions about a codebase that needs current repository structure, architecture notes, or component explanations.

First seen Jan 25, 2026

Installation

$ npx skills add trancong12102/pi-skills --skill deepwiki

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from trancong12102/pi-skills.

npx skills add trancong12102/pi-skills

Browse all from trancong12102/pi-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,302 B
  • docs SUMMARY.md 308 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

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.