Company Context Engine

The Company Context Engine loads and manages company context for all C-suite advisor skills. It reads ~/.claude/company-context.md, detects stale context, enriches it during conversations, and enforces privacy/anonymization rules before external API calls.

✨ What it does

  • Loads context from ~/.claude/company-context.md
  • Checks staleness and prompts refresh if older than 90 days
  • Parses context into working memory fields
  • Captures new information during conversations and suggests updates
  • Enforces privacy rules and anonymization before external calls

🎯 When to use it

  • Starting any C-suite advisor session
  • When context looks stale or missing
  • Before sending company data to an external service

🚀 How to use

Trigger: /cs:setup

Trigger by starting a C-suite advisor session or asking to load company context. The skill expects the context file to exist; if missing, it prompts /cs:setup. Example prompts:

Start a C-suite advisor session.
Load my company context.

📄 Output: Loads and manages company context, prompting for updates and ensuring privacy.

📦 Add this skill to Claude Code

# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills

# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/c-level-advisor/skills/context-engine .claude/skills/context-engine

Skill source: c-level-advisor/skills/context-engine/SKILL.md

⚠️ Good to know

Requires the context file to be present; if missing, it prompts setup and may work with incomplete context.

❓ FAQ

What happens if the context file is missing?

The skill prompts you to run /cs:setup to build your company context.

How does the skill handle stale context?

If the context is older than 90 days, it prompts you to refresh or continue with a stale flag noted.

What data is safe to share externally?

Stage label, team size ranges, industry vertical, challenge category, and market position descriptor are safe with anonymization.

🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.