Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill iolta-manager명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | iolta-manager |
| description | | Use when this capability is needed. |
A trust account management application for law firms to maintain IOLTA (Interest on Lawyer Trust Accounts) compliance—tracking client funds, generating reports, and maintaining proper records per state bar requirements.
Live site: https://iolta-manager.casedev.app/
src/
├── app/
│ ├── api/ # API routes
│ │ ├── audit/ # Audit log endpoints
│ │ ├── clients/ # Client CRUD
│ │ ├── holds/ # Trust holds management
│ │ ├── matters/ # Matter management
│ │ ├── reports/ # Report generation
│ │ ├── settings/ # Firm settings
│ │ └── transactions/ # Transaction operations
│ ├── audit/ # Audit log page
│ ├── clients/ # Client pages
│ ├── holds/ # Holds management
│ ├── ledger/ # Transaction ledger
│ ├── matters/ # Matter pages
│ ├── reports/ # Reports page
│ └── settings/ # Settings page
├── components/
│ ├── holds/ # Hold-related components
│ ├── layout/ # Sidebar, navigation
│ ├── matters/ # Matter components
│ ├── reports/ # Report components
│ └── ui/ # Base UI components
├── db/
│ ├── index.ts # Database connection
│ └── schema.ts # Drizzle schema
└── lib/
├── audit.ts # Audit logging utilities
├── iolta-compliance.ts # State-specific rules
├── pdf-styles.ts # Report styling
└── utils.ts # General utilities
Create Client → Create Matter → Record Transactions → Place Holds → Generate Reports
↓ ↓ ↓ ↓ ↓
Contact info Link to client Deposits/ Reserve funds Monthly,
stored assign number Disbursements prevent over- Reconciliation,
track balance disbursement Client Ledger
| Layer | Technology |
|---|---|
| Frontend | Next.js 15 (App Router), React, Tailwind CSS |
| Backend | Next.js API Routes |
| Database | PostgreSQL + Drizzle ORM |
| Auth | NextAuth.js (demo mode) |
| React PDF | |
| Icons | Lucide React |
| Feature | Description |
|---|---|
| Dashboard | Real-time trust balance, recent transactions, active matters |
| Client Management | Profiles, contact info, matter associations |
| Matter Management | Link to clients, matter numbers, status tracking |
| Transaction Tracking | Deposits, disbursements, running balances |
| Trust Holds | Reserve funds, track reasons, available balance |
| Compliance Reports | Monthly, three-way reconciliation, client ledger |
| Audit Trail | Log all actions for compliance documentation |
PostgreSQL with Drizzle ORM. See references/database-schema.md for complete schema.
npm run db:push # Push schema (dev)
npm run db:generate # Generate migrations
npm run db:studio # Open Drizzle Studio
npm install
cp .env.example .env.local
# Add DATABASE_URL to .env.local
npm run db:push
npm run dev
DATABASE_URL=postgresql://... # PostgreSQL connection
NEXTAUTH_SECRET=... # Auth secret (required for prod)
NEXTAUTH_URL=http://localhost:3000
See references/iolta-compliance.md for state-specific rules.
All 50 states + DC with specific rules for record retention (5-7 years) and reconciliation requirements (monthly).
See references/reporting.md for generation patterns.
| Report | Purpose |
|---|---|
| Monthly Trust Account | Period transactions, opening/closing balances |
| Three-Way Reconciliation | Bank vs ledger vs register comparison |
| Client Ledger | Per-client fund tracking, all matters |
components/reports/app/api/reports/app/reports/page.tsxlib/pdf-styles.tsdb/schema.ts// lib/iolta-compliance.ts
export function getStateRules(state: string): IOLTARules {
// Returns retention period, reconciliation frequency, bar association
}
Currently ships in demo mode. For production:
| Issue | Solution |
|---|---|
| Balance mismatch | Check transaction types, verify holds |
| Report generation fails | Verify date range, check matter exists |
| Hold amount exceeds balance | Cannot hold more than available funds |
| Audit log missing entries | Check audit.ts is called in API routes |
Converted and distributed by TomeVault — claim your Tome and manage your conversions.