.agents/skills/deepwiki/SKILL.md
Query any public GitHub repo's documentation via DeepWiki. Use when needing to understand a library, framework, or dependency. Triggers on "look up docs", "how does X work", "deepwiki", "deepwiki".
npx skillsauth add kidow/dongwook.kim deepwikiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Query any public GitHub repo's docs from the terminal via DeepWiki. Assumes Node.js is installed.
| Command | Usage | Description |
|---------|-------|-------------|
| toc | npx @seflless/deepwiki toc <owner/repo> | Table of contents |
| wiki | npx @seflless/deepwiki wiki <owner/repo> | Full wiki content |
| ask | npx @seflless/deepwiki ask <owner/repo> "<question>" | AI-powered Q&A |
| ask | npx @seflless/deepwiki ask <repo1> <repo2> "<question>" | Multi-repo Q&A (max 10) |
| Flag | Purpose |
|------|---------|
| --json | Raw JSON output (good for piping) |
| -q, --quiet | No spinners/progress |
| --no-color | Disable colors |
# Understand a library's structure
npx @seflless/deepwiki toc facebook/react
# Get full docs for reference
npx @seflless/deepwiki wiki oven-sh/bun --json > bun-docs.json
# Ask a specific question
npx @seflless/deepwiki ask anthropics/claude-code "How does the tool permission system work?"
# Cross-project question
npx @seflless/deepwiki ask facebook/react vercel/next.js "How do server components work across these projects?"
--json when you need structured data to parsetoc first to understand what docs exist, then ask for specificsask is great for understanding how libraries interactdevelopment
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
development
Master React, Vue, and Svelte component patterns including CSS-in-JS, composition strategies, and reusable component architecture. Use when building UI component libraries, designing component APIs, or implementing frontend design systems.
development
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
development
Use when implementing any feature or bugfix, before writing implementation code