一键导入
scrape-and-load
Run the Wookieepedia scraper, convert data, load into SQLite, and verify with migration and full tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the Wookieepedia scraper, convert data, load into SQLite, and verify with migration and full tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | scrape-and-load |
| description | Run the Wookieepedia scraper, convert data, load into SQLite, and verify with migration and full tests. |
| disable-model-invocation | true |
Run the full data pipeline sequentially from the cap/ directory.
Scrape Star Wars data
cd cap && npm run scrape
Uses committed cache by default (fast). If the user requests --bypass-cache, ask for explicit confirmation first, then run npm run scrape:bypass-cache instead.
Build CDS artifacts
cd cap && npm run build
Load fixture data into SQLite
cd cap && npm run load_sqlite
Run migration tests
cd cap && npm run test:migration
Verifies data conversion logic and report generation.
Run full test suite
cd cap && npm test
Rebuild CDS artifacts, reload SQLite fixture data, and run the full test suite. Use after schema or service changes.
Use for end-to-end CAP change workflows: modify CDS/handlers, regenerate artifacts, and run a short verification checklist for this repository.