From forge-memory
Organizational taxonomy (products, modules, clients, teams, integrations) provides validated vocabulary for all commands. Enables Claude to resolve shorthand like "the mobile app" or "Acme" to canonical names.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forge-memory:org-contextThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Organizational taxonomy gives every command access to your org's vocabulary, enabling validation and shorthand resolution.
Organizational taxonomy gives every command access to your org's vocabulary, enabling validation and shorthand resolution.
Transform informal references into validated entities:
User: "write a story for the billing module in WebApp"
↓ Claude resolves
Product: WebApp (Core SaaS platform)
Module: Billing (Payment processing and invoicing)
Without org context, Claude guesses. With it, Claude validates against your actual taxonomy and uses canonical names.
Six taxonomy types managed via forge-lib:
| Category | Purpose | Example Values |
|---|---|---|
| Products | Product lines | WebApp, MobileApp, API Platform |
| Modules | Functional areas | Authentication, Billing, Notifications |
| Systems | Infrastructure | API Gateway, Data Warehouse |
| Clients | Key customers | Acme Corp, Globex Industries |
| Teams | Organizational units | Platform Team, Finance Team |
| Integrations | External systems | Salesforce, Stripe, Twilio |
Commands query taxonomy via forge-lib:
forge memory get-taxonomy products --directory .
forge memory get-taxonomy modules --directory .
forge memory get-taxonomy clients --directory .
forge memory get-taxonomy teams --directory .
forge memory get-taxonomy integrations --directory .
forge memory get-taxonomy systems --directory .
Returns JSON arrays of valid values for validation and suggestion.
Map informal references to canonical names:
Query taxonomy via forge-lib to validate and resolve.
When a command field requires a taxonomy value:
/memory:setup-orgWhen gathering input for a field:
What product is this for?
Your products:
- WebApp (Core SaaS platform)
- MobileApp (Field operations app)
- API Platform (Developer tools)
Query taxonomy for current values and display as suggestions.
/memory:setup-org to configure your taxonomy"forge memory set-taxonomy {taxonomy_type} --add "{value}" --directory .Commands that reference org entities should:
1. Query Taxonomy:
forge memory get-taxonomy products --directory .
2. Present Options:
Which product?
1. WebApp
2. MobileApp
3. API Platform
[Enter number or name]
3. Validate Input: Match against returned taxonomy (case-insensitive, fuzzy).
4. Handle Unknown: Offer to add new value or accept freeform.
Product Forge, Tasks Forge, and Report Forge all query the same taxonomy:
Shared taxonomy ensures consistency across plugins.
Use /memory:setup-org to populate taxonomy through interactive interview:
Re-runnable—loads existing values and asks what to update.
Adding a value:
forge memory set-taxonomy products --add "New Product" --directory .
Removing a value:
forge memory set-taxonomy products --remove "Old Product" --directory .
Accept "mobile", "mobile app", "the mobile app" → all resolve to "MobileApp"
Don't reject unknown values—offer to add them. Taxonomy grows organically.
Use taxonomy to enrich card creation:
Don't require taxonomy up-front. Accept freeform values, suggest taxonomy setup after seeing patterns.
All taxonomy operations delegated to forge-lib—this skill provides the resolution strategy only.
npx claudepluginhub jeremybrice/the-forge --plugin forge-memoryInteractive wizard creates PM-OS knowledge base: fetches company info from URL, asks batched questions on products/stages/tools/team, populates knowledge/ files.
Browses organization's knowledge system: glossary terms, products, metrics, OKRs, teams. Crawls Notion workspaces to ingest context. Invoke via /business subcommands or /notion-ingest.
Reverse-engineers or interviews to produce an org map (ORG.md) with roles, decision rights, team shape, and ways of working. Run early for stakeholder mapping.