source-manifest
Installation
SKILL.md
Source Manifest
Goal: collect the source candidates for source-tutorial into one explicit manifest before ingest starts.
Inputs
GOAL.mdDECISIONS.md
Outputs
sources/manifest.yml
Workflow
- Read
GOAL.mdand any existingDECISIONS.mdnotes to understand what kinds of sources the tutorial is expected to use. - If
sources/manifest.ymldoes not exist, scaffold it with a minimal example. - Validate that each source has:
source_idkindlocatorlabel- for
kind: video, prefertranscript_locatorunless the platform exposes public subtitles
- Reject placeholder/example-only manifests.
- Return success only when at least one real source exists.
Accepted kind
webpagepdfmarkdownrepodocs_sitevideo
For video:
- preferred: add
transcript_locator - Bilibili may succeed from public subtitles when available
- YouTube should currently be paired with
transcript_locator
Script
Quick Start
python .codex/skills/source-manifest/scripts/run.py --workspace <ws>
All Options
--workspace <dir>(required)--unit-id <U###>--inputs <semicolon-separated>--outputs <semicolon-separated>--checkpoint <C#>
Examples
- Scaffold or validate the manifest:
python .codex/skills/source-manifest/scripts/run.py --workspace <ws>
Troubleshooting
Issue: the unit keeps blocking after scaffold
Cause:
- The manifest still contains example placeholders.
Fix:
- Replace the scaffold entry with real URLs or local file paths, then rerun the unit.
Related skills