Purpose
Define the standard context-resolution procedure other skills should follow before they begin drafting, reviewing, or planning work.
Use when
- A downstream skill depends on brand, client, project, or account context.
- It is unclear whether the harness already knows the needed context.
- You want a consistent, lightweight way to decide whether to proceed, ask clarifying questions, or trigger onboarding first.
Required inputs
- The current task objective and whether it is agency-level, client/project-specific, or exploratory.
- Any harness-native account, brand, client, or project context already available.
- Any known client slug, workspace name, or folder hint [if available].
Safety/authority
- Treat harness-native context and existing files as preferred evidence, not as permission to invent missing details.
- If context remains ambiguous, say so explicitly and keep outputs draft-only.
- Do not claim files were loaded, created, or updated unless the harness explicitly confirms that capability.
Workflow
- Identify the target context scope: agency default, specific client/project, or exploratory brand style.
- Check harness-native context first (account memory, known business profile, client/workspace metadata, or other built-in awareness).
- If the task is agency-level, look next for
context/BRAND-CONTEXT.md and context/CLIENT-CONTEXT.md as the default reusable pair.
- If the task is for a specific client/project, check
context/clients/<client-slug>/BRAND-CONTEXT.md and context/clients/<client-slug>/CLIENT-CONTEXT.md before falling back to the root defaults.
- If the task is exploratory, check
context/clients/<client-slug>/BRAND-CONTEXT.md and context/clients/<client-slug>/CLIENT-CONTEXT.md for an existing exploratory slug before falling back to the root defaults.
- Prefer the most specific verified context available and note any conflicts between harness-native context, root files, and client-folder files.
- If no sufficient context is found, invite the user to run
brand-client-context-onboarding before continuing, or proceed only with explicitly generic placeholders if the user wants exploratory output.
- Pass downstream skills a short summary of which context source was used, which facts were confirmed, and which fields remain unknown.
Output format
- Task scope: agency-default | client-project | exploratory
- Context source selected: harness-native | root context files | client folder | none
- Confirmed context available: ...
- Conflicts or ambiguities: ...
- Missing context still needed: ...
- Recommended next step: proceed | ask clarifying question | run brand-client-context-onboarding
Quality checks
- Harness-native context is checked before file-based fallbacks.
- Client-specific context is preferred over shared defaults when the task is client-specific.
- Unknowns and conflicts are explicit so downstream skills do not over-assume.
- The recommendation stays lightweight and procedural rather than pretending to perform file I/O.
Related skills
agency-router, brand-client-context-onboarding, brand-context-brief-builder, skill-handoff-protocol
1---2name: context-loader3description: Resolve the best available harness, agency, or client context before running downstream skills.4---56## Purpose78Define the standard context-resolution procedure other skills should follow before they begin drafting, reviewing, or planning work.910## Use when1112- A downstream skill depends on brand, client, project, or account context.13- It is unclear whether the harness already knows the needed context.14- You want a consistent, lightweight way to decide whether to proceed, ask clarifying questions, or trigger onboarding first.1516## Required inputs1718- The current task objective and whether it is agency-level, client/project-specific, or exploratory.19- Any harness-native account, brand, client, or project context already available.20- Any known client slug, workspace name, or folder hint [if available].2122## Safety/authority2324- Treat harness-native context and existing files as preferred evidence, not as permission to invent missing details.25- If context remains ambiguous, say so explicitly and keep outputs draft-only.26- Do not claim files were loaded, created, or updated unless the harness explicitly confirms that capability.2728## Workflow29301. Identify the target context scope: agency default, specific client/project, or exploratory brand style.312. Check harness-native context first (account memory, known business profile, client/workspace metadata, or other built-in awareness).323. If the task is agency-level, look next for `context/BRAND-CONTEXT.md` and `context/CLIENT-CONTEXT.md` as the default reusable pair.334. If the task is for a specific client/project, check `context/clients/<client-slug>/BRAND-CONTEXT.md` and `context/clients/<client-slug>/CLIENT-CONTEXT.md` before falling back to the root defaults.345. If the task is exploratory, check `context/clients/<client-slug>/BRAND-CONTEXT.md` and `context/clients/<client-slug>/CLIENT-CONTEXT.md` for an existing exploratory slug before falling back to the root defaults.356. Prefer the most specific verified context available and note any conflicts between harness-native context, root files, and client-folder files.367. If no sufficient context is found, invite the user to run `brand-client-context-onboarding` before continuing, or proceed only with explicitly generic placeholders if the user wants exploratory output.378. Pass downstream skills a short summary of which context source was used, which facts were confirmed, and which fields remain unknown.3839## Output format40```41- Task scope: agency-default | client-project | exploratory42- Context source selected: harness-native | root context files | client folder | none43- Confirmed context available: ...44- Conflicts or ambiguities: ...45- Missing context still needed: ...46- Recommended next step: proceed | ask clarifying question | run brand-client-context-onboarding47```4849## Quality checks5051- Harness-native context is checked before file-based fallbacks.52- Client-specific context is preferred over shared defaults when the task is client-specific.53- Unknowns and conflicts are explicit so downstream skills do not over-assume.54- The recommendation stays lightweight and procedural rather than pretending to perform file I/O.5556## Related skills5758agency-router, brand-client-context-onboarding, brand-context-brief-builder, skill-handoff-protocol