一键导入
skill-seeker
EXPERIMENTAL — only use when explicitly requested. Generate Claude Code skills from docs sites, GitHub repos, or local codebases using Skill Seekers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
EXPERIMENTAL — only use when explicitly requested. Generate Claude Code skills from docs sites, GitHub repos, or local codebases using Skill Seekers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Markdown task backlog and project roadmap (backlog/{todo,doing,done,failed}/, backlog/ROADMAP.md) for adding, advancing, recording progress, rescuing, cancelling, retrying, failing, maintenance, or reflecting on backlog priorities and roadmap direction.
Write, review, or improve SwiftUI code. Use for SwiftUI features/refactors, state management, view composition, performance, concurrency, modern Apple APIs, or native UI quality.
Work with Claude Code configuration at global (~/.claude) or project (.claude/) level. Use when editing settings.json (permissions, hooks, statusline, model), managing MCP servers, creating agents/commands/skills, writing CLAUDE.md, setting up rules files, or configuring a new project. Determines context automatically and provides guidance on global vs project placement to avoid duplication.
Session continuity for coding work. Default to /chronicle to capture, /chronicle catchup to resume, and /chronicle pending to review open threads. Use curate, recap, wrapup, summarize, publish, insights, search, and ui only when the user explicitly needs them.
Analyze AI coding assistant usage patterns across Claude Code, Codex, and Cursor. Use when user asks about their coding usage, tool statistics, productivity patterns, skill popularity, session history, or wants to query their AI coding logs. Triggers include "usage", "how much have I used", "most used tools", "skill popularity", "coding stats", "productivity patterns".
Fix misaligned right borders in ASCII art diagrams
| name | skill-seeker |
| description | EXPERIMENTAL — only use when explicitly requested. Generate Claude Code skills from docs sites, GitHub repos, or local codebases using Skill Seekers. |
| license | Apache 2.0 |
| disable-model-invocation | true |
| metadata | {"status":"experimental","experimental_reason":"Generated skill quality varies by source corpus and still requires explicit human review before installation."} |
Generate, review, and install Claude Code skills from any documentation source.
Pipeline: Source → Generate → Review → Summarize → Install
Gather inputs from the user:
owner/repo, local directory path, or PDF filehono from https://hono.dev) or askquick — Fast, essential docs only (1-2 min)standard — Balanced coverage (5-10 min)comprehensive — Deep analysis, all features (20-60 min)If the user provides a source inline (e.g., "create a skill for Hono"), infer the source URL/repo and default to standard preset. Confirm before proceeding.
Run the create script. Use a timeout appropriate for the preset — scraping takes real time:
quick: 2 minutesstandard: 10 minutescomprehensive: 60 minutesuv run ~/.claude/skills/skill-seeker/scripts/create.py \
--source "<source>" \
--name "<skill-name>" \
--preset "<preset>" \
--output-dir "/tmp/skill-seeker/<skill-name>"
The script runs skill-seekers create with --enhance-level 0 (Claude handles quality review instead of the keyword-based enhancer). Note the actual output path printed by the script — skill-seekers may nest output in a subdirectory.
On success, read the generated SKILL.md from the path printed by the script. On failure, report the error and suggest trying quick preset or a different source.
Apply a two-lens review to the generated output.
Run the review script:
uv run ~/.claude/skills/skill-seeker/scripts/review.py \
--path "/tmp/skill-seeker/<skill-name>"
Record the JSON output. Flag any warnings.
Read references/quality-checklist.md for the full rubric, then evaluate:
Structure:
name and description?Security:
Quality (rate A/B/C/D):
Context Budget (from review script output):
Value:
Rewrite the generated SKILL.md applying these fixes:
references/ filesWrite the refined SKILL.md and any new reference files back to the output directory.
Run review.py again on the refined output to verify improvements (token budget, warnings resolved).
Present to the user before installing:
Report these fields:
<name>Generate 3-5 test prompts tailored to the skill's content:
## Eval Set: <skill-name>
### Should trigger:
- "<prompt that should activate this skill>"
- "<another prompt that should activate this skill>"
### Should NOT trigger:
- "<prompt about a similar but different topic>"
- "<prompt outside this skill's domain>"
### Knowledge test:
- "<prompt that tests the skill's core, non-obvious knowledge>"
Base these on the actual content of the generated skill, not generic templates. The eval set helps the user regression-test the skill after updates.
After user approval:
uv run ~/.claude/skills/skill-seeker/scripts/install.py \
--source "/tmp/skill-seeker/<skill-name>" \
--target "~/.claude/skills/<skill-name>"
Confirm installation:
<name> installed. Start a new conversation to use it."If the user declines, leave the generated skill in /tmp/skill-seeker/<skill-name> and tell them where to find it.