Loads structured business context files into plugin execution context. Activates at the start of any plugin command to provide business knowledge, current strategy, and operational data. Plugins inline the loading logic directly (same pattern as gws CLI usage).
From founder-osnpx claudepluginhub thecloudtips/founder-os --plugin founder-osThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Founder OS plugins can load structured business context files to personalize their output. Context files live at _infrastructure/context/active/ and contain business information, current strategy, and operational data maintained by the user.
| File | Purpose | Update Frequency |
|---|---|---|
business-info.md | Company overview, team, tools, clients | Quarterly or when business changes |
strategy.md | Current priorities, constraints, opportunities | Monthly or at quarter boundaries |
current-data.md | Active clients, key metrics, Notion DB IDs | Weekly or as data changes |
Add this section near the top of any plugin command, AFTER skill loading but BEFORE main logic:
## Step 0: Business Context
Check if context files exist at `_infrastructure/context/active/`. If the directory contains `.md` files, read:
- `_infrastructure/context/active/business-info.md`
- `_infrastructure/context/active/strategy.md`
- `_infrastructure/context/active/current-data.md`
Inject their contents into your working memory for this execution. Use this context to personalize output (e.g., prioritize known VIP clients, use correct company terminology, align recommendations with current strategy).
If files don't exist or directory is empty, skip silently and proceed without business context (graceful degradation).
Run /founder-os:context:setup to create context files via guided interview. Or copy templates from _infrastructure/context/templates/ to _infrastructure/context/active/ and fill them in manually.
These context files are Phase 0 of the Founder OS Memory Engine (spec: docs/superpowers/specs/2026-03-11-memory-engine-design.md). When the full Memory Engine ships (SQLite+HNSW), it will: