Estate Overview
Tool Mapping (estate-planning + finance-graph)
| Task |
Tool |
| List family members |
estate-planning.list_people |
| Person details + ownership |
estate-planning.get_person |
| List entities |
estate-planning.list_entities (filter by type, jurisdiction, status) |
| Entity details |
estate-planning.get_entity (ownership, documents, critical dates) |
| List assets (ownership snapshot) |
estate-planning.list_assets (filter by type, jurisdiction, owner) |
| Ownership hierarchy |
estate-planning.get_ownership_graph (full graph or per-person transitive) |
| Net worth |
estate-planning.get_net_worth (by person, jurisdiction, or total) |
| Critical dates |
estate-planning.get_upcoming_dates (next N days) |
| Link document |
estate-planning.link_document (connect Paperless doc to entity/asset) |
| Valuation history / finance facts |
finance-graph.list_valuation_observations and related finance tools |
Routing Boundary
- Use
estate-planning for legal ownership, succession structure, and compliance-state reporting.
- Use
finance-graph for valuation history and statement facts (PL/CFS/BS, XBRL/OCF).
- Use
us-legal.search_court_opinions for case law context on trust/estate structuring decisions.
- Use
us-legal.search_bills for pending trust/estate legislation that may affect structuring.
- Do not write finance-fact payloads back into estate-planning records.
- If tax modeling is needed from this workflow, hand off to
household-tax.
Full Estate Snapshot Workflow
Step 1: People
estate-planning.list_people — all family members with citizenship and residency status.
For each person of interest: estate-planning.get_person for entity ownership and linked documents.
Step 2: Entity Hierarchy
estate-planning.list_entities — all trusts, LLCs, corps, HUFs with status and jurisdiction.
Group by:
- Jurisdiction (US entities vs India entities)
- Type (trusts vs operating entities vs holding entities)
- Status (active vs dissolved vs pending)
Step 3: Ownership Graph
estate-planning.get_ownership_graph — full ownership hierarchy showing who owns what.
For a specific person: estate-planning.get_ownership_graph(person_id=X) for transitive ownership
(A owns B owns C → A effectively owns C with computed percentage).
Step 4: Assets
estate-planning.list_assets — all assets with current valuation snapshots and owners.
Use finance-graph valuation-observation tools when trend history is needed.
Group by:
- Type (real estate, securities, bank accounts, vehicles)
- Jurisdiction
- Owner (direct person ownership vs entity ownership)
Step 5: Net Worth
estate-planning.get_net_worth — aggregated by jurisdiction and currency.
For a specific person: includes both direct and indirect (through entity) ownership.
Step 6: Critical Dates
estate-planning.get_upcoming_dates(days=90) — filing deadlines, renewals, distributions, reviews.
Flag overdue items (due_date < today).
Output Format
## Estate Snapshot — [Date]
### Family Members
| Name | Citizenship | Residency | Tax ID Type |
|------|-------------|-----------|-------------|
### Entities (Active)
| Entity | Type | Jurisdiction | Formation | Tax ID |
|--------|------|-------------|-----------|--------|
### Ownership Graph
[Hierarchy showing person → entity → entity → asset chains]
### Net Worth by Jurisdiction
| Jurisdiction | Currency | Value | Asset Count |
|-------------|----------|-------|-------------|
### Upcoming Critical Dates (90 days)
| Date | Type | Entity/Asset | Description |
|------|------|-------------|-------------|
### Document Gaps
[Entities or assets missing linked documents]
Multi-Jurisdiction Notes
United States
- Entities: Revocable/Irrevocable Trust, LLC, S-Corp, C-Corp, LP
- Tax IDs: SSN (people), EIN (entities)
- Key formation states: DE, WY, NV (favorable laws)
- Annual requirements: state filings, franchise tax, registered agent
India
- Entities: HUF, Private Trust, Private Ltd, LLP
- Tax IDs: PAN (people + entities), TAN (TDS deductors)
- NRI/OCI status affects: property ownership rules, FEMA compliance, tax residency
- HUF: Karta manages, ancestral property rules apply
1---2name: estate-overview3description: Query the estate knowledge graph for family ownership maps, entity hierarchies, net worth by jurisdiction, and critical dates. Use when reviewing the overall estate structure, preparing for attorney meetings, or checking entity status.4---56# Estate Overview78## Tool Mapping (estate-planning + finance-graph)910| Task | Tool |11|------|------|12| List family members | `estate-planning.list_people` |13| Person details + ownership | `estate-planning.get_person` |14| List entities | `estate-planning.list_entities` (filter by type, jurisdiction, status) |15| Entity details | `estate-planning.get_entity` (ownership, documents, critical dates) |16| List assets (ownership snapshot) | `estate-planning.list_assets` (filter by type, jurisdiction, owner) |17| Ownership hierarchy | `estate-planning.get_ownership_graph` (full graph or per-person transitive) |18| Net worth | `estate-planning.get_net_worth` (by person, jurisdiction, or total) |19| Critical dates | `estate-planning.get_upcoming_dates` (next N days) |20| Link document | `estate-planning.link_document` (connect Paperless doc to entity/asset) |21| Valuation history / finance facts | `finance-graph.list_valuation_observations` and related finance tools |2223## Routing Boundary2425- Use `estate-planning` for legal ownership, succession structure, and compliance-state reporting.26- Use `finance-graph` for valuation history and statement facts (PL/CFS/BS, XBRL/OCF).27- Use `us-legal.search_court_opinions` for case law context on trust/estate structuring decisions.28- Use `us-legal.search_bills` for pending trust/estate legislation that may affect structuring.29- Do not write finance-fact payloads back into estate-planning records.30- If tax modeling is needed from this workflow, hand off to `household-tax`.3132## Full Estate Snapshot Workflow3334### Step 1: People3536`estate-planning.list_people` — all family members with citizenship and residency status.37For each person of interest: `estate-planning.get_person` for entity ownership and linked documents.3839### Step 2: Entity Hierarchy4041`estate-planning.list_entities` — all trusts, LLCs, corps, HUFs with status and jurisdiction.42Group by:43- Jurisdiction (US entities vs India entities)44- Type (trusts vs operating entities vs holding entities)45- Status (active vs dissolved vs pending)4647### Step 3: Ownership Graph4849`estate-planning.get_ownership_graph` — full ownership hierarchy showing who owns what.50For a specific person: `estate-planning.get_ownership_graph(person_id=X)` for transitive ownership51(A owns B owns C → A effectively owns C with computed percentage).5253### Step 4: Assets5455`estate-planning.list_assets` — all assets with current valuation snapshots and owners.56Use `finance-graph` valuation-observation tools when trend history is needed.57Group by:58- Type (real estate, securities, bank accounts, vehicles)59- Jurisdiction60- Owner (direct person ownership vs entity ownership)6162### Step 5: Net Worth6364`estate-planning.get_net_worth` — aggregated by jurisdiction and currency.65For a specific person: includes both direct and indirect (through entity) ownership.6667### Step 6: Critical Dates6869`estate-planning.get_upcoming_dates(days=90)` — filing deadlines, renewals, distributions, reviews.70Flag overdue items (due_date < today).7172## Output Format7374```75## Estate Snapshot — [Date]7677### Family Members78| Name | Citizenship | Residency | Tax ID Type |79|------|-------------|-----------|-------------|8081### Entities (Active)82| Entity | Type | Jurisdiction | Formation | Tax ID |83|--------|------|-------------|-----------|--------|8485### Ownership Graph86[Hierarchy showing person → entity → entity → asset chains]8788### Net Worth by Jurisdiction89| Jurisdiction | Currency | Value | Asset Count |90|-------------|----------|-------|-------------|9192### Upcoming Critical Dates (90 days)93| Date | Type | Entity/Asset | Description |94|------|------|-------------|-------------|9596### Document Gaps97[Entities or assets missing linked documents]98```99100## Multi-Jurisdiction Notes101102### United States103- Entities: Revocable/Irrevocable Trust, LLC, S-Corp, C-Corp, LP104- Tax IDs: SSN (people), EIN (entities)105- Key formation states: DE, WY, NV (favorable laws)106- Annual requirements: state filings, franchise tax, registered agent107108### India109- Entities: HUF, Private Trust, Private Ltd, LLP110- Tax IDs: PAN (people + entities), TAN (TDS deductors)111- NRI/OCI status affects: property ownership rules, FEMA compliance, tax residency112- HUF: Karta manages, ancestral property rules apply