gitcrawl
Use for local GitHub issue/PR archive search, sync freshness, clusters, durable maintainer triage, handoff to Octopool-backed gh reads, and Gitcrawl repo/release work.
DeepseekModel
官方收录技能
质量 优秀 · 78
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=openclaw-gitcrawl-agents-skills-gitcrawl-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name gitcrawl description Use for local GitHub issue/PR archive search, sync freshness, clusters, durable maintainer triage, handoff to Octopool-backed gh reads, and Gitcrawl repo/release work. Gitcrawl Use local archive data first for GitHub issue and pull request questions. Browse or hit live GitHub APIs only when the local archive is stale, missing the requested scope, or the user asks for current external context. Sources Config: resolve with gitcrawl doctor --json ; fresh macOS installs default to ~/Library/Application Support/gitcrawl/config.toml , while Linux honors ${XDG_CONFIG_HOME:-~/.config}/gitcrawl/config.toml DB: resolve with gitcrawl doctor --json ; fresh macOS installs default to ~/Library/Application Support/gitcrawl/gitcrawl.db , while Linux honors ${XDG_DATA_HOME:-~/.local/share}/gitcrawl/gitcrawl.db ; portable-store installs may point at a configured store database instead of the default local DB Cache: resolve with gitcrawl init --json for new installs or from cache_dir in config; fresh macOS installs default to ~/Library/Caches/gitcrawl , while Linux honors ${XDG_CACHE_HOME:-~/.cache}/gitcrawl Vectors: resolve with gitcrawl init --json for new installs or from vector_dir in config; fresh macOS installs default to ~/Library/Application Support/gitcrawl/vectors , while Linux honors ${XDG_DATA_HOME:-~/.local/share}/gitcrawl/vectors Legacy installs may still resolve config, database, cache, vectors, and logs under ~/.config/gitcrawl/ ; check the active config before assuming a migrated path. Repo: openclaw/gitcrawl ; on ClawSweeper this is checked out at ~/clawsweeper-workspace/gitcrawl Preferred CLI: gitcrawl ; fallback to go run ./cmd/gitcrawl from a verified repo checkout if the installed binary is stale Freshness For recent/current questions, check freshness before analysis: gitcrawl doctor --json Routine refresh: gitcrawl doctor gitcrawl refresh owner/repo Targeted refresh: gitcrawl sync owner/repo --numbers 123,456 --with pr-details --with pr-details hydrates PR files, commits, checks, workflow runs, and review-thread resolution state in the local archive. Use it when the review needs those details; it does not populate Octopool's separate gh cache. For agent-driven discovery, prefer bounded freshness: gitcrawl search issues "query" -R owner/repo --state open --sync-if-stale 5m --json number,title,url Query Workflow Resolve scope: owner/repo, issue/PR number, cluster id, keyword, label, author, state, or date range. Check freshness for recent/current requests. Use CLI for normal reads; use read-only SQL for precise counts/rankings. Report absolute date spans, repo names, issue/PR numbers, cluster ids, and known gaps. Common commands: gitcrawl search issues "query" -R owner/repo --state open --json number,title,url gitcrawl clusters owner/repo -- sort size --min-size 5 gitcrawl cluster-detail owner/repo -- id < id > gitcrawl threads owner/repo --numbers 123 --include-closed --json For an exact PR, read the archive with threads first. --include-closed keeps closed or merged candidates in scope; archive state is not proof of current GitHub state. Then use bare PATH gh for fresh metadata when needed, including before final merge/comment decisions: gh pr view 123 -R owner/repo --json number,title,state,url,isDraft,headRefName,headRefOid Drill down into checks only when needed: gh pr checks 123 -R owner/repo --json name,state,bucket, link Keep the existing Octopool-backed gh shim and use narrow JSON field lists so supported reads share its cache. Native gh uses headRefName / headRefOid for PR refs and bucket / link for check classification and URLs, not the old Gitcrawl field names. gitcrawl gh is removed and exits 2 with a migration note. Do not retry its status , view , or checks recipes, pass its --live / --cached flags to gh , or rebuild an older Gitcrawl to recover that cache. This is a command migration, not an authentication failure: do not run octopool login , change tokens, auth, PATH, or config, or bypass the existing shim to repair it. See the gh migration guide for ownership and first-time setup. SQL gitcrawl does not currently expose a first-class sql command. For exact local archive counts or rankings, use SQLite read-only mode against the configured DB and prefer CLI commands for normal reads. Useful examples: db= " $(gitcrawl doctor --json | jq -r .db_path) " sqlite3 - readonly " $db " \ "select count(*) as threads from threads;" sqlite3 - readonly " $db " \ "select r.full_name, count(*) as threads from threads t join repositories r on r.id = t.repo_id group by r.full_name order by threads desc limit 20;" sqlite3 - readonly " $db " \ "select state, count(*) as threads from threads group by state;" Do not run mutating SQL against the archive. Use local maintainer commands for overrides instead of writing database rows directly. When the installed CLI lacks a new feature, build or run from a verified openclaw/gitcrawl checkout before concluding the feature is missing. Maintainer Boundaries close-thread , close-cluster , exclusions, and canonical-member choices are local maintainer overrides; they do not write back to GitHub. Use bare PATH gh for authorized GitHub writes; Octopool handles fallback to the real CLI. Gitcrawl no longer owns the gh shim or its configuration. Verification For repo edits, prefer existing Go gates: GOWORK=off go test ./... Then run targeted CLI smoke for the touched surface, for example: gitcrawl doctor --json gitcrawl status --json gitcrawl search issues "test" -R openclaw/gitcrawl --state open -- limit 5 gitcrawl threads owner/repo --numbers 123 --include-closed --json gh pr view 123 -R owner/repo --json number,title,state,url,headRefOid
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |