{"id":"3fa607c7-4144-449a-92e2-7f7cadaae6d3","shortId":"zvupUX","kind":"skill","title":"skill-seekers-ref","tagline":"Convert documentation, GitHub repos, PDFs, codebases, videos, and more into structured AI skills using the skill-seekers CLI. Use this skill whenever the user wants to create an AI skill from any knowledge source, scrape docs into a skill, analyze a codebase for patterns, enhance","description":"# Skill Seekers\n\nSkill Seekers converts documentation, GitHub repos, PDFs, codebases, videos, and 10+ other source types into structured AI skills. One command takes a source and produces a platform-ready skill package.\n\nInstall: `pip install skill-seekers`\n\n## Core Concept\n\nThe pipeline is: **Source -> Extract -> Analyze -> Organize -> (Enhance) -> Package**\n\nThe `create` command handles the full pipeline automatically by detecting source type from the input:\n\n```bash\n# URL -> docs scraping\nskill-seekers create https://react.dev --target claude\n\n# owner/repo -> GitHub scraping\nskill-seekers create facebook/react --target claude\n\n# ./path -> local codebase analysis\nskill-seekers create ./my-project --target claude\n\n# file.pdf -> PDF extraction\nskill-seekers create ./manual.pdf --target claude\n```\n\n## Quick Start\n\n```bash\n# Create a skill from docs (simplest case)\nskill-seekers create https://tailwindcss.com/docs --target claude --max-pages 50\n\n# With AI enhancement (much higher quality)\nskill-seekers create https://tailwindcss.com/docs --target claude --max-pages 50 --enhance-workflow default\n\n# Upload to Claude\nskill-seekers upload output/tailwindcss-claude.zip --target claude\n\n# Or install directly to an agent's directory\nskill-seekers install-agent output/tailwindcss/ --agent claude\n```\n\n## Presets for Speed Control\n\nThe `-p` flag controls analysis depth:\n\n| Preset | Time | When to Use |\n|--------|------|-------------|\n| `-p quick` | 1-2 min | Prototyping, testing the pipeline |\n| `-p standard` | 5-10 min | Default, good balance |\n| `-p comprehensive` | 20-60 min | Production skills, deep analysis |\n\n```bash\nskill-seekers create https://docs.astral.sh/ruff --target claude -p quick\n```\n\n## Source Types\n\n### Documentation Websites\n\n```bash\nskill-seekers create https://react.dev --target claude --max-pages 100\n\n# With parallel workers for speed\nskill-seekers scrape --url https://react.dev --workers 5 --async\n\n# Resume interrupted scrape\nskill-seekers resume --list\nskill-seekers resume <job-id>\n```\n\nThe scraper checks for `llms.txt` first (10x faster when available), then falls back to BFS page crawling.\n\n### GitHub Repositories\n\n```bash\nskill-seekers create microsoft/TypeScript --target claude\n\n# With local clone for unlimited analysis (bypasses API limits)\nskill-seekers github --repo django/django --local-repo-path ./django-clone\n\n# Skip issues/changelog to speed up\nskill-seekers github --repo owner/repo --no-issues --no-changelog\n```\n\nSet a GitHub token for private repos and higher rate limits:\n```bash\nskill-seekers config --github\n```\n\n### Local Codebases (C3.x Analysis)\n\nAnalyzes code patterns, architecture, tests, and config across 27+ languages:\n\n```bash\nskill-seekers analyze --directory ./my-project --preset standard\n\n# Skip specific analysis phases\nskill-seekers analyze --directory ./src --skip-patterns --skip-test-examples\n```\n\nC3.x detects: design patterns (Singleton, Factory, Observer...), test examples, config patterns (9 formats), architecture (MVC, MVVM...), and generates how-to guides.\n\n### PDFs\n\n```bash\nskill-seekers create ./handbook.pdf --target claude\nskill-seekers pdf --pdf ./manual.pdf --name \"product-manual\"\n```\n\nSupports OCR for scanned documents.\n\n### Other Sources\n\nEach has a dedicated subcommand with specific options:\n\n| Source | Command | Key Flags |\n|--------|---------|-----------|\n| Word docs | `skill-seekers word --docx file.docx` | |\n| EPUB books | `skill-seekers epub --epub file.epub` | |\n| Videos/YouTube | `skill-seekers video --url URL` | `--visual`, `--whisper-model` |\n| Jupyter notebooks | `skill-seekers jupyter --notebook file.ipynb` | |\n| OpenAPI specs | `skill-seekers openapi --spec spec.yaml` | `--spec-url URL` |\n| PowerPoint | `skill-seekers pptx` | |\n| HTML files | `skill-seekers html` | |\n| RSS feeds | `skill-seekers rss` | |\n| Man pages | `skill-seekers manpage` | |\n| Confluence | `skill-seekers confluence` | |\n| Notion | `skill-seekers notion` | |\n| Slack/Discord | `skill-seekers chat --platform slack` | `--channel`, `--max-messages` |\n| AsciiDoc | `skill-seekers asciidoc` | |\n\n### Multi-Source (Unified)\n\nCombine docs + GitHub + PDF into one skill using a config file:\n\n```bash\nskill-seekers unified --config configs/my-project.json\n```\n\nConfig file format - see `references/config-and-workflows.md`.\n\n## AI Enhancement\n\nEnhancement transforms raw extraction (quality ~3/10) into polished skills (~9/10). It uses AI to extract best practices, create quick references, and improve organization.\n\n### Local Enhancement (Free with Claude Code)\n\n```bash\nskill-seekers enhance output/my-skill/\nskill-seekers enhance output/my-skill/ --background   # non-blocking\nskill-seekers enhance output/my-skill/ --daemon        # survives terminal close\nskill-seekers enhance-status output/my-skill/          # check progress\n```\n\n### API Enhancement\n\n```bash\nexport ANTHROPIC_API_KEY=sk-ant-...\nskill-seekers enhance output/my-skill/ --target claude\n\n# Or Gemini / OpenAI\nexport GOOGLE_API_KEY=AIzaSy...\nskill-seekers enhance output/my-skill/ --target gemini\n```\n\n### Enhancement Workflows (v3.1.0+)\n\nWorkflow presets apply specific enhancement strategies:\n\n```bash\n# Built-in presets\nskill-seekers enhance output/my-skill/ --enhance-workflow default\nskill-seekers enhance output/my-skill/ --enhance-workflow security-focus\nskill-seekers enhance output/my-skill/ --enhance-workflow api-documentation\nskill-seekers enhance output/my-skill/ --enhance-workflow architecture-comprehensive\nskill-seekers enhance output/my-skill/ --enhance-workflow minimal\n\n# Chain multiple workflows\nskill-seekers create URL --enhance-workflow security-focus --enhance-workflow minimal\n\n# Inline custom stage\nskill-seekers create URL --enhance-stage 'perf:Analyze for performance bottlenecks'\n\n# List / manage workflows\nskill-seekers workflows list\nskill-seekers workflows show security-focus\nskill-seekers workflows copy default    # copy to ~/.config/skill-seekers/workflows/ for editing\nskill-seekers workflows add ./my-workflow.yaml\nskill-seekers workflows validate my-workflow\n```\n\nSee `references/config-and-workflows.md` for custom workflow YAML format.\n\n## Output Formats and Packaging\n\nPackage skills for 16+ platforms:\n\n```bash\n# Package for a specific platform\nskill-seekers package output/my-skill/ --target claude\nskill-seekers package output/my-skill/ --target gemini\nskill-seekers package output/my-skill/ --target cursor\nskill-seekers package output/my-skill/ --target openai\n\n# Upload directly\nskill-seekers upload output/my-skill.zip --target claude\n\n# Install to agent directory\nskill-seekers install-agent output/my-skill/ --agent claude\nskill-seekers install-agent output/my-skill/ --agent cursor\nskill-seekers install-agent output/my-skill/ --agent all\n```\n\n**Supported targets:**\n- AI platforms: `claude`, `gemini`, `openai`\n- Coding assistants: `cursor`, `windsurf`, `cline`, `continue`\n- RAG/vector: `langchain`, `llamaindex`, `chroma`, `faiss`, `haystack`, `qdrant`, `weaviate`, `pinecone`\n- Generic: `markdown`, `json`, `yaml`\n\n### RAG Chunking\n\nFor vector database targets, enable semantic chunking:\n\n```bash\nskill-seekers package output/my-skill/ --target chroma --chunk-for-rag --chunk-tokens 512 --chunk-overlap-tokens 50\n```\n\n## Complete Workflow (install command)\n\nThe `install` command runs the full pipeline: fetch -> scrape -> enhance -> package -> upload:\n\n```bash\nskill-seekers install --config configs/react.json\nskill-seekers install --config react --no-upload    # skip upload step\nskill-seekers install --config react --dry-run      # preview only\n```\n\n## Quality Scoring\n\nCheck skill quality before shipping:\n\n```bash\nskill-seekers quality output/my-skill/\nskill-seekers quality output/my-skill/ --report --threshold 7\n```\n\n## Utility Commands\n\n```bash\n# Estimate page count before scraping\nskill-seekers estimate configs/react.json\n\n# Incremental update (no full rescrape)\nskill-seekers update output/my-skill/ --check-changes\nskill-seekers update output/my-skill/ --force\n\n# Stream large files chunk by chunk\nskill-seekers stream large-doc.md --output output/\n\n# Configure tokens and API keys\nskill-seekers config --show\nskill-seekers config --github\nskill-seekers config --api-keys\nskill-seekers config --test\n```\n\n## Common Patterns\n\n### \"I want to create a skill from X docs quickly\"\n\n```bash\nskill-seekers create https://docs.example.com --target claude -p quick --max-pages 30\n```\n\n### \"I want a production-quality skill\"\n\n```bash\nskill-seekers create https://docs.example.com --target claude -p comprehensive --enhance-workflow default\n```\n\n### \"I want to analyze my local codebase\"\n\n```bash\nskill-seekers analyze --directory ./my-project --preset comprehensive\nskill-seekers enhance output/my-project/\nskill-seekers install-agent output/my-project/ --agent claude\n```\n\n### \"I want skills for multiple platforms\"\n\n```bash\nskill-seekers create https://docs.example.com -o output/my-skill\nskill-seekers package output/my-skill/ --target claude\nskill-seekers package output/my-skill/ --target cursor\nskill-seekers package output/my-skill/ --target chroma --chunk-for-rag\n```\n\n### \"I want to keep skills up to date automatically\"\n\nUse CI/CD with the `install` command - see `references/automation.md`.\n\n## Reference Files\n\nFor detailed information on specific topics:\n- `references/cli-commands.md` - Full CLI reference with all flags for every command\n- `references/config-and-workflows.md` - Config file schema, unified configs, custom workflow YAML format\n- `references/config-examples.md` - Ready-to-use config examples for common frameworks\n- `references/automation.md` - CI/CD integration, Docker, batch processing","tags":["skill","seekers","ref","skills","tenequm","agent-skills","ai-agents","claude-code","claude-skills","clawhub","erc-8004","mpp"],"capabilities":["skill","source-tenequm","skill-skill-seekers-ref","topic-agent-skills","topic-ai-agents","topic-claude-code","topic-claude-skills","topic-clawhub","topic-erc-8004","topic-mpp","topic-openclaw","topic-skills","topic-solana","topic-x402"],"categories":["skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/tenequm/skills/skill-seekers-ref","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add tenequm/skills","source_repo":"https://github.com/tenequm/skills","install_from":"skills.sh"}},"qualityScore":"0.461","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 23 github stars · SKILL.md body (9,653 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T01:01:40.685Z","embedding":null,"createdAt":"2026-04-18T23:05:25.010Z","updatedAt":"2026-04-22T01:01:40.685Z","lastSeenAt":"2026-04-22T01:01:40.685Z","tsv":"'-10':258 '-2':249 '-60':266 '/.config/skill-seekers/workflows':849 '/django-clone':372 '/docs':174,193 '/handbook.pdf':475 '/manual.pdf':155,483 '/my-project':145,427,1211 '/my-workflow.yaml':857 '/path':137 '/ruff':279 '/src':439 '1':248 '10':63 '100':299 '10x':332 '16':880 '20':265 '27':419 '3/10':637 '30':1176 '5':257,312 '50':180,199,1011 '512':1006 '7':1078 '9':458 '9/10':641 'across':418 'add':856 'agent':219,227,229,927,934,936,943,945,952,954,1224,1226 'ai':16,34,69,182,630,644,958 'aizasi':718 'analysi':140,239,271,358,410,432 'analyz':45,97,411,425,437,821,1201,1209 'ant':703 'anthrop':698 'api':360,694,699,716,769,1127,1144 'api-document':768 'api-key':1143 'appli':731 'architectur':414,460,780 'architecture-comprehens':779 'asciidoc':598,602 'assist':964 'async':313 'automat':108,1275 'avail':335 'back':338 'background':672 'balanc':262 'bash':116,160,272,288,345,401,421,470,618,661,696,735,882,991,1028,1065,1081,1163,1184,1205,1234 'batch':1326 'best':647 'bfs':340 'block':675 'book':516 'bottleneck':824 'built':737 'built-in':736 'bypass':359 'c3.x':409,447 'case':167 'chain':791 'chang':1104 'changelog':389 'channel':594 'chat':591 'check':328,692,1060,1103 'check-chang':1102 'chroma':972,998,1262 'chunk':983,990,1000,1004,1008,1114,1116,1264 'chunk-for-rag':999,1263 'chunk-overlap-token':1007 'chunk-token':1003 'ci/cd':1277,1323 'claud':126,136,147,157,176,195,206,213,230,281,295,352,477,659,710,894,924,937,960,1170,1191,1227,1248 'cli':23,1294 'cline':967 'clone':355 'close':684 'code':412,660,963 'codebas':10,47,60,139,408,1204 'combin':607 'command':72,103,504,1015,1018,1080,1281,1301 'common':1151,1320 'complet':1012 'comprehens':264,781,1193,1213 'concept':91 'config':405,417,456,616,623,625,1033,1039,1051,1132,1137,1142,1149,1303,1307,1317 'configs/my-project.json':624 'configs/react.json':1034,1091 'configur':1124 'confluenc':577,581 'continu':968 'control':234,238 'convert':5,55 'copi':845,847 'core':90 'count':1084 'crawl':342 'creat':32,102,123,133,144,154,161,171,190,276,292,349,474,649,797,815,1156,1167,1188,1238 'cursor':908,946,965,1255 'custom':810,869,1308 'daemon':681 'databas':986 'date':1274 'dedic':498 'deep':270 'default':203,260,748,846,1197 'depth':240 'design':449 'detail':1287 'detect':110,448 'direct':216,917 'directori':221,426,438,928,1210 'django/django':367 'doc':41,118,165,508,608,1161 'docker':1325 'docs.astral.sh':278 'docs.astral.sh/ruff':277 'docs.example.com':1168,1189,1239 'document':6,56,286,492,770 'docx':513 'dri':1054 'dry-run':1053 'edit':851 'enabl':988 'enhanc':50,99,183,201,631,632,656,665,670,679,689,695,707,722,726,733,743,746,752,755,763,766,774,777,785,788,800,806,818,1025,1195,1217 'enhance-stag':817 'enhance-status':688 'enhance-workflow':200,745,754,765,776,787,799,805,1194 'epub':515,520,521 'estim':1082,1090 'everi':1300 'exampl':446,455,1318 'export':697,714 'extract':96,150,635,646 'facebook/react':134 'factori':452 'faiss':973 'fall':337 'faster':333 'feed':566 'fetch':1023 'file':560,617,626,1113,1285,1304 'file.docx':514 'file.epub':522 'file.ipynb':541 'file.pdf':148 'first':331 'flag':237,506,1298 'focus':759,804,840 'forc':1110 'format':459,627,872,874,1311 'framework':1321 'free':657 'full':106,1021,1095,1293 'gemini':712,725,901,961 'generat':464 'generic':978 'github':7,57,128,343,365,381,392,406,609,1138 'good':261 'googl':715 'guid':468 'handl':104 'haystack':974 'higher':185,398 'how-to':465 'html':559,564 'improv':653 'increment':1092 'inform':1288 'inlin':809 'input':115 'instal':84,86,215,226,925,933,942,951,1014,1017,1032,1038,1050,1223,1280 'install-ag':225,932,941,950,1222 'integr':1324 'interrupt':315 'issu':386 'issues/changelog':374 'json':980 'jupyt':534,539 'keep':1270 'key':505,700,717,1128,1145 'knowledg':38 'langchain':970 'languag':420 'larg':1112 'large-doc.md':1121 'limit':361,400 'list':321,825,832 'llamaindex':971 'llms.txt':330 'local':138,354,369,407,655,1203 'local-repo-path':368 'man':571 'manag':826 'manpag':576 'manual':487 'markdown':979 'max':178,197,297,596,1174 'max-messag':595 'max-pag':177,196,296,1173 'messag':597 'microsoft/typescript':350 'min':250,259,267 'minim':790,808 'model':533 'much':184 'multi':604 'multi-sourc':603 'multipl':792,1232 'mvc':461 'mvvm':462 'my-workflow':863 'name':484 'no-changelog':387 'no-issu':384 'no-upload':1041 'non':674 'non-block':673 'notebook':535,540 'notion':582,586 'o':1240 'observ':453 'ocr':489 'one':71,612 'openai':713,915,962 'openapi':542,547 'option':502 'organ':98,654 'output':873,1122,1123 'output/my-project':1218,1225 'output/my-skill':666,671,680,691,708,723,744,753,764,775,786,892,899,906,913,935,944,953,996,1070,1075,1101,1109,1241,1246,1253,1260 'output/my-skill.zip':922 'output/tailwindcss':228 'output/tailwindcss-claude.zip':211 'overlap':1009 'owner/repo':127,383 'p':236,246,255,263,282,1171,1192 'packag':83,100,876,877,883,891,898,905,912,995,1026,1245,1252,1259 'page':179,198,298,341,572,1083,1175 'parallel':301 'path':371 'pattern':49,413,442,450,457,1152 'pdf':149,481,482,610 'pdfs':9,59,469 'perf':820 'perform':823 'phase':433 'pinecon':977 'pip':85 'pipelin':93,107,254,1022 'platform':80,592,881,887,959,1233 'platform-readi':79 'polish':639 'powerpoint':554 'pptx':558 'practic':648 'preset':231,241,428,730,739,1212 'preview':1056 'privat':395 'process':1327 'produc':77 'product':268,486,1181 'product-manu':485 'production-qu':1180 'progress':693 'prototyp':251 'qdrant':975 'qualiti':186,636,1058,1062,1069,1074,1182 'quick':158,247,283,650,1162,1172 'rag':982,1002,1266 'rag/vector':969 'rate':399 'raw':634 'react':1040,1052 'react.dev':124,293,310 'readi':81,1314 'ready-to-us':1313 'ref':4 'refer':651,1284,1295 'references/automation.md':1283,1322 'references/cli-commands.md':1292 'references/config-and-workflows.md':629,867,1302 'references/config-examples.md':1312 'repo':8,58,366,370,382,396 'report':1076 'repositori':344 'rescrap':1096 'resum':314,320,325 'rss':565,570 'run':1019,1055 'scan':491 'schema':1305 'score':1059 'scrape':40,119,129,308,316,1024,1086 'scraper':327 'secur':758,803,839 'security-focus':757,802,838 'see':628,866,1282 'seeker':3,22,52,54,89,122,132,143,153,170,189,209,224,275,291,307,319,324,348,364,380,404,424,436,473,480,511,519,526,538,546,557,563,569,575,580,585,590,601,621,664,669,678,687,706,721,742,751,762,773,784,796,814,830,835,843,854,860,890,897,904,911,920,931,940,949,994,1031,1037,1049,1068,1073,1089,1099,1107,1119,1131,1136,1141,1148,1166,1187,1208,1216,1221,1237,1244,1251,1258 'semant':989 'set':390 'ship':1064 'show':837,1133 'simplest':166 'singleton':451 'sk':702 'sk-ant':701 'skill':2,17,21,26,35,44,51,53,70,82,88,121,131,142,152,163,169,188,208,223,269,274,290,306,318,323,347,363,379,403,423,435,472,479,510,518,525,537,545,556,562,568,574,579,584,589,600,613,620,640,663,668,677,686,705,720,741,750,761,772,783,795,813,829,834,842,853,859,878,889,896,903,910,919,930,939,948,993,1030,1036,1048,1061,1067,1072,1088,1098,1106,1118,1130,1135,1140,1147,1158,1165,1183,1186,1207,1215,1220,1230,1236,1243,1250,1257,1271 'skill-seek':20,87,120,130,141,151,168,187,207,222,273,289,305,317,322,346,362,378,402,422,434,471,478,509,517,524,536,544,555,561,567,573,578,583,588,599,619,662,667,676,685,704,719,740,749,760,771,782,794,812,828,833,841,852,858,888,895,902,909,918,929,938,947,992,1029,1035,1047,1066,1071,1087,1097,1105,1117,1129,1134,1139,1146,1164,1185,1206,1214,1219,1235,1242,1249,1256 'skill-seekers-ref':1 'skill-skill-seekers-ref' 'skip':373,430,441,444,1044 'skip-pattern':440 'skip-test-exampl':443 'slack':593 'slack/discord':587 'sourc':39,65,75,95,111,284,494,503,605 'source-tenequm' 'spec':543,548,551 'spec-url':550 'spec.yaml':549 'specif':431,501,732,886,1290 'speed':233,304,376 'stage':811,819 'standard':256,429 'start':159 'status':690 'step':1046 'strategi':734 'stream':1111,1120 'structur':15,68 'subcommand':499 'support':488,956 'surviv':682 'tailwindcss.com':173,192 'tailwindcss.com/docs':172,191 'take':73 'target':125,135,146,156,175,194,212,280,294,351,476,709,724,893,900,907,914,923,957,987,997,1169,1190,1247,1254,1261 'termin':683 'test':252,415,445,454,1150 'threshold':1077 'time':242 'token':393,1005,1010,1125 'topic':1291 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code' 'topic-claude-skills' 'topic-clawhub' 'topic-erc-8004' 'topic-mpp' 'topic-openclaw' 'topic-skills' 'topic-solana' 'topic-x402' 'transform':633 'type':66,112,285 'unifi':606,622,1306 'unlimit':357 'updat':1093,1100,1108 'upload':204,210,916,921,1027,1043,1045 'url':117,309,528,529,552,553,798,816 'use':18,24,245,614,643,1276,1316 'user':29 'util':1079 'v3.1.0':728 'valid':862 'vector':985 'video':11,61,527 'videos/youtube':523 'visual':530 'want':30,1154,1178,1199,1229,1268 'weaviat':976 'websit':287 'whenev':27 'whisper':532 'whisper-model':531 'windsurf':966 'word':507,512 'worker':302,311 'workflow':202,727,729,747,756,767,778,789,793,801,807,827,831,836,844,855,861,865,870,1013,1196,1309 'x':1160 'yaml':871,981,1310","prices":[{"id":"edba6ffb-fdf3-450a-a294-eac91095ed1c","listingId":"3fa607c7-4144-449a-92e2-7f7cadaae6d3","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"tenequm","category":"skills","install_from":"skills.sh"},"createdAt":"2026-04-18T23:05:25.010Z"}],"sources":[{"listingId":"3fa607c7-4144-449a-92e2-7f7cadaae6d3","source":"github","sourceId":"tenequm/skills/skill-seekers-ref","sourceUrl":"https://github.com/tenequm/skills/tree/main/skills/skill-seekers-ref","isPrimary":false,"firstSeenAt":"2026-04-18T23:05:25.010Z","lastSeenAt":"2026-04-22T01:01:40.685Z"}],"details":{"listingId":"3fa607c7-4144-449a-92e2-7f7cadaae6d3","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"tenequm","slug":"skill-seekers-ref","github":{"repo":"tenequm/skills","stars":23,"topics":["agent-skills","ai-agents","claude-code","claude-skills","clawhub","erc-8004","mpp","openclaw","skills","solana","x402"],"license":"mit","html_url":"https://github.com/tenequm/skills","pushed_at":"2026-04-14T16:24:57Z","description":"Agent skills for building, shipping, and growing software products","skill_md_sha":"cf836ea9652e7beeaac9488a6c7cdcfca0c8d6fa","skill_md_path":"skills/skill-seekers-ref/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/tenequm/skills/tree/main/skills/skill-seekers-ref"},"layout":"multi","source":"github","category":"skills","frontmatter":{"name":"skill-seekers-ref","description":"Convert documentation, GitHub repos, PDFs, codebases, videos, and more into structured AI skills using the skill-seekers CLI. Use this skill whenever the user wants to create an AI skill from any knowledge source, scrape docs into a skill, analyze a codebase for patterns, enhance skill quality with AI, package skills for Claude/Gemini/OpenAI/Cursor/RAG platforms, or work with the skill-seekers tool in any capacity. Triggers on \"skill-seekers\", \"create a skill from docs\", \"scrape documentation\", \"convert repo to skill\", \"extract knowledge from PDF\", \"codebase analysis\", \"enhance SKILL.md\", \"package skill for Claude\", \"AI skill creation\", \"skill from YouTube video\", \"RAG skill pipeline\"."},"skills_sh_url":"https://skills.sh/tenequm/skills/skill-seekers-ref"},"updatedAt":"2026-04-22T01:01:40.685Z"}}