From rashomon
Analyzes and optimizes prompts using BP-001~008 patterns and a gated 3-step flow. Use for prompt review, quality analysis, or creating rashomon skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rashomon:prompt-optimizationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Improve prompts while preserving user intent.
Improve prompts while preserving user intent.
Load references at the phase where their rules become necessary:
| Phase | Condition | Required reference |
|---|---|---|
| Analysis | Every prompt | references/patterns.yaml |
| Analysis | Target is a SKILL.md, agent, or skill reference | references/skills.md |
| Balance | Every prompt | references/execution-quality.yaml |
Record the loaded path and covered rule IDs in the phase's reference_coverage. A phase passes only when its required references and rule coverage are present.
Select the output mode before analysis. An explicit output_mode of interactive or machine takes priority; for any other value, ask the caller to choose one. When it is absent, use Machine mode only if the caller explicitly requests the Machine Output Contract as the response format; otherwise use Interactive mode. Apply the same rule to human and LLM callers.
Keep output_mode outside the target prompt and analysis.original_prompt.
Evaluate every pattern and record issue, already_satisfied, or not_applicable.
| Priority | ID | Pattern | Decision goal |
|---|---|---|---|
| P1 | BP-001 | Negative Instructions | Lead with the required behavior; retain explicit prohibitions for narrow irreversible boundaries |
| P1 | BP-002 | Vague Instructions | Resolve an outcome-relevant ambiguity with the least-restrictive sufficient criterion |
| P1 | BP-003 | Missing Output Format | Define the shape needed by the output consumer |
| P2 | BP-004 | Unstructured Prompt | Make priority and relationships visible when structure reduces ambiguity |
| P2 | BP-005 | Missing or Excess Context | Supply decision-sufficient context without distractors or duplication |
| P2 | BP-006 | Missing Procedural Gates | Split sequential work into steps with completion evidence |
| P3 | BP-007 | Unnecessary or Biased Examples | Use examples only for non-obvious mappings, then control their bias |
| P3 | BP-008 | Missing Uncertainty Handling | Define evidence, escalation, and stopping behavior for unresolved inputs |
Maintain one complete phase-state object in the current invocation. Complete each phase and its gate before generating the next phase; use the transition table as the control rule. Serialize the object only in Machine mode.
findings with a unique finding_id, pattern, severity, location, and quoted evidence. A BP-002 finding represents one decision required by the intended outcome whose plausible interpretations would materially change correctness, requested scope, downstream usability, or verification.unresolved_inputs.analysis_gate passes when:
finding_ids match its findings;Start this step when analysis_gate.status is pass.
applied or skipped with a reason. For BP-002, choose the least-restrictive clarification that supplies the required precision and base the reason on its precision contribution and constraint cost.optimization_gate passes when:
Start this step when optimization_gate.status is pass.
references/execution-quality.yaml.balance_gate passes when every applicable balance check has evidence and no blocking check remains. Use original_sufficient when the analysis found no beneficial change.
| Gate result | Required transition |
|---|---|
pass | Populate the next phase and its gate |
blocked | Keep later workflow phases and their gates null, set result.status to blocked, and format the result in the selected output mode |
Final balance pass with changes | Set result.status to optimized |
Final balance pass without changes | Set result.status to original_sufficient |
Format the user-facing result by status:
optimized, return ## Final Prompt with the optimized prompt, followed by ## Changes with one bullet per applied change and its reason.original_sufficient, return ## Final Prompt with the original prompt, followed by ## Changes stating that no beneficial change was found and the original is already sufficient.blocked, return only ## Required Input with one bullet per missing item needed to continue.In Machine mode, return exactly one valid JSON object in this key order. Populate phases sequentially; later phases remain null until their preceding gate passes.
{
"analysis": {
"original_prompt": "verbatim input",
"target_type": "general_prompt | skill_content",
"intended_outcome": "observable outcome",
"reference_coverage": [{"path": "references/patterns.yaml", "rule_ids": ["BP-001", "BP-002", "BP-003", "BP-004", "BP-005", "BP-006", "BP-007", "BP-008"]}],
"pattern_coverage": {
"BP-001": {"status": "issue | already_satisfied | not_applicable", "finding_ids": ["F-001"], "evidence": ["summary evidence or applicability reason"]},
"BP-002": {"status": "issue | already_satisfied | not_applicable", "finding_ids": ["F-002", "F-003"], "evidence": ["summary evidence or applicability reason"]},
"BP-003": {"status": "issue | already_satisfied | not_applicable", "finding_ids": [], "evidence": ["summary evidence or applicability reason"]},
"BP-004": {"status": "issue | already_satisfied | not_applicable", "finding_ids": [], "evidence": ["summary evidence or applicability reason"]},
"BP-005": {"status": "issue | already_satisfied | not_applicable", "finding_ids": [], "evidence": ["summary evidence or applicability reason"]},
"BP-006": {"status": "issue | already_satisfied | not_applicable", "finding_ids": [], "evidence": ["summary evidence or applicability reason"]},
"BP-007": {"status": "issue | already_satisfied | not_applicable", "finding_ids": [], "evidence": ["summary evidence or applicability reason"]},
"BP-008": {"status": "issue | already_satisfied | not_applicable", "finding_ids": [], "evidence": ["summary evidence or applicability reason"]}
},
"findings": [{"finding_id": "F-001", "pattern_id": "BP-001", "severity": "P1", "location": "section or line", "evidence": ["verbatim issue evidence"]}, {"finding_id": "F-002", "pattern_id": "BP-002", "severity": "P1", "location": "first vague instruction", "evidence": ["verbatim evidence"]}, {"finding_id": "F-003", "pattern_id": "BP-002", "severity": "P1", "location": "second vague instruction", "evidence": ["verbatim evidence"]}],
"preservation_requirements": ["requirement"],
"unresolved_inputs": []
},
"analysis_gate": {"status": "pass | blocked", "missing": []},
"optimization": {"finding_resolutions": [{"finding_id": "F-001", "decision": "applied | skipped", "reason": "reason", "change": "change or null", "source": "finding | project path"}], "candidate_prompt": "optimized candidate"},
"optimization_gate": {"status": "pass | blocked", "missing": []},
"balance": {
"reference_coverage": [{"path": "references/execution-quality.yaml", "rule_ids": ["intent_preservation", "decision_sufficiency", "information_density", "constraint_necessity", "traceability"]}],
"checks": [
{"check_id": "intent_preservation", "status": "pass | blocked", "evidence": "comparison evidence"},
{"check_id": "decision_sufficiency", "status": "pass | blocked", "evidence": "execution evidence"},
{"check_id": "information_density", "status": "pass | blocked", "evidence": "context evidence"},
{"check_id": "constraint_necessity", "status": "pass | blocked", "evidence": "constraint trace"},
{"check_id": "traceability", "status": "pass | blocked", "evidence": "finding or source mapping"}
],
"adjustments": []
},
"balance_gate": {"status": "pass | blocked", "missing": []},
"result": {"status": "optimized | original_sufficient | blocked", "final_prompt": "prompt or null"}
}
Field types are fixed: analysis and analysis_gate are objects; optimization fields become objects only after analysis passes; balance fields become objects only after optimization passes. Otherwise later phases are null. result.final_prompt is a string for optimized or original_sufficient, and null for blocked.
Example of an analysis-blocked transition:
{
"analysis": {"original_prompt": "verbatim input", "target_type": "skill_content", "intended_outcome": "observable outcome", "reference_coverage": [], "pattern_coverage": {}, "findings": [], "preservation_requirements": [], "unresolved_inputs": ["required skill reference unavailable"]},
"analysis_gate": {"status": "blocked", "missing": ["references/skills.md"]},
"optimization": null,
"optimization_gate": null,
"balance": null,
"balance_gate": null,
"result": {"status": "blocked", "final_prompt": null}
}
State the desired action or allowed state first. Preserve an explicit prohibition when the violation is an irreversible operational action, the caller cannot normally recover it, and a positive-only rewrite would blur the boundary. Pair the prohibition with the safe alternative and the condition that authorizes crossing the boundary.
Add structure when the prompt contains multiple instructions, sequential dependencies, or implicit section boundaries. Preserve lightweight prose for a single clear action.
For each context item, identify the decision, action, or verification it controls. Add missing items that change one of those outcomes. Condense duplicated items and items with no downstream effect.
Use ordered steps when the task has sequential dependencies or when an early result must be verified before later work. Give each step observable completion evidence and a next-state rule.
Default to concise rules or consumer-required output shapes for generally known behavior. Add an example when it conveys a domain-, product-, or organization-specific mapping, a non-obvious exception, or a boundary that a rule cannot express. Connect every example to the ambiguity it removes and keep the smallest set that covers those ambiguities.
When the target requires a code or repository change:
| Classification | Definition | Interpretation |
|---|---|---|
| Structural | Changes to organization, criteria, gates, or output shape | Prompt writing technique |
| Context Addition | Project-specific information added from a traceable source | Information advantage |
| Expressive | Different phrasing with equivalent executable meaning | Neutral |
| Variance | Difference without an attributable requirement or execution effect | Original prompt sufficient |
references/patterns.yaml - Detailed BP-001 through BP-008 decision rulesreferences/execution-quality.yaml - Balance checks and comparison criteriareferences/skills.md - Skill-specific BP adaptations and progressive disclosurenpx claudepluginhub shinpr/rashomon --plugin rashomonAnalyzes and improves prompts for clarity, structure, and completeness. Use when auditing or fixing vague instructions to produce a before/after optimization report.
Evaluates prompt quality across clarity, specificity, structure, and completeness, then generates optimized versions using 58 prompting techniques like CoT, few-shot, and role-play.
Evaluates prompt quality across clarity, specificity, structure, and completeness, then generates optimized versions using 58 prompting techniques like CoT, few-shot, and role-play.