case-setup

case-setup is a skill for Claude Code from odin33g/family-court-strategist. It costs 67 tokens per session (760 once invoked), scanned A, original, MIT.

A guided process for creating an organised evidence vault for a new family-court case in Obsidian, a note-taking application.

In plain words
What is it for?
It helps gather case details and create files such as a case overview, master timeline, people map, dashboard, and evidence-analysis notes.
Why use it?
It gives a new case a consistent structure for storing facts, people, events, documents, and analysis.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the AskUserQuestion tool.

Part of the family-court-strategist plugin — 5 skills shipped together

Good fit It helps gather case details and create files such as a case overview, master timeline, people map, dashboard, and evidence-analysis notes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/odin33g/family-court-strategist/case-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add odin33g/family-court-strategist --skill case-setup
Clone the repo
git clone --depth 1 https://github.com/odin33g/family-court-strategist

Made for: Claude Code.

Or install family-court-strategist, the plugin that ships this one along with the rest of its 5 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for case-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/odin33g/family-court-strategist/case-setup/github.svg)](https://agentmods.dev/skills/odin33g/family-court-strategist/case-setup)
Your own site
<a href="https://agentmods.dev/skills/odin33g/family-court-strategist/case-setup"><img src="https://agentmods.dev/badge/skills/odin33g/family-court-strategist/case-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for case-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/odin33g/family-court-strategist/case-setup"><img src="https://agentmods.dev/badge/skills/odin33g/family-court-strategist/case-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 760 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.00760
Opus 5 $0.00034 $0.00380
Sonnet 5 $0.00013 $0.00152
Haiku 4.5 $0.00007 $0.00076

Measured 12d ago against content hash 6425b0a1ee5e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

case-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/case-setup/SKILL.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Case Setup

Walk the user through setting up a complete family court evidence vault. This is the foundation everything else builds on.

Step 1: Gather Case Basics

Ask the user (use AskUserQuestion) for:

  • Court and registry (e.g., Federal Circuit and Family Court, Newcastle)
  • File number (if they have one yet)
  • Their role (applicant/respondent, father/mother)
  • Whether they have a solicitor or are self-representing
  • The other party's name and whether they have a solicitor
  • Child(ren)'s names and dates of birth
  • Current living arrangements
  • What outcome they're seeking

Step 2: Create the Vault Structure

Create an Obsidian vault in the user's workspace folder with this structure:

[Case Name]/
├── HOME.md                    — Navigation hub
├── CASE-DETAILS.md            — Case basics (fill from Step 1)
├── MASTER-TIMELINE.md         — Chronological event record
├── PEOPLE-MAP.md              — Everyone involved
├── DASHBOARD.md               — Dataview live queries
├── patterns.md                — Behavioural pattern catalogue
├── _system/
│   ├── analysis-framework.md  — 13-point forensic protocol
│   └── attribution-standards.md — Quote accuracy standards
├── _templates/                — 8 document templates
│   ├── incident.md
│   ├── communication.md
│   ├── affidavit_note.md
│   ├── court_order.md
│   ├── pattern_note.md
│   ├── legal_letter.md
│   ├── strategy_note.md
│   └── person_profile.md
├── analysis/
│   ├── INDEX.md
│   ├── EVIDENCE-MATRIX.md
│   ├── CROSS-DOCUMENT-ANALYSIS.md
│   └── COINCIDENCE-MAP.md
├── legal-documents/
│   └── INDEX.md
├── communications/
│   └── INDEX.md
├── timeline/
│   └── INDEX.md
├── people/
│   └── INDEX.md
├── legal-research/
│   └── INDEX.md
└── .obsidian/
    ├── app.json
    ├── core-plugins.json
    └── appearance.json

Read the reference files in references/ for the complete content of each vault file.

Step 3: Pre-populate

Fill in CASE-DETAILS.md with the information gathered in Step 1. Create initial people profiles for the user, the other parent, and each child.

Read the full file on GitHub · 88 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 88 lines · 67 tokens per session scan A 6425b0a1ee5e

Subscribe to this mod's changes

case-setup is a skill published in the GitHub repository odin33g/family-court-strategist (17 stars, last pushed 5d ago), licensed MIT. It adds 67 tokens to every session and 760 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

patent-application

A patent-application document workflow that turns supplied invention materials into claims, a description, an abstract, and black-and-white drawings. It can also produce Markdown and Word files.

handsomestWei/patent-disclosure-skill · 95 tokens

patent-reader

A plain-language reader for Chinese patents that turns a publication number or PDF into notes, diagrams, and an Obsidian entry. Obsidian is a note-taking app that stores linked Markdown files.

handsomestWei/patent-disclosure-skill · 31 tokens

cloud-service-agreement

Draft and fill SaaS agreement templates — cloud contract, MSA, order form, software license, pilot agreement, design partner agreement. Includes variants with SLAs and AI terms. Produces signable DOCX from Common Paper standard forms. Use when user says "SaaS agreement," "cloud contract," "MSA," "order form,"…

open-agreements/open-agreements · 103 tokens

data-privacy-agreement

Draft and fill data privacy contract and agreement templates — DPA, data processing contract, GDPR, HIPAA BAA, business associate agreement, AI addendum. Produces signable DOCX files from Common Paper standard forms. Use when user says "DPA," "data processing agreement," "HIPAA BAA," "business associate agreement," or…

open-agreements/open-agreements · 123 tokens

nda

Draft and fill NDA contract templates — mutual NDA, one-way NDA, confidentiality agreement. Produces signable DOCX files from Common Paper and Bonterms standard forms. Use when user says "NDA," "non-disclosure agreement," "confidentiality contract," "confidentiality agreement," "mutual NDA," or "one-way NDA." Includes…

open-agreements/open-agreements · 86 tokens

services-agreement

Draft and fill services agreement templates — consulting contract, contractor agreement, SOW, statement of work, professional services agreement. Produces signable DOCX files from Common Paper and Bonterms standard forms. Use when user says "consulting contract," "contractor agreement," "SOW," "statement of work,"…

open-agreements/open-agreements · 92 tokens