extraction-proposer
Scan ICE-Crawler extraction logs, pick promising algorithms/tools, and emit skill creation proposals (name, scope, source files, next steps).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scan ICE-Crawler extraction logs, pick promising algorithms/tools, and emit skill creation proposals (name, scope, source files, next steps).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Automate ICE-Crawler ingestion → registry update → proposal stub creation. Use when you want a full harvest loop that ends with a ready-to-review skill idea.
Run ICE-Crawler’s Frost→Glacier→Crystal pipeline to ingest repositories safely, emit bounded artifact bundles, and hand off sealed fossils for downstream agents.
基于 SOC 职业分类
| name | extraction-proposer |
| description | Scan ICE-Crawler extraction logs, pick promising algorithms/tools, and emit skill creation proposals (name, scope, source files, next steps). |
Use this skill after ICE-Crawler runs to convert harvested fossils into concrete skill proposals. It expects the extraction registry under ../ice-crawler-harvester/extractions (relative to this skill folder) and writes proposal specs under proposals/.
Reference: references/registry-workflow.md
extractions/index.jsonl.extractions/<repo-slug>/SUMMARY.md (preferred) with code pointers.Review registry
extractions/index.jsonl to find recent entries. Use jq or Python to filter by tags, repo, or notable files.SUMMARY.md files for algorithm descriptions and code paths.Select a candidate
state/runs/<run_id>) and manifest path for provenance.Extract details
artifact_manifest.json (or the trimmed subset copied into extractions/<slug>/).Create a proposal
proposals/<candidate>.json (create proposals/ if missing):{
"ts": "2026-02-24T16:40:00Z",
"skill_name": "triadic-selector",
"description": "Deterministic triadic-balanced file selector for repository harvesting pipelines.",
"source_repo": "https://github.com/...",
"run_dir": "state/runs/run_20260224_113500",
"manifest": "state/runs/run_20260224_113500/artifact_manifest.json",
"notable_files": ["engine/glacier_selector.py", "docs/triadic_strategy.md"],
"summary_path": "extractions/triadic-selector/SUMMARY.md",
"proposed_skill_structure": {
"SKILL.md": ["workflow", "parameters", "safety"],
"references/triadic.md": ["derivation", "examples"],
"scripts/selector_demo.py": "optional CLI"
},
"next_actions": [
"Copy selector code into scripts/",
"Write SKILL.md instructions",
"Add references"
]
}
Hand off
skill-creator (or manual process) to implement the actual skill described.extractions/<repo-slug>/SUMMARY.md with the proposal link so the registry stays synchronized.This skill ensures every ICE-Crawler extraction can graduate into a reusable capability with clean provenance.