Context Kernel
This skill is the shared system layer for this repo.
It exists to keep the other skills aligned around one runtime contract:
- where shared files live
- which skill owns which files
- what can be overwritten vs appended
- how to pass context between skills without inventing missing state
Shared Workspace
All persistent state lives under ~/clawd/workspace/.
Brand Context
~/clawd/workspace/brand/voice-profile.md~/clawd/workspace/brand/notes.md
Research + Analysis
~/clawd/workspace/content-radar/config.yaml~/clawd/workspace/content-radar/briefings/~/clawd/workspace/content-dna/outputs/~/clawd/workspace/content-dna-batch/dna-cache/~/clawd/workspace/content-dna-batch/reports/
Production + Delivery
~/clawd/workspace/the-forge/outputs/~/clawd/workspace/monday-drop/outputs/
Ownership Rules
voice-labownsvoice-profile.md.voice-labmay append useful discoveries tonotes.md.content-radarowns briefing files incontent-radar/briefings/.content-dnaowns single-video analysis files.content-dna-batchowns pattern reports and DNA cache.the-forgeowns forged concept output.monday-dropowns delivery logs and exported run summaries.
Read Rules
voice-labmay read any file inworkspace/brand/.content-radarshould only readconfig.yaml.content-dnashould readvoice-profile.mdonly when adapting concepts.content-dna-batchshould read Content DNA outputs and its own cache.the-forgeshould readvoice-profile.md, pattern reports, and optionally the latest content-radar briefing.monday-dropshould read config, reports, and forged outputs. It should not invent missing brand state.
Write Rules
- Never overwrite
voice-profile.mdwithout showing the user what will change. notes.mdis append-only.- Dated run artifacts should create new files instead of overwriting old ones.
- If a script or skill cannot produce a promised artifact, say that clearly in the output instead of faking completeness.
Output Rules
- Prefer clean markdown.
- Saved output paths should be printed clearly.
- If a claim is based on live fetched data, say so.
- If a section still needs agent follow-up, mark it explicitly rather than presenting it as finished.
Fallback Rules
- If no
voice-profile.mdexists, skills may fall back to the demo voice where supported. - If Content Radar has no completed briefing, The Forge may still run from a pattern report alone.
- If Monday Drop has no delivery credentials, it should still write output files and exit cleanly with delivery skipped.