技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 9 · 6.3k · 56 current installs · 63 all-time installs
⭐ 9
安装量(当前) 63
🛡 VirusTotal :良性 · OpenClaw :良性
Package:arun-8687/deepwiki
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions match its description: it simply opens an SSE connection to mcp.deepwiki.com and posts JSON-RPC tool calls to query public GitHub repo docs — no broad system access or unexplained credentials are requested.
目的
The skill claims to query the DeepWiki MCP server for repository documentation and the included script implements exactly that (SSE -> receive endpoint -> POST JSON-RPC). No unrelated binaries, env vars, or config paths are requested.
说明范围
The SKILL.md instructs running the included Node script. The script only reads command-line args and network I/O to https://mcp.deepwiki.com (SSE and POST). It does not read files, environment variables, or other system state. However, any question text and repo name you pass will be transmitted to the remote service — so this skill sends user-provided data externally as intended.
安装机制
No install spec; the skill is instruction-only with a small embedded script. Nothing is downloaded or written during install, minimizing install-time risk.
证书
The skill requires no environment variables, credentials, or config paths. That is proportionate to its stated purpose. Be aware that the runtime will transmit input strings (repo and question/path) to the remote server.
持久
The skill does not request persistent presence (always: false) and does not modify other skills or system configurations. It runs only when invoked.
综合结论
This skill is coherent and small, but it contacts an external host (mcp.deepwiki.com) and will transmit whatever repo names and question text you provide. Do not use it with private or sensitive repository names, secrets, or policy-sensitive queries unless you trust the DeepWiki service and its privacy policy. If you need greater assurance, review the upstream project or service (the provided homepage) and consider running the script in a netw…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「DeepWiki」。简介:Query the DeepWiki MCP server for GitHub repository documentation, wiki structu…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/arun-8687/deepwiki/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: deepwiki
description: Query the DeepWiki MCP server for GitHub repository documentation, wiki structure, and AI-powered questions.
homepage: https://docs.devin.ai/work-with-devin/deepwiki-mcp
---
# DeepWiki
Use this skill to access documentation for public GitHub repositories via the DeepWiki MCP server. You can search repository wikis, get structure, and ask complex questions grounded in the repository's documentation.
## Commands
### Ask Question
Ask any question about a GitHub repository and get an AI-powered, context-grounded response.
```bash
node ./scripts/deepwiki.js ask <owner/repo> "your question"
```
### Read Wiki Structure
Get a list of documentation topics for a GitHub repository.
```bash
node ./scripts/deepwiki.js structure <owner/repo>
```
### Read Wiki Contents
View documentation about a specific path in a GitHub repository's wiki.
```bash
node ./scripts/deepwiki.js contents <owner/repo> <path>
```
## Examples
**Ask about Devin's MCP usage:**
```bash
node ./scripts/deepwiki.js ask cognitionlabs/devin "How do I use MCP?"
```
**Get the structure for the React docs:**
```bash
node ./scripts/deepwiki.js structure facebook/react
```
## Notes
- Base Server: `https://mcp.deepwiki.com/mcp`
- Works for public repositories only.
- No authentication required.