agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
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
$ npx -y skills add alirezarezvani/claude-skills --skill context-engine --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/context-engineContext preview
The summary Claude sees to decide when to auto-load this skill.
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
name: "context-engine" 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." license: MIT metadata: version: 1.0.0 author: Alireza Rezvani category: c-level domain: orchestration updated: 2026-03-05 frameworks: context-loading, anonymization, context-enrichment
The memory layer for C-suite advisors. Every advisor skill loads this first. Context is what turns generic advice into specific insight.
company context, context loading, context engine, company profile, advisor context, stale context, context refresh, privacy, anonymization
---
**Step 1 — Check for context file:** `~/.claude/company-context.md`
**Step 2 — Check staleness:** Read `Last updated` field.
**Step 3 — Parse into working memory.** Always active:
---
| 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."*
---
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:** 1. Note internally: `[CONTEXT UPDATE: {what was learned}]` 2. At session end: *"I picked up a few things to add to your context. Want me to update the file?"* 3. If yes: append to the relevant dimension, update timestamp.
**Never silently overwrite.** Always confirm before modifying the context file.
---
Apply `references/anonymization-protocol.md`:
---
Handle gracefully — never block the conversation.
---
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.
---
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…