From pareto-audit
Applies 80/20 Pareto analysis to any domain. Identifies the vital 20% of inputs driving 80% of outputs. Produces ranked action matrix, pruning recommendations, and unconventional reframes via the Pareto Cognitive Engine (PCE). Reasoning modes: Reflective, Unconventional, Non-linear, Strategic, Hedonistic.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pareto-audit:pareto-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Activation phrases for `multi-skill-orchestrator-mcp`:
AUDIT_REPORT.mdPOC_MANIFEST.mdREADME.mddeploy.shexamples/engineering-team-2026-03.jsonexamples/product-manager-2026-03.jsonexamples/startup-founder-2026-03.jsongeodesic-test/GEODESIC_DELINEATION_TEST.mdgeodesic-test/measure_delineation.pysrc/worker.jssystem-prompt/PCE_SYSTEM_PROMPT.mdtests/evals.jsontests/sample_output_eval3.txttests/verification_results.jsonwrangler.jsoncActivation phrases for multi-skill-orchestrator-mcp:
domain:
type: string
required: true
description: Business domain context (startup, engineering, product, marketing, career, workflow)
goal:
type: string
required: true
description: Primary objective with measurable target and timeframe
activities:
type: array[string]
required: true
min_items: 3
max_items: 20
description: Current activities consuming time/resources
outputs:
type: string
required: false
description: Observed metrics, results, or baseline data (improves analysis quality)
State 1: INPUT VALIDATION
└─ Validate required fields (domain, goal, activities)
└─ Normalize activity list (deduplicate, standardize format)
└─ Extract implicit metrics from outputs field
↓
State 2: CONTRIBUTION MAPPING
└─ For each activity, estimate contribution to goal (0-100%)
└─ Apply Pareto heuristics: identify natural 80/20 clustering
└─ Flag activities with <5% contribution as trivial
↓
State 3: VITAL 20% EXTRACTION
└─ Select top contributors summing to ~80% output
└─ Generate insight explaining WHY each is vital
└─ Identify hidden dependencies between vital activities
↓
State 4: TRIVIAL 80% ANALYSIS
└─ List remaining activities
└─ Generate prune_reason for each (specific, actionable)
└─ Distinguish between prune (stop entirely) and defer (pause temporarily)
↓
State 5: UNCONVENTIONAL REFRAMES
└─ Identify 3 conventional assumptions in the input
└─ Generate Pareto-inverted perspectives
└─ Apply reasoning modes: Reflective, Unconventional, Non-linear
↓
State 6: ACTION MATRIX GENERATION
└─ Rank actions by (expected_impact × 1/effort)
└─ Include exactly 5 actions
└─ First action must be achievable within 24 hours
↓
State 7: RECURSIVE NOTE
└─ Identify when to re-run audit (milestone or time-based)
└─ Preview what the next Pareto layer will likely reveal
{
"summary": "string — One sentence capturing the core insight",
"vital_20": [
{
"activity": "string",
"contribution_pct": "number (0-100)",
"insight": "string — Why this activity matters disproportionately"
}
],
"trivial_80": [
{
"activity": "string",
"contribution_pct": "number (0-100)",
"prune_reason": "string — Specific, actionable reason to stop or defer"
}
],
"unconventional_reframes": [
{
"conventional_assumption": "string",
"pareto_reframe": "string — Inverted perspective applying 80/20 logic"
}
],
"action_matrix": [
{
"rank": "number (1-5)",
"action": "string — Specific, actionable step",
"expected_impact": "enum: high | medium | low",
"effort": "enum: high | medium | low"
}
],
"recursive_note": "string — When and why to re-run this audit"
}
| Surface | Method | Identifier |
|---|---|---|
multi-skill-orchestrator-mcp | npm package | pareto_audit |
| Genesis Conductor Coalition | Plugin gateway | coalition-gateway entitlement |
| QMCP | MCP tool surface | mcp.genesisconductor.io |
| Direct HTTP | REST API | POST /api/audit |
| Slack Integration | Bot mention | @pareto-audit |
The Pareto Cognitive Engine applies five reasoning modes during analysis:
| Tier | Audits | Features |
|---|---|---|
| Free | 3/day/IP | Standard analysis |
| Pro ($19/mo) | Unlimited | + Export, history, saved templates |
| Team ($149/mo) | Unlimited | + Team comparisons, aggregated insights |
Part of the Genesis Conductor thermodynamic AI orchestration ecosystem.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub genesis-conductor-engine/pareto --plugin pareto-audit