case-index

Manage case metadata in a single _index.csv file.

52|12|Updated May 17, 2026
One-click install
npx skills add https://github.com/jurisupport/jurisupport-plugins --skill case-index
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: case-index
Source: https://github.com/jurisupport/jurisupport-plugins/tree/main/plugins/jurisupport/skills/case-index
Command: npx skills add https://github.com/jurisupport/jurisupport-plugins --skill case-index

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

JuriSupport MCP를 쓰지 않는 사용자도 간편하게 사건 목록 관리하기 위해 CSV 한 파일(_index.csv)을 source of truth로 사용해 목록 조회(list), 단건 조회(get), 추가(add), 갱신(update), 종결(close) 등의 작업을 수행합니다. MCP 연동 시에는 보조 백업으로도 활용됩니다.

Core Features & Use Cases

  • CSV 기반 사건 관리: 단일 _index.csv로 모든 사건 정보를 관리합니다.
  • CRUD 작업 지원: 목록 조회, 단건 조회, 사건 추가, 갱신, 종결 등 기본 작업을 제공합니다.
  • 오프라인/백업 가능: MCP 연동 시 정본 백업으로 활용 가능하며, 원격지에서의 백업도 가능.

Quick Start

헤더만 있는 빈 CSV를 생성하고, 사건을 추가하고 목록을 확인하는 간단한 흐름으로 시작합니다.

Frequently Asked Questions about case-index

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage legal case metadata using a single CSV file?

To manage legal case metadata via CSV, use a single _index.csv file as the source of truth to perform list, get, add, update, and close operations across all cases without requiring MCP integration.

Can I use this case management workflow without MCP integration?

Yes, you can use this case management workflow without MCP integration. The CSV file acts as a standalone source of truth, while MCP integration only provides optional remote backups for the data.

What is the best way to prevent data corruption when managing cases in CSV?

To prevent data corruption during case management, ensure the CSV file uses UTF-8 with BOM encoding, maintain strict column order, and rely on atomic write handling when updating case records.

How do I start managing a case list from scratch?

To start managing a case list, create an empty CSV file with headers only, then use the add operation to insert new cases and the list operation to view the updated case metadata.

Does this case management approach support backups for offline environments?

Yes, this case management approach supports offline backups. When MCP integration is enabled, the _index.csv file functions as an auxiliary backup, allowing safe data recovery from remote locations.

Why does my UTF-8 with BOM encoding matter for legal case CSV files?

UTF-8 with BOM encoding matters because it ensures strict column order recognition and prevents data parsing errors during atomic write handling for legal case CSV files.