用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vibeeval/vibecosystem --skill harvest-deep-crawl命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Claude Code CLI commands, flags, headless mode, and automation patterns
OpenAI Codex CLI + Claude Code (Hizir) birlikte kullanim rehberi. Is dagitim pattern'leri, GitHub Actions workflow ornekleri, review dongusu ve iki AI yazilim asistaninin guclu yanlarini birlestiren orchestration stratejileri.
Meta-skill for internal codebase exploration at varying depths (quick/deep/architecture)
基于 SOC 职业分类
正在显示 SKILL.md
| name | harvest-deep-crawl |
| description | Multi-page deep crawling - documentation sites, wikis, knowledge bases |
| allowed-tools | ["Bash","Read","Write","WebFetch","WebSearch"] |
| keywords | ["crawl","deep","multi-page","documentation","wiki","site","knowledge-base","depth"] |
Crawl multi-page websites following internal links to a specified depth. Ideal for building complete knowledge bases from documentation sites, wikis, and reference materials.
/crawl <url> --depth <N>
# Crawl docs site 3 levels deep
/crawl https://docs.example.com --depth 3
# Crawl a specific section
/crawl https://docs.example.com/api --depth 2
# Crawl with page limit
/crawl https://wiki.example.com --depth 5 --max-pages 50
| Param | Default | Description |
|---|---|---|
--depth | 2 | Max link-following depth |
--max-pages | 100 | Max pages to crawl |
--same-domain | true | Stay on same domain |
--include | * | URL pattern to include |
--exclude | - | URL pattern to exclude |
.claude/cache/agents/harvest/crawl-{domain}/crawl-{domain}-{timestamp}/
index.md # Table of contents + summary
page-001.md # First page content
page-002.md # Second page content
...
metadata.json # Crawl stats, URLs, timings
curl -s http://localhost:11235/crawl \
-H "Content-Type: application/json" \
-d '{
"urls": ["https://docs.example.com"],
"max_depth": 3,
"same_domain": true,
"word_count_threshold": 50
}'
When Docker unavailable:
| Scenario | Depth | Max Pages |
|---|---|---|
| API reference | 2-3 | 50 |
| Full documentation site | 3-5 | 100 |
| Wiki section | 2 | 30 |
| Changelog history | 1-2 | 20 |
| Tutorial series | 2-3 | 30 |