Create original, competition-ready commercial mediation materials. Treat internal consistency, balanced difficulty, and a narrow but workable settlement corridor as design requirements rather than cleanup tasks.
Read all four references before drafting:
resources/case-model-schema.md for the author-only source of truth.resources/design-grammar.md for problem construction and originality rules.resources/packet-templates.md for the public and confidential packet structures.resources/semantic-audit.md for balance, feasibility, and exit criteria.Before promising outputs, confirm that the host can read and write local files. Python 3 is recommended for the bundled deterministic checks. If Python is unavailable, perform the manual fallbacks described below and state in the delivery summary which scripts were not run.
Use when the user supplies a topic area, industry, relationship, dispute seed, or short sketch.
Produce by default:
case-model.json - author-only; never distribute to participants.general-information.md - available to both parties.confidential-information-party-a.md.confidential-information-party-b.md.validation-report.md - author-only.clarification-risk.md - author-only.Make reasonable creative assumptions. Ask a question only when a missing choice would materially change the exercise and guessing would create a substantial risk of divergence. Otherwise state the assumptions in the author-only model and continue.
Use when the user provides a general packet in PDF, DOCX, Markdown, or text.
case-model.json without changing them.Never repair, contradict, or silently supplement a supplied public fact in a distributed packet. Record defects or necessary assumptions in validation-report.md and, if material, ask the user before finalizing.
Never draft the distributed packets independently. Create case-model.json first and record:
Classify every material fact as objective, belief, allegation, legal_uncertainty, or deliberate_ambiguity. Classify visibility as public, party:<party-id>, shared_private, or author_only.
Use <skill-dir>/scripts/scaffold_case_model.py to create a starting model when useful. Resolve <skill-dir> to this skill's directory. Validate the model with <skill-dir>/scripts/validate_case_model.py after every material revision.
Require all of the following:
Reject designs that are impossible, depend on one brittle hidden solution, make one side dominant on every dimension, or reveal the complete bargain merely by reading either confidential packet.
Generate the public packet only from public fields in the model. Provide enough commercial, legal, financial, and relational context to make the dispute understandable without disclosing reservation values or intended trades.
Generate each confidential packet only from:
Write each packet in second person unless the user requests another convention. Give each side realistic internal tensions, priorities, and authority. Do not tell a party the other side's secret or prescribe a single settlement script.
Do not give both packets parallel menus of the same candidate packages. If one party has internally considered a direction, describe only that party's partial concept and the dependencies it cannot resolve alone. Present tradeable ingredients and constraints asymmetrically; leave package assembly to the mediation.
Follow resources/packet-templates.md. Preserve a supplied packet's style and naming conventions when using Route B.
Repeat this cycle:
Validate case-model.json with:
python3 <skill-dir>/scripts/validate_case_model.py <case-model.json>
Run the information-firewall check after drafting:
python3 <skill-dir>/scripts/check_information_firewall.py <case-model.json> <general.md> --party-a <party-a.md> --party-b <party-b.md>
When Route B produces one side only, supply only the corresponding --party-a or --party-b option.
Apply every semantic audit in resources/semantic-audit.md.
Record defects by severity in validation-report.md.
Revise the canonical model, not an isolated packet.
Regenerate every affected packet.
Repeat until the exit criteria pass.
Treat deterministic scripts as minimum checks. They do not replace semantic review.
Before delivery, manually verify the required top-level model fields, exactly two parties, visibility and epistemic-status labels, required private-case fields, two to four candidate packages, calculations and payment totals, the narrow-window settings, and the last two audit iterations. Compare each distributed packet against the model's visibility labels for possible leaks. Record that the manual fallback was used; never describe it as equivalent to running the scripts.
When independent agents are available, run role-limited audits:
Instruct role-limited auditors not to inspect the workspace or any unprovided artifact. If true file isolation is unavailable, pass only the permitted text and treat the exercise as an independence aid, not a security boundary.
Ask each side auditor to identify interests, constraints, likely proposals, apparent BATNA, confusing facts, and at least two sound settlement packages. Ask the mediator auditor whether the public problem supports productive negotiation without disclosing the answer. Ask the full-package auditor to test feasibility, balance, leaks, and contradictions.
If independent agents are unavailable, perform the same audits sequentially with fresh notes and strict information partitions.
Do not call the package final until:
Run the final deterministic check with:
python3 <skill-dir>/scripts/validate_case_model.py <case-model.json> --final
If five revision cycles do not satisfy the criteria, stop and report the remaining defects and the design choice needed. Do not conceal failure by weakening the rubric.
Keep author-only artifacts separate from participant packets. Clearly label confidential packets and their intended recipient. Never combine both confidential packets in a participant-facing file.
Deliver Markdown by default. Create DOCX or PDF versions only when requested and when the host provides a document-generation capability with visual verification. Otherwise deliver Markdown and state that the requested conversion could not be completed in the current host.
Summarize:
Use the model, validation report, and audit history to preserve continuity across revision cycles.
This skill is jurisdiction-neutral because it designs fictional teaching simulations rather than resolving substantive law. When a problem depends on actual doctrine, procedure, ethics rules, or enforceability, the user must supply authoritative jurisdiction-specific sources or independently verify the legal framework before distribution. The generated materials are educational exercises, not legal advice or predictions about a real dispute.
resources/case-model-schema.md — canonical author-only model; read before constructing a case.resources/design-grammar.md — originality, hidden-value, difficulty, and commercial-soundness
rules; read before designing the settlement corridor.resources/packet-templates.md — distributed and author-only document structures; read before
drafting packets or reports.resources/semantic-audit.md — severity rubric and exit criteria; use during every revision.scripts/scaffold_case_model.py — optional Python 3 utility that writes a starter JSON model to
the caller-named path and refuses to overwrite unless expressly told to do so.scripts/validate_case_model.py — Python 3 deterministic validator; it reads a model and writes a
report only when the caller supplies a report path.scripts/check_information_firewall.py — read-only Python 3 comparison for likely verbatim
confidential-fact leakage.The package contains three Python 3 scripts using only the standard library. They make no network calls, spawn no subprocesses, access no credentials, and evaluate no dynamic code. The scaffold writes only to the caller-named path; the validator writes only to an optional caller-named report path; the firewall checker is read-only.