@yottagraph-app/aether-instructions 1.1.23 → 1.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yottagraph-app/aether-instructions",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "Cursor rules, commands, and skills for Aether development",
5
5
  "files": [
6
6
  "rules",
@@ -0,0 +1,184 @@
1
+ # Data Dictionary — BNY Arbitrage Rebate Analysis
2
+
3
+ ## Source Description
4
+
5
+ Interim Arbitrage Rebate Analysis reports prepared by BLX Group LLC for
6
+ municipal bond issuers. Each report computes the arbitrage rebate liability
7
+ under IRC Section 148 for a bond issue across a computation period. Reports
8
+ include transmittal letters, legal opinions, notes/assumptions, summary
9
+ schedules (rebate analysis, sources/uses of funds), and detailed per-fund
10
+ cash flow and investment data.
11
+
12
+ BNY (Bank of New York Mellon) serves as trustee. Orrick, Herrington &
13
+ Sutcliffe LLP provides the accompanying legal opinion.
14
+
15
+ ## Entity Types
16
+
17
+ ### bond
18
+
19
+ The municipal bond issue itself. One entity per unique bond across all reports.
20
+
21
+ | Property | Type | Description |
22
+ |----------|------|-------------|
23
+ | `client_matter_number` | string | **Strong ID.** BLX Group client matter number (e.g. `42182-2748`). Invariant across all reports for the same bond. |
24
+ | `bonds_name` | string | Full name of the bonds (e.g. "Multifamily Housing Revenue Refunding Bonds (Presidential Plaza at Newport Project-FHA Insured Mortgages) 1991 Series 1") |
25
+ | `par_amount` | string | Total par amount of the bond issue (e.g. "$142,235,000") |
26
+ | `dated_date` | string | Dated date of the bonds (e.g. "September 15, 1991") |
27
+ | `issue_date` | string | Issue date of the bonds (e.g. "October 17, 1991") |
28
+ | `bond_yield` | string | Arbitrage yield / allowable yield on investments (e.g. "7.420898%") |
29
+ | `computation_period` | string | The computation period for this report (e.g. "October 17, 1991 through October 16, 2024") |
30
+ | `rebate_computation_date` | string | End date of the computation period (e.g. "October 16, 2024") |
31
+ | `cumulative_rebate_liability` | string | Total cumulative rebate liability (e.g. "$0.00") |
32
+ | `rebate_payment_due` | string | Amount due to the US (e.g. "$0.00") |
33
+ | `return_on_investments` | string | Weighted return on investments since prior computation date (e.g. "6.447251%") |
34
+ | `shortfall_pct` | string | Shortfall percentage: return minus yield (e.g. "-0.973647%") |
35
+ | `actual_gross_earnings` | string | Total actual gross earnings across all funds |
36
+ | `allowable_gross_earnings` | string | Total allowable gross earnings at bond yield |
37
+ | `excess_earnings` | string | Total excess (negative = under yield) |
38
+ | `report_date` | string | Date the report was issued (e.g. "December 6, 2024") |
39
+
40
+ ### organization
41
+
42
+ Companies, agencies, law firms, and financial institutions named in the reports.
43
+
44
+ | Property | Type | Description |
45
+ |----------|------|-------------|
46
+ | `org_type` | string | Type: `government_agency`, `law_firm`, `financial_services`, `financial_institution`, `trust_company` |
47
+ | `description` | string | Role in the deal (e.g. "Issuer", "Trustee", "Bond Counsel") |
48
+
49
+ Expected entities:
50
+ - New Jersey Housing and Mortgage Finance Agency (Issuer)
51
+ - BLX Group LLC (Rebate Analyst)
52
+ - Orrick, Herrington & Sutcliffe LLP (Bond Counsel)
53
+ - BNY / Bank of New York Mellon (Trustee)
54
+ - Willdan Financial Services (Prior Report preparer)
55
+ - U.S. Department of the Treasury
56
+
57
+ ### fund_account
58
+
59
+ Bond proceeds sub-accounts tracked for rebate computation purposes.
60
+
61
+ | Property | Type | Description |
62
+ |----------|------|-------------|
63
+ | `fund_status` | string | Current status: `Active` or `Inactive` |
64
+ | `computation_date_valuation` | string | Fair market value at computation date |
65
+ | `gross_earnings` | string | Total gross earnings for the fund |
66
+ | `internal_rate_of_return` | string | IRR on the fund's investments |
67
+ | `excess_earnings` | string | Excess earnings (negative = below yield) |
68
+
69
+ Expected entities:
70
+ - Reserve I Account
71
+ - Reserve II Account
72
+ - Prior Rebate Liability
73
+ - Liquidity I Account
74
+ - Liquidity II Account
75
+
76
+ Additional fund accounts mentioned in Notes and Assumptions:
77
+ - Revenue Account (bona fide debt service fund, excluded from rebate)
78
+ - Escrow Fund
79
+ - Debt Service Reserve Account
80
+ - Construction Account
81
+
82
+ ### financial_instrument
83
+
84
+ Securities held within fund accounts (investments of bond proceeds).
85
+
86
+ | Property | Type | Description |
87
+ |----------|------|-------------|
88
+ | `par_amount` | string | Par amount of the security |
89
+ | `coupon` | string | Coupon rate (e.g. "7.000%" or "Variable") |
90
+ | `maturity_date` | string | Maturity date |
91
+ | `settlement_date` | string | Settlement date |
92
+ | `settlement_price` | string | Settlement price (e.g. "100.000") |
93
+ | `yield` | string | Yield on the security |
94
+ | `accreted_price` | string | Accreted price |
95
+ | `accrued_interest` | string | Accrued interest amount |
96
+ | `value` | string | Total value (par + accrued interest) |
97
+
98
+ Expected entities (scoped per fund via `entity_context_from_title`):
99
+ - Morgan IA (7% coupon, institutional investment)
100
+ - Federated MM (variable rate money market fund)
101
+
102
+ ### legal_agreement
103
+
104
+ Governing legal documents referenced in the reports.
105
+
106
+ | Property | Type | Description |
107
+ |----------|------|-------------|
108
+ | `agreement_type` | string | Type: `arbitrage_certificate`, `trust_indenture`, `engagement_letter` |
109
+ | `description` | string | Description of the agreement's role |
110
+
111
+ Expected entities:
112
+ - Certificate as to Arbitrage (Section 8, Section 21 referenced)
113
+ - Prior Report (Willdan Financial Services, December 17, 2008)
114
+
115
+ ### location
116
+
117
+ Addresses and jurisdictions.
118
+
119
+ Expected entities:
120
+ - Trenton, NJ (Issuer address)
121
+ - Dallas, TX (BLX Group address)
122
+ - New York, NY (Orrick address)
123
+ - State of New Jersey
124
+
125
+ ### person
126
+
127
+ Signatories, if extractable from signatures on transmittal letters and opinions.
128
+ May be sparse — many PDFs have illegible or absent signature blocks.
129
+
130
+ ## Relationships
131
+
132
+ | Relationship | Domain | Target | Description |
133
+ |-------------|--------|--------|-------------|
134
+ | `issuer_of` | organization | bond | Issuer issued the bonds |
135
+ | `trustee_of` | organization | bond | Trustee of the bond issue |
136
+ | `advisor_to` | organization | bond | BLX Group as rebate analyst; Orrick as bond counsel |
137
+ | `fund_of` | fund_account | bond | Fund account belongs to the bond issue |
138
+ | `holds_investment` | fund_account | financial_instrument | Fund holds a security as an investment |
139
+ | `party_to` | organization | legal_agreement | Entity is party to an agreement |
140
+ | `located_at` | organization | location | Organization's address |
141
+ | `predecessor_of` | legal_agreement | legal_agreement | Prior Report preceded current Report |
142
+
143
+ ## Events
144
+
145
+ | Event | Severity | Description |
146
+ |-------|----------|-------------|
147
+ | Rebate computation | medium | Periodic computation of arbitrage rebate liability |
148
+ | Bond issuance | high | Original issuance of the bonds (October 17, 1991) |
149
+ | Bond refunding | high | Refunding of prior 1985 Series F and G bonds |
150
+ | Fund valuation | medium | Valuation of fund accounts at computation date |
151
+ | Rebate payment determination | high | Determination that rebate payment is/isn't due |
152
+ | Report issuance | low | Issuance of this rebate analysis report |
153
+
154
+ ## Table Extraction
155
+
156
+ ### Schedule A — Summary of Rebate Analysis
157
+
158
+ Maps to `rebate_analysis` table config. Key column: Fund Description.
159
+ Each row becomes a `fund_account` entity with properties for status,
160
+ valuation, earnings, IRR, and excess earnings.
161
+
162
+ ### Schedule B — Sources & Uses of Funds
163
+
164
+ Maps to `sources_of_funds` and `uses_of_funds` table configs. Uses
165
+ `document_entity_from_title` mode to attach line items as properties
166
+ on the bond entity.
167
+
168
+ ### Security Holdings (Schedules C1, D1, F1, G1)
169
+
170
+ Maps to `security_tables` config. Key column: Security Type. Each
171
+ security becomes a `financial_instrument` entity scoped by fund
172
+ account title. Properties: par amount, coupon, maturity, yield, etc.
173
+
174
+ ### Cash Flow Tables (Schedules C2, D2, E1, F2, G2)
175
+
176
+ New table config needed. These are the largest tables — hundreds of rows
177
+ of deposit/withdrawal transactions for each fund account. Columns:
178
+ Date, Description, Cash Flow, Muni-Days/Computation Date, FV Factor
179
+ at bond yield, FV As Of at bond yield, FV Factor at IRR, FV As Of at IRR.
180
+
181
+ ## Citations
182
+
183
+ All extracted data should cite the specific schedule and page number
184
+ within the source PDF. The PDF filename serves as the document identifier.