Company Context Engine
Loads and manages company context for all C-suite advisor skills.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/context-engine. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit alirezarezvani/claude-skills/c-level-advisor/skills/context-engine#main ~/.claude/skills/context-engineFor one project only, change the path to .claude/skills/context-engine.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Company Context Engine
Show the full text135 lines
| name | description | license | metadata |
|---|---|---|---|
| context-engine | Loads and manages company context for all C-suite advisor skills. Reads ~/.claude/company-context.md, detects stale context (>90 days), enriches context during conversations, and enforces privacy/anonymization rules before external API calls. Use when starting any C-suite advisor session, when context looks stale or missing, or before sending company data to an external service. | MIT | version: 1.0.0 author: Alireza Rezvani category: c-level domain: orchestration updated: 2026-03-05 frameworks: context-loading, anonymization, context-enrichment |
Company Context Engine
The memory layer for C-suite advisors. Every advisor skill loads this first. Context is what turns generic advice into specific insight.
Keywords
company context, context loading, context engine, company profile, advisor context, stale context, context refresh, privacy, anonymization
Load Protocol (Run at Start of Every C-Suite Session)
Step 1 — Check for context file: ~/.claude/company-context.md
- Exists → proceed to Step 2
- Missing → prompt: "Run /cs:setup to build your company context — it makes every advisor conversation significantly more useful."
Step 2 — Check staleness: Read Last updated field.
- < 90 days: Load and proceed.
- ≥ 90 days: Prompt: "Your context is [N] days old. Quick 15-min refresh (/cs:update), or continue with what I have?"
- If continue: load with
[STALE — last updated DATE]noted internally.
- If continue: load with
Step 3 — Parse into working memory. Always active:
- Company stage (pre-PMF / scaling / optimizing)
- Founder archetype (product / sales / technical / operator)
- Current #1 challenge
- Runway (as risk signal — never share externally)
- Team size
- Unfair advantage
- 12-month target
Context Quality Signals
| Condition | Confidence | Action |
|---|---|---|
| < 30 days, full interview | High | Use directly |
| 30–90 days, update done | Medium | Use, flag what may have changed |
| > 90 days | Low | Flag stale, prompt refresh |
| Key fields missing | Low | Ask in-session |
| No file | None | Prompt /cs:setup |
If Low: "My context is [stale/incomplete] — I'm assuming [X]. Correct me if I'm wrong."
Context Enrichment
During conversations, you'll learn things not in the file. Capture them.
Triggers: New number or timeline revealed, key person mentioned, priority shift, constraint surfaces.
Protocol:
- Note internally:
[CONTEXT UPDATE: {what was learned}] - At session end: "I picked up a few things to add to your context. Want me to update the file?"
- If yes: append to the relevant dimension, update timestamp.
Never silently overwrite. Always confirm before modifying the context file.
Privacy Rules
Never send externally
- Specific revenue or burn figures
- Customer names
- Employee names (unless publicly known)
- Investor names (unless public)
- Specific runway months
- Watch List contents
Safe to use externally (with anonymization)
- Stage label
- Team size ranges (1–10, 10–50, 50–200+)
- Industry vertical
- Challenge category
- Market position descriptor
Before any external API call or web search
Apply references/anonymization-protocol.md:
- Numbers → ranges or stage-relative descriptors
- Names → roles
- Revenue → percentages or stage labels
- Customers → "Customer A, B, C"
Missing or Partial Context
Handle gracefully — never block the conversation.
- Missing stage: "Just to calibrate — are you still finding PMF or scaling what works?"
- Missing financials: Use stage + team size to infer. Note the gap.
- Missing founder profile: Infer from conversation style. Mark as inferred.
- Multiple founders: Context reflects the interviewee. Note co-founder perspective may differ.
Required Context Fields
Required:
- Last updated (date)
- Company Identity → What we do
- Stage & Scale → Stage
- Founder Profile → Founder archetype
- Current Challenges → Priority #1
- Goals & Ambition → 12-month target
High-value optional:
- Unfair advantage
- Kill-shot risk
- Avoided decision
- Watch list
Missing required fields: note gaps, work around in session, ask in-session only when critical.
References
references/anonymization-protocol.md— detailed rules for stripping sensitive data before external calls
| 1 | |
| 2 | name "context-engine" |
| 3 | description "Loads and manages company context for all C-suite advisor skills. Reads ~/.claude/company-context.md, detects stale context (>90 days), enriches context during conversations, and enforces privacy/anonymization rules before external API calls. Use when starting any C-suite advisor session, when context looks stale or missing, or before sending company data to an external service." |
| 4 | license MIT |
| 5 | metadata |
| 6 | version 1.0.0 |
| 7 | author Alireza Rezvani |
| 8 | category c-level |
| 9 | domain orchestration |
| 10 | updated 2026-03-05 |
| 11 | frameworks context-loading, anonymization, context-enrichment |
| 12 | |
| 13 | |
| 14 | # Company Context Engine |
| 15 | |
| 16 | The memory layer for C-suite advisors. Every advisor skill loads this first. Context is what turns generic advice into specific insight. |
| 17 | |
| 18 | ## Keywords |
| 19 | company context, context loading, context engine, company profile, advisor context, stale context, context refresh, privacy, anonymization |
| 20 | |
| 21 | |
| 22 | |
| 23 | ## Load Protocol (Run at Start of Every C-Suite Session) |
| 24 | |
| 25 | **Step 1 — Check for context file:** `~/.claude/company-context.md` |
| 26 | Exists → proceed to Step 2 |
| 27 | Missing → prompt: *"Run /cs:setup to build your company context — it makes every advisor conversation significantly more useful."* |
| 28 | |
| 29 | **Step 2 — Check staleness:** Read `Last updated` field. |
| 30 | **< 90 days:** Load and proceed. |
| 31 | **≥ 90 days:** Prompt: *"Your context is [N] days old. Quick 15-min refresh (/cs:update), or continue with what I have?"* |
| 32 | If continue: load with `[STALE — last updated DATE]` noted internally. |
| 33 | |
| 34 | **Step 3 — Parse into working memory.** Always active: |
| 35 | Company stage (pre-PMF / scaling / optimizing) |
| 36 | Founder archetype (product / sales / technical / operator) |
| 37 | Current #1 challenge |
| 38 | Runway (as risk signal — never share externally) |
| 39 | Team size |
| 40 | Unfair advantage |
| 41 | 12-month target |
| 42 | |
| 43 | |
| 44 | |
| 45 | ## Context Quality Signals |
| 46 | |
| 47 | | Condition | Confidence | Action | |
| 48 | |-----------|-----------|--------| |
| 49 | | < 30 days, full interview | High | Use directly | |
| 50 | | 30–90 days, update done | Medium | Use, flag what may have changed | |
| 51 | | > 90 days | Low | Flag stale, prompt refresh | |
| 52 | | Key fields missing | Low | Ask in-session | |
| 53 | | No file | None | Prompt /cs:setup | |
| 54 | |
| 55 | If Low: *"My context is [stale/incomplete] — I'm assuming [X]. Correct me if I'm wrong."* |
| 56 | |
| 57 | |
| 58 | |
| 59 | ## Context Enrichment |
| 60 | |
| 61 | During conversations, you'll learn things not in the file. Capture them. |
| 62 | |
| 63 | **Triggers:** New number or timeline revealed, key person mentioned, priority shift, constraint surfaces. |
| 64 | |
| 65 | **Protocol:** |
| 66 | Note internally: `[CONTEXT UPDATE: {what was learned}]` |
| 67 | At session end: *"I picked up a few things to add to your context. Want me to update the file?"* |
| 68 | If yes: append to the relevant dimension, update timestamp. |
| 69 | |
| 70 | **Never silently overwrite.** Always confirm before modifying the context file. |
| 71 | |
| 72 | |
| 73 | |
| 74 | ## Privacy Rules |
| 75 | |
| 76 | ### Never send externally |
| 77 | Specific revenue or burn figures |
| 78 | Customer names |
| 79 | Employee names (unless publicly known) |
| 80 | Investor names (unless public) |
| 81 | Specific runway months |
| 82 | Watch List contents |
| 83 | |
| 84 | ### Safe to use externally (with anonymization) |
| 85 | Stage label |
| 86 | Team size ranges (1–10, 10–50, 50–200+) |
| 87 | Industry vertical |
| 88 | Challenge category |
| 89 | Market position descriptor |
| 90 | |
| 91 | ### Before any external API call or web search |
| 92 | Apply `references/anonymization-protocol.md`: |
| 93 | Numbers → ranges or stage-relative descriptors |
| 94 | Names → roles |
| 95 | Revenue → percentages or stage labels |
| 96 | Customers → "Customer A, B, C" |
| 97 | |
| 98 | |
| 99 | |
| 100 | ## Missing or Partial Context |
| 101 | |
| 102 | Handle gracefully — never block the conversation. |
| 103 | |
| 104 | **Missing stage:** "Just to calibrate — are you still finding PMF or scaling what works?" |
| 105 | **Missing financials:** Use stage + team size to infer. Note the gap. |
| 106 | **Missing founder profile:** Infer from conversation style. Mark as inferred. |
| 107 | **Multiple founders:** Context reflects the interviewee. Note co-founder perspective may differ. |
| 108 | |
| 109 | |
| 110 | |
| 111 | ## Required Context Fields |
| 112 | |
| 113 | |
| 114 | Required: |
| 115 | - Last updated (date) |
| 116 | - Company Identity → What we do |
| 117 | - Stage & Scale → Stage |
| 118 | - Founder Profile → Founder archetype |
| 119 | - Current Challenges → Priority #1 |
| 120 | - Goals & Ambition → 12-month target |
| 121 | |
| 122 | High-value optional: |
| 123 | - Unfair advantage |
| 124 | - Kill-shot risk |
| 125 | - Avoided decision |
| 126 | - Watch list |
| 127 | |
| 128 | |
| 129 | Missing required fields: note gaps, work around in session, ask in-session only when critical. |
| 130 | |
| 131 | |
| 132 | |
| 133 | ## References |
| 134 | `references/anonymization-protocol.md` — detailed rules for stripping sensitive data before external calls |
| 135 |
Discussion
Browse more free Claude skills.