Brand Context
You are establishing the brand context foundation. This file is read by every other brand skill before doing any work. Your job is to capture all core brand information in a structured, reusable format.
Before You Start
Find or create the brand package. Look for brand.yaml (in ./, ./brand/, or brands/<slug>/).
- Package exists → read
brand.yaml + context.md; ask the user what to update.
- No package → run
brand-init first to scaffold it (see that skill / references/brand-package-spec.md), then collect the information below.
- Legacy
.agents/brand-context.md from an older run → read it and migrate its content into <package>/context.md.
Information to Collect
Ask for the following. If the user has already provided it in conversation, don't ask again.
1. Brand Basics
- Brand name
- One-line description of what it does
- Industry / category
- Stage (pre-launch, early, growth, established)
- Website (if exists)
2. Audience
- Primary target audience (who they are)
- Key problem the brand solves for them
- Audience language (words they use, phrases from reviews or interviews)
3. Positioning
- What makes this brand different from alternatives?
- Who are the 2–3 main competitors?
- Where does this brand sit in the market (premium, value, niche, mass)?
4. Brand Personality
- 3–5 words that describe the brand's personality
- Tone: formal or casual? serious or playful?
- Any brands whose identity/voice this brand admires?
5. Values & Mission
- Core values (3–5)
- Mission statement (or working draft)
6. Goals
- Primary business goal for the next 12 months
- Key metrics that matter (revenue, awareness, followers, signups)
Output
Write the brand DNA to <package>/context.md (inside the brand package — NOT .agents/), with this structure:
# Brand Context
## Brand
- **Name**: [name]
- **Category**: [category]
- **Description**: [one-liner]
- **Stage**: [stage]
- **Website**: [url or N/A]
## Audience
- **Primary Audience**: [description]
- **Key Problem**: [problem they face]
- **Their Language**: [phrases, words they use]
## Positioning
- **Differentiation**: [what makes this brand different]
- **Competitors**: [list]
- **Market Position**: [premium / value / niche / mass]
## Brand Personality
- **Personality Words**: [word, word, word]
- **Tone**: [formal/casual, serious/playful]
- **Voice Admires**: [brand names or "none"]
## Values & Mission
- **Core Values**: [value, value, value]
- **Mission**: [mission statement]
## Goals
- **Primary Goal**: [goal]
- **Key Metrics**: [metrics]
Then update the manifest so the package stays queryable:
- Flip
artifacts.context: true in brand.yaml, and refresh updated.
- If
brand.yaml's one_liner, name, industry, or archetype are still blank and you now know them, fill them in by editing brand.yaml directly. (If the brand-init skill is installed alongside this one, you may instead run its scripts/brand.sh set --package <package> --key one_liner --value "…" — but a direct edit always works and needs no sibling skill.)
Tell the user the context is saved in the package and every other brand skill will read it automatically. They can update it anytime by running this skill again.
Related Skills
- brand-strategy: Full brand strategy using this context
- brand-voice: Voice and tone guidelines using this context
- brand-messaging: Taglines and messaging using this context
- target-audience: Deep audience personas using this context
1---2name: brand-context3description: Foundation skill that captures and stores core brand context — identity, audience, positioning, values, and voice. Use when the user says "set brand context", "save my brand info", "store brand details", "brand profile", "create brand context file", "update brand context", or when starting any brand project for the first time. Every other brand skill reads this file first. Always run this before beginning any brand work if the context file doesn't exist yet.4---56# Brand Context78You are establishing the brand context foundation. This file is read by every other brand skill before doing any work. Your job is to capture all core brand information in a structured, reusable format.910## Before You Start1112**Find or create the brand package.** Look for `brand.yaml` (in `./`, `./brand/`, or `brands/<slug>/`).13- Package exists → read `brand.yaml` + `context.md`; ask the user what to update.14- No package → run `brand-init` first to scaffold it (see that skill / `references/brand-package-spec.md`), then collect the information below.15- Legacy `.agents/brand-context.md` from an older run → read it and migrate its content into `<package>/context.md`.1617---1819## Information to Collect2021Ask for the following. If the user has already provided it in conversation, don't ask again.2223### 1. Brand Basics24- Brand name25- One-line description of what it does26- Industry / category27- Stage (pre-launch, early, growth, established)28- Website (if exists)2930### 2. Audience31- Primary target audience (who they are)32- Key problem the brand solves for them33- Audience language (words they use, phrases from reviews or interviews)3435### 3. Positioning36- What makes this brand different from alternatives?37- Who are the 2–3 main competitors?38- Where does this brand sit in the market (premium, value, niche, mass)?3940### 4. Brand Personality41- 3–5 words that describe the brand's personality42- Tone: formal or casual? serious or playful?43- Any brands whose identity/voice this brand admires?4445### 5. Values & Mission46- Core values (3–5)47- Mission statement (or working draft)4849### 6. Goals50- Primary business goal for the next 12 months51- Key metrics that matter (revenue, awareness, followers, signups)5253---5455## Output5657Write the brand DNA to **`<package>/context.md`** (inside the brand package — NOT `.agents/`), with this structure:5859```markdown60# Brand Context6162## Brand63- **Name**: [name]64- **Category**: [category]65- **Description**: [one-liner]66- **Stage**: [stage]67- **Website**: [url or N/A]6869## Audience70- **Primary Audience**: [description]71- **Key Problem**: [problem they face]72- **Their Language**: [phrases, words they use]7374## Positioning75- **Differentiation**: [what makes this brand different]76- **Competitors**: [list]77- **Market Position**: [premium / value / niche / mass]7879## Brand Personality80- **Personality Words**: [word, word, word]81- **Tone**: [formal/casual, serious/playful]82- **Voice Admires**: [brand names or "none"]8384## Values & Mission85- **Core Values**: [value, value, value]86- **Mission**: [mission statement]8788## Goals89- **Primary Goal**: [goal]90- **Key Metrics**: [metrics]91```9293Then update the manifest so the package stays queryable:94- Flip `artifacts.context: true` in `brand.yaml`, and refresh `updated`.95- If `brand.yaml`'s `one_liner`, `name`, `industry`, or `archetype` are still blank and you now know them, fill them in by editing `brand.yaml` directly. (If the `brand-init` skill is installed alongside this one, you may instead run its `scripts/brand.sh set --package <package> --key one_liner --value "…"` — but a direct edit always works and needs no sibling skill.)9697Tell the user the context is saved in the package and every other brand skill will read it automatically. They can update it anytime by running this skill again.9899---100101## Related Skills102103- **brand-strategy**: Full brand strategy using this context104- **brand-voice**: Voice and tone guidelines using this context105- **brand-messaging**: Taglines and messaging using this context106- **target-audience**: Deep audience personas using this context