← ClaudeAtlas

pm-decision-modellisted

JIT helper - add a single decision table (TBL-[DOMAIN]-NN) to domain/decision_models.md. For multi-condition logic where several inputs combine to produce different outputs (pricing matrices, eligibility rules, risk scoring, discount tiers). The decision-models counterpart to the single-rule helpers (pm-business-rule-core/critical/governance). Use during pm-feature-design when a multi-condition decision surfaces, or standalone - without re-running the full pm-business-rules-library.
ljucask/pureinn-product-development · ★ 1 · AI & Automation · score 77
Install: claude install-skill ljucask/pureinn-product-development
# PM - Decision Model (JIT Helper) ## Agent mode (`--agent`) Supports `--agent`: runs autonomously in a subagent, drafts the artifact from existing inputs, and returns a short summary + coverage note. - **No flag** → interactive (default); if inputs are heavy, offer agent mode. - **`--agent`** → obey. First check inputs are complete. Anything missing: do NOT invent it - mark `[ASSUMED - what/why]` in the output and summary. Never hallucinate to fill a gap. - **Review required:** the artifact contains commitments - after drafting, require the user's review before finalizing; do not close decisions autonomously. --- ## What this skill does Adds a single **decision table** (`TBL-[DOMAIN]-NN`) to `domain/decision_models.md` (Live Register 3) - without re-running the full `pm-business-rules-library`. This is the decision-models counterpart to the single-rule helpers: where `pm-business-rule-core/critical/governance` add one business rule to Register 2, this adds one decision table to Register 3. A decision table belongs here when: - **Several input conditions combine** to produce different outputs (not a single if/then) - The logic is best read as a matrix - rows = condition combinations, columns = inputs + output - Examples: discount tiers by customer level + order value + promo, eligibility by age + region + status, risk score by multiple signals, pricing matrix If the logic is a single condition → one output, it is a **business rule**, not a table → use `pm-business-ru