What problem does it solve? Turning enterprise SOPs, policy documents, or informal workflow descriptions into reusable agent skills normally requires manual prompt engineering and packaging. This Skill automates the full pipeline: ingesting source material, extracting a structured SOP representation, drafting a standards-compliant SKILL.md package, and installing it into the runtime skills directory in the same session. ## Core Features & Use Cases - Multi-source SOP ingestion: Extract plain text from local files, fetch HTTP(S) or WeChat pages via CLI, or accept pasted text, then run structured LLM extraction into a full SOPStructure (steps, roles, knowledge items, decision points, exceptions, references). - Intent-only fallback with recovery: When no document is available, run a single recovery offer, then build a surrogate SOPStructure via build_intent_fallback_sop with optional LLM enrichment, including an intent-sop-snapshot audit file. - Draft and install in one workflow: Author the new skill under skills-draft/<skill_name> following the generator-worker-spec checklist, then promote it with skills.import_local so it is immediately loadable. - Use Case: A user provides a URL to an expense-approval SOP; the Skill fetches the page, extracts the structured procedure, drafts an executable expense-approval skill with explicit inputs and deliverables, and installs it for immediate use. ## Quick Start Generate and install a new skill from the SOP document at the absolute path I provide, or from this URL.