/business — Business Context Browser
SkillSearchBrowse, search, and explore your organization's business context system — glossary terms, product catalog, metric definitions, OKRs/objectives, and team structure. This skill provides interactive access to all business knowledge stored in `.knowledge/organizations/`. Use this skill whenever the user wants to understand business terminology, look up metric definitions, explore what products exist, review company objectives, understand team structure, search for business terms, or generally wants to know "what business context do we have?" Trigger on phrases like "/business", "show me our glossary", "what metrics are defined?", "what products do we have?", "show me our OKRs", "who's on which team?", "look up [business term]", "search for [term] in our business knowledge", "what's the definition of [term]?", "show me our business context", "browse our company knowledge", "what teams do we have?", "find [term] in the knowledge base", or any request to view or search organizational knowledge. This skill is especially useful when starting analyses (to understand available metrics and terms), when onboarding new team members (to share business vocabulary), when writing reports (to verify metric definitions match company standards), or when collaborating across teams (to establish shared terminology). Always use this skill instead of reading `.knowledge/organizations/` files directly — it provides formatted, user-friendly output with search, pagination, and helpful error messages.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the /business — Business Context Browser skill
What this skill tells your AI
The instructions your AI receives, as published by ai-analyst-lab/ai-analyst in .claude/skills/business/SKILL.md and read by ahel’s review.
Interactive browser for your organization's knowledge system. Explore terms, products, metrics, objectives, and team structure.
Scope
This skill browses the organization's documented knowledge in
.knowledge/organizations/{org}/business/ (via helpers/knowledge/business_context.py).
It never queries the dataset: /business products shows the product catalog YAML, not the
products table. For what exists in the data, use /explore; for analysis history, /history.
Trigger
Invoked as /business or /business {subcommand}
Prerequisites
- Organization context must exist at
.knowledge/organizations/{org}/ - Read
.knowledge/setup-state.yamlto find active organization - If no org configured: "No organization context found. Run
/setupPhase 3 to configure business context, or create one manually at.knowledge/organizations/{name}/."`
Subcommands
/business (no args) — Overview
Display a summary of available business context:
📊 Business Context: {org_name}
Glossary: {n} terms defined
Products: {n} products cataloged
Metrics: {n} metrics specified
Objectives: {n} OKRs/goals tracked
Teams: {n} teams mapped
Type /business {category} for details.
Implementation:
- Read
.knowledge/setup-state.yamlto find active organization name - REQUIRED: Use
helpers/knowledge/business_context.py→load_business_context(org_path)to load data- DO NOT manually read YAML files
- The helper handles file not found errors, parsing errors, and provides consistent structure
- Count entries in each category (glossary, products, metrics, objectives, teams)
- Display summary table
- If business context is empty or sparse (fewer than 3 categories populated):
- Check
.knowledge/analyses/index.yamlfor past analyses - If analyses exist, add a section called "Implicit Knowledge (from Past Analyses)"
- Extract and show:
- Most frequently analyzed metrics (count mentions across analysis titles/tags)
- Recurring business questions or themes
- Common data gotchas from the active dataset's
quirks.md
- This helps new team members understand what the team actually measures, even when formal docs aren't populated yet
- Frame this as "What the team measures (inferred from past work)" vs "Formal documentation (not yet configured)"
- Check
- Always provide next steps: suggest
/setupto populate formal context, or show how to add entries manually
/business glossary — Browse Terms
Display all business term definitions:
📖 Glossary ({n} terms)
Term | Definition | Category
──────────────────|─────────────────────────────────────|──────────
Active User | User with ≥1 session in last 30d | Engagement
Churn | No activity for 60+ days | Retention
...
Implementation:
- Load via the helper (
get_glossary()) - Sort alphabetically
- Show first 20 terms; offer "Show all" if more
- If empty: "No glossary terms defined. Add terms to
.knowledge/organizations/{org}/business/glossary/terms.yaml."
/business products — View Product Catalog
Display product hierarchy:
📦 Products ({n} total)
Product | Category | Status | Key Metrics
──────────────────|─────────────|───────────|────────────
Core Platform | SaaS | Active | MAU, Revenue
Mobile App | Mobile | Active | DAU, Retention
...
Implementation:
- Load via the helper (
get_products()) - Display in table format
- If empty: "No products defined. Add products to
.knowledge/organizations/{org}/business/products/index.yaml."
/business metrics — Inspect Metric Definitions
Display metric dictionary:
📏 Metrics ({n} defined)
Metric | Type | Formula/Definition | Owner
──────────────────|─────────────|───────────────────────────|──────
Conversion Rate | Ratio | signups / visitors | Growth
MRR | Currency | SUM(active_subscriptions) | Finance
...
Implementation:
- Load via the helper (
get_metrics()) - Cross-reference with
.knowledge/datasets/{active}/metrics/if available - Show definition, type, owner
- If empty: "No metrics defined. Use the metric-spec skill to define metrics, or add to
.knowledge/organizations/{org}/business/metrics/index.yaml."
/business objectives — Review OKRs/Goals
Display current objectives:
🎯 Objectives ({n} active)
Objective | Key Results | Status
───────────────────────────────|──────────────────────────|────────
Increase activation rate | +15% by Q2 | On Track
Reduce churn | <5% monthly by Q3 | At Risk
...
Implementation:
- Load via the helper (
get_objectives()) - Show status indicators (On Track / At Risk / Behind)
- If empty: "No objectives defined. Add OKRs to
.knowledge/organizations/{org}/business/objectives/index.yaml."
/business teams — Show Team Structure
Display team organization:
👥 Teams ({n} mapped)
Team | Lead | Focus Area | Analysts
──────────────────|─────────────|───────────────────|──────────
Growth | Jane D. | Acquisition | 2
Product | John S. | Core Experience | 3
...
Implementation:
- Load via the helper (
get_teams()) - Show team summary
- If empty: "No teams defined. Add team structure to
.knowledge/organizations/{org}/business/teams/index.yaml."
/business lookup {term} — Search
Search across all categories for a term:
- Search glossary terms (exact + fuzzy match)
- Search product names
- Search metric names
- Search objective text
- Display all matches with category labels
If no match: "No results for '{term}'. Try a different search term or browse categories with /business."
Implementation:
- Use
helpers/knowledge/business_context.py→get_glossary(),get_products(), etc. - Case-insensitive substring match across all categories
- Rank: exact match > starts-with > contains
- Show top 10 results with category badge
- If no formal match found AND the term looks like a metric (e.g., contains "rate", "count", "total", "revenue", "user"):
- Check the active dataset's
schema.mdfor columns matching the term - Check the active dataset's
quirks.mdfor mentions of the term - If found, show: "Not in formal glossary, but found in dataset: [column name] — [description]. Consider adding to
/business metricsfor future reference."
- Check the active dataset's
Error Handling
- Missing org directory → suggest
/setupPhase 3 - Empty categories → show helpful "how to add" message with file path
- Malformed YAML → show parse error, suggest checking file syntax
- Partial context (some categories empty) → show what exists, note gaps
Display Rules
- Use tables for structured data (align columns)
- Limit initial display to 20 rows; offer pagination
- Always show file paths so users know where to edit
- Adapt detail level: summary for
/business, detail for subcommands
Signals
- GitHub stars
- 297
- Forks
- 137
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
business- Source
- github.com/ai-analyst-lab/ai-analyst