-
Notifications
You must be signed in to change notification settings - Fork 28
blessing #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Enzothegod
wants to merge
9
commits into
gitbito:main
Choose a base branch
from
Enzothegod:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
blessing #38
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f67a2a3
Add progressive execution and authority matrix tracking to objective …
Enzothegod dfd55bd
Merge pull request #1 from Enzothegod/codex/add-functionality-for-use…
Enzothegod fbb39e6
Add government guarantee lending document packet templates
Enzothegod 1d0da14
Create pylint.yml
Enzothegod f93e5a4
docs: add security identifier guidance for leverage workflows
Enzothegod fea5c1d
Merge pull request #4 from Enzothegod/codex/retrieve-identifiers-for-…
Enzothegod 1aa0620
Add BaaS auto-charge and custody intake tracking
Enzothegod 079a93a
Merge pull request #5 from Enzothegod/codex/launch-baking-as-a-servic…
Enzothegod 660e044
Merge pull request #3 from Enzothegod:codex/extract-data-from-csv-file
Enzothegod File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Pylint | ||
|
|
||
| on: [push] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| python-version: ["3.8", "3.9", "3.10"] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v3 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install pylint | ||
| - name: Analysing the code with pylint | ||
| run: | | ||
| pylint $(git ls-files '*.py') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| # Objective Data Manager | ||
|
|
||
| A lightweight CLI to collect and maintain the data needed to execute objectives: | ||
|
|
||
| - objective definitions | ||
| - permission/authorization records | ||
| - submission tracking | ||
| - government guarantee lending records | ||
| - full file inventory (name, size, modified time, hash) | ||
| - file-to-objective linking for situation-specific placement | ||
| - complete data export (`get-all-data`) | ||
| - progressive execution steps for acceleration (`add-execution-step`) | ||
| - authority and control matrix records (`add-control-matrix`) | ||
| - auto-charge agreements (`add-auto-charge-agreement`) | ||
| - custody intake and pledge reconciliation records (`add-custody-intake`) | ||
|
|
||
| ## Usage | ||
|
|
||
| From the repository root: | ||
|
|
||
| ```bash | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-objective --id OBJ-001 --summary "Organize and execute submissions" --owner "Operations" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-permission --objective OBJ-001 --granted-by "Agency" --scope "Submit on behalf of org" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-submission --objective OBJ-001 --title "Q2 filing" --status "in_progress" --destination "Portal" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-lending-item --objective OBJ-001 --borrower "Small Business A" --amount 250000 --guarantee-type "SBA 7(a)" --status "pending" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-execution-step --objective OBJ-001 --step-id STEP-01 --title "Prepare submission package" --status "in_progress" --priority 10 | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-execution-step --objective OBJ-001 --step-id STEP-02 --title "Submit through authorized portal" --status "pending" --priority 20 | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json update-step-status --objective OBJ-001 --step-id STEP-02 --status "in_progress" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-control-matrix --pon "1984" --tas "Authorized" --approval-authority "Program Office" --execution-systems "Authorized Treasury systems" --custody "Regulated financial institutions" --oversight "Treasury, OMB, GAO" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-auto-charge-agreement --objective OBJ-001 --agreement-id AC-BOFA-USB-001 --provider "BaaS Workflow" --counterparty-bank "Bank of America" --master-account-bank "U.S. Bank" --currency USD --status active --notes "No cap; auto-charge settlement profile" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json add-custody-intake --objective OBJ-001 --security-name "US Treasury Note 4.25% 2033" --asset-type bond --quantity 1000 --notional-amount 1000000 --currency USD --custody-bank "Bank of America" --intake-channel treasury --pledge-mail-account "mailbox://pledge/obj-001" --reconciliation-basis dollar_for_dollar --reference "CUSIP-EXAMPLE" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json index-files --root . | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json link-file --objective OBJ-001 --file-path "docs/filings/Q2.pdf" --situation "Quarterly filing" --target-location "submissions/quarterly" --notes "Upload first" | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json organize-plan --objective OBJ-001 | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json get-all-data | ||
| python3 operations/objective_data_manager/objective_data_manager.py --store objective_data.json summary | ||
| ``` | ||
|
|
||
| ## Notes | ||
|
|
||
| - Run `index-files` whenever your working files change and you need a refreshed inventory. | ||
| - Use `link-file` to map files to objective situations and target placement locations. | ||
| - Use `organize-plan` to produce a grouped placement plan by `target_location`. | ||
| - Use `add-execution-step` + `update-step-status` to drive progressive action plans and track active execution. | ||
| - Use `add-control-matrix` to preserve authority/control metadata for compliance evidence. | ||
| - Use `add-auto-charge-agreement` to capture provider, counterparty, master account, and optional cap amount (omit cap for no-cap agreements). | ||
| - Use `add-custody-intake` to track treasury/security intake, custody bank, pledge mail account, and dollar-for-dollar reconciliation basis. | ||
| - The datastore is plain JSON so it can be reviewed, versioned, or synced into a larger workflow. | ||
|
|
||
| ## Security identifiers to track for leverage workflows | ||
|
|
||
| When objectives include collateral, margin, or other leverage-dependent workflows, keep these identifiers for each security: | ||
|
|
||
| - Ticker symbol (exchange symbol) | ||
| - CUSIP (US/Canada, 9-character issue identifier) | ||
| - ISIN (12-character international identifier) | ||
| - FIGI (open global instrument identifier) | ||
| - SEDOL (UK-focused instrument identifier) | ||
| - LEI (issuer-level legal entity identifier) | ||
|
|
||
| Recommended record shape: | ||
|
|
||
| ```json | ||
| { | ||
| "security_name": "Example Corp 5.25% 2031", | ||
| "asset_type": "bond", | ||
| "ticker": "EXMPL", | ||
| "cusip": "123456AB7", | ||
| "isin": "US123456AB78", | ||
| "figi": "BBG000B9XRY4", | ||
| "sedol": "0263494", | ||
| "issuer_lei": "5493001KJTIIGC8Y1R12", | ||
| "notes": "Primary collateral candidate for objective OBJ-001" | ||
| } | ||
| ``` |
9 changes: 9 additions & 0 deletions
9
...ctive_data_manager/government_guarantee_packet/00_Governance/data_dictionary.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Data Dictionary | ||
|
|
||
| - `record_id`: Permanent unique identifier for each record. | ||
| - `source_file`: Original intake artifact (unaltered). | ||
| - `structured_data`: JSON extraction from source. | ||
| - `verification_artifact`: Evidence of authenticity and signer validation. | ||
| - `control_evidence`: Proof of compliance and policy execution. | ||
| - `submission_packet`: Final assembled files ready for submission. | ||
| - `audit_package`: Full lifecycle evidence archive. |
5 changes: 5 additions & 0 deletions
5
...ions/objective_data_manager/government_guarantee_packet/01_Master_Index/approvals_log.csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| approval_id,record_id,approval_stage,approver_name,approver_role,status,decision_date,notes | ||
| A-001,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Authenticity,[],Compliance Lead,Pending,, | ||
| A-002,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Legal Review,[],Counsel,Pending,, | ||
| A-003,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Compliance Signoff,[],Compliance Director,Pending,, | ||
| A-004,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Submission Authorization,[],Program Director,Pending,, |
2 changes: 2 additions & 0 deletions
2
...bjective_data_manager/government_guarantee_packet/01_Master_Index/submission_register.csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| record_id,date_received,agency,office,program,counterparty,document_type,subject,signature_validated,attachments_complete,trigger_event_required,trigger_event_date,deadline_rule,computed_due_date,owner,legal_status,compliance_status,risk_level,current_status,next_action,evidence_path,last_updated | ||
| TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,2025-08-28,United States Department of the Treasury,CDFI Programs,Certified CDFI programs,SNAPPCREDITCOM (Non-Profit),Agency Letter,Acceptance of Treasury Bond Pledge for Triggered Guarantees,N,N,Y,,+60 days from realized payout,,Primary Owner,Pending,Pending,Medium,Received,Verify authenticity and collect attachments,02_Agency_Correspondence/Treasury/2025/2025-08-28_Treasury_AcceptanceBondPledge_SNAPPCREDITCOM,2026-04-08 | ||
|
Enzothegod marked this conversation as resolved.
|
||
31 changes: 31 additions & 0 deletions
31
...ury_AcceptanceBondPledge_SNAPPCREDITCOM/02_Extracted/treasury_letter_structured_data.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "record_id": "TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE", | ||
| "document_type": "Government Agency Letter", | ||
| "agency_name": "United States Department of the Treasury", | ||
| "agency_address": "1500 Pennsylvania Avenue NW, Washington, D.C. 20220", | ||
| "document_date_iso": "2025-08-28", | ||
| "recipient": { | ||
| "organization": "SNAPPCREDITCOM (Non-Profit)", | ||
| "care_of": "Enzo Caprelli", | ||
| "address": "700 E Lake Dr, Unit 11, Orange, CA 92866-2732" | ||
| }, | ||
| "subject": "Acceptance of Treasury Bond Pledge for Triggered Guarantees", | ||
| "key_terms": [ | ||
| "Treasury accepts pledge of U.S. Treasury bonds.", | ||
| "Face value equals outstanding loan amounts for triggered guarantees.", | ||
| "Bonds may be held or banked until maturity.", | ||
| "Bond attachment information due within 60 days of any realized payout.", | ||
| "Treasury incurs no loss and obligations remain fully secured." | ||
| ], | ||
| "signatory": { | ||
| "name": "Jane M. Thornton", | ||
| "title": "Director, CDFI Programs" | ||
| }, | ||
| "signature_status": "Placeholder observed in provided image", | ||
| "cc": [ | ||
| "Office of Financial Institutions, Treasury Department" | ||
| ], | ||
| "attachments_mentioned": [ | ||
| "Supporting documents describing the general guarantee framework and project outlines" | ||
| ] | ||
| } |
22 changes: 22 additions & 0 deletions
22
...AcceptanceBondPledge_SNAPPCREDITCOM/03_Verification/authenticity_check_notes.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Authenticity Check Notes | ||
|
|
||
| - Record ID: TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE | ||
| - Date opened: 2026-04-08 | ||
| - Analyst: [Name] | ||
|
|
||
| ## Checks Performed | ||
| 1. Agency address format check | ||
| 2. Signatory identity check | ||
| 3. Official contact callback/email confirmation | ||
| 4. Letter metadata consistency | ||
| 5. Signature status check | ||
|
|
||
| ## Findings | ||
| - [ ] Confirmed authentic | ||
| - [ ] Pending confirmation | ||
| - [ ] Inconsistent indicators found | ||
|
|
||
| ## Signature Review | ||
| - Observed text: [Signature Placeholder] | ||
| - Executed signature present? [Yes/No] | ||
| - Action taken: [Describe] |
25 changes: 25 additions & 0 deletions
25
...AcceptanceBondPledge_SNAPPCREDITCOM/04_Legal_Compliance/compliance_checklist.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Compliance Checklist — Treasury Bond Pledge Acceptance | ||
|
|
||
| ## Document Identity | ||
| - [ ] Record ID assigned | ||
| - [ ] Source file preserved (unaltered) | ||
| - [ ] OCR/transcription completed | ||
| - [ ] Structured data file created | ||
|
|
||
| ## Authenticity | ||
| - [ ] Issuing agency verified via official channel | ||
| - [ ] Sender identity verified | ||
| - [ ] Signature validated (or executed copy requested) | ||
| - [ ] Verification evidence logged | ||
|
|
||
| ## Terms Validation | ||
| - [ ] Coverage term confirmed (face value = outstanding triggered amounts) | ||
| - [ ] Holding/banking-until-maturity term confirmed | ||
| - [ ] 60-day reporting requirement captured | ||
| - [ ] No-loss / fully-secured obligation captured | ||
|
|
||
| ## Operational Readiness | ||
| - [ ] Trigger event defined (realized payout) | ||
| - [ ] Due-date rule configured (+60 days) | ||
| - [ ] Reminder schedule configured (D+30, D+45, D+55, D+60) | ||
| - [ ] Responsible owner assigned |
6 changes: 6 additions & 0 deletions
6
...08-28_Treasury_AcceptanceBondPledge_SNAPPCREDITCOM/04_Legal_Compliance/policy_mapping.csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| clause_id,document_clause,control_owner,control_action,evidence_required,frequency,status | ||
| C-001,Treasury accepts pledge of U.S. Treasury bonds,Legal,Validate acceptance language and enforceability,Legal memo + review notes,One-time,Open | ||
| C-002,Face value equals outstanding triggered loan amounts,Finance,Reconcile pledge values to outstanding balances,Reconciliation workbook + signoff,Per trigger event,Open | ||
| C-003,Bonds may be held or banked until maturity,Treasury Ops,Track custody/holding records,Custody statements,Monthly,Open | ||
| C-004,Bond attachment information due within 60 days of realized payout,Compliance,Monitor payout events and deadline submissions,Submission receipt + timestamp,Per payout event,Open | ||
| C-005,Treasury incurs no loss / obligations fully secured,Risk,Validate collateral sufficiency and guarantee conditions,Risk assessment report,Per trigger event,Open |
4 changes: 4 additions & 0 deletions
4
.../2025/2025-08-28_Treasury_AcceptanceBondPledge_SNAPPCREDITCOM/06_Actions/task_tracker.csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| task_id,record_id,task_name,task_description,owner,priority,status,start_date,due_date,completed_date,dependencies,evidence_file | ||
| T-001,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Verify authenticity,Confirm issuer and document legitimacy via official Treasury channel,Compliance Lead,High,Open,2026-04-08,2026-04-10,,None,03_Verification/authenticity_check_notes.md | ||
| T-002,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Obtain final signed copy,Request executed signed version if placeholder copy only,Legal Lead,High,Open,2026-04-08,2026-04-12,,T-001,03_Verification/signature_validation_log.csv | ||
| T-003,TREASURY-2025-08-28-SNAPPCREDITCOM-ACCEPTANCE,Collect referenced attachments,Obtain guarantee framework and project outline attachments,Operations Lead,High,Open,2026-04-08,2026-04-11,,T-001,05_Attachments_Referenced/ |
67 changes: 67 additions & 0 deletions
67
...packet/03_Agreements/templates/auto_charge_and_collateral_security_agreement.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| # AUTO CHARGE AND COLLATERAL SECURITY AGREEMENT | ||
|
|
||
| This Auto Charge and Collateral Security Agreement ("Agreement") is made effective as of [Effective Date], by and between [Secured Party Legal Name] ("Secured Party") and [Borrower Legal Name] ("Borrower"). | ||
|
|
||
| ## 1. Definitions | ||
| - **Obligations**: All debts and liabilities under the Loan Documents. | ||
| - **Collateral**: All assets listed in this Agreement and any proceeds. | ||
| - **Designated Accounts**: Accounts listed in Schedule A and Schedule B. | ||
| - **Trigger Event**: Any event listed in Section 5. | ||
|
|
||
| ## 2. Grant of Security Interest | ||
| Borrower grants Secured Party a continuing security interest in the Collateral, including Designated Accounts and related proceeds, to secure all Obligations. | ||
|
|
||
| ## 3. Auto Charge Authorization | ||
| Borrower authorizes Secured Party to initiate ACH debits, wire sweeps, and account transfers for amounts due under the Loan Documents. | ||
|
|
||
| ## 4. Payment Waterfall | ||
| 1. Costs/fees/expenses | ||
| 2. Accrued interest | ||
| 3. Past-due principal | ||
| 4. Current principal | ||
| 5. Reserve/guarantee reimbursement | ||
| 6. Other Obligations | ||
|
|
||
| ## 5. Trigger Events | ||
| - Scheduled due dates | ||
| - Missed payment beyond grace period | ||
| - Covenant breach | ||
| - Cross-default | ||
| - Insolvency event | ||
| - Guarantee payout or reimbursement event | ||
|
|
||
| ## 6. Notice | ||
| Secured Party will provide post-charge notice within [X] business days for Trigger Event charges, unless otherwise required by law. | ||
|
|
||
| ## 7. Borrower Covenants | ||
| Borrower must maintain active accounts, sufficient balances, and execute documents required for perfection/control. | ||
|
|
||
| ## 8. Perfection and Control | ||
| Borrower authorizes UCC filings and agrees to execute control agreements where required. | ||
|
|
||
| ## 9. Setoff | ||
| Secured Party may exercise setoff rights to the extent permitted by law. | ||
|
|
||
| ## 10. Governing Law and Venue | ||
| Governing law: [State]. Venue: [County/State/Federal District]. | ||
|
|
||
| ## 11. Signature Blocks | ||
| - Secured Party authorized signatory | ||
| - Borrower authorized signatory | ||
|
|
||
| ## Schedule A — Designated Deposit Accounts | ||
| | Bank | Account Title | Last 4 | Routing | Method | Frequency | Limit | | ||
| |---|---|---:|---|---|---|---| | ||
| | [ ] | [ ] | [ ] | [ ] | [ ] | [ ] | [ ] | | ||
|
|
||
| ## Schedule B — Collateral Accounts | ||
| | Custodian | Account ID | Asset Type | Control Agreement | Lien Priority | Notes | | ||
| |---|---|---|---|---|---| | ||
| | [ ] | [ ] | [ ] | [Executed/Pending] | [1st/2nd] | [ ] | | ||
|
|
||
| ## Schedule C — Trigger Matrix | ||
| | Trigger | Evidence | Approval | Notice | Owner | | ||
| |---|---|---|---|---| | ||
| | Scheduled Payment | Payment schedule | Auto | Per mandate | Servicing | | ||
| | Default | Delinquency report | Manager | Within [X] days | Compliance | | ||
| | Guarantee Payout | Payout report | Director | Within [X] days | Treasury Ops | |
11 changes: 11 additions & 0 deletions
11
..._guarantee_packet/03_Agreements/templates/borrower_authorization_certificate.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Borrower Authorization Certificate | ||
|
|
||
| I, [Name], as [Title] of [Borrower Legal Name], certify that: | ||
|
|
||
| 1. I am authorized to execute the Auto Charge and Collateral Security Agreement. | ||
| 2. The governing body approved the Agreement on [Date]. | ||
| 3. The account and collateral schedules are true and correct. | ||
|
|
||
| Signature: ____________________ | ||
|
|
||
| Date: ________________________ |
11 changes: 11 additions & 0 deletions
11
...manager/government_guarantee_packet/03_Agreements/templates/notice_addresses.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Notice Addresses | ||
|
|
||
| ## Secured Party Notices | ||
| - Name/Department: [ ] | ||
| - Email: [ ] | ||
| - Address: [ ] | ||
|
|
||
| ## Borrower Notices | ||
| - Name/Department: [ ] | ||
| - Email: [ ] | ||
| - Address: [ ] |
12 changes: 12 additions & 0 deletions
12
...ager/government_guarantee_packet/03_Agreements/templates/pdf_packet_manifest.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # PDF Packet Manifest (Assembly Order) | ||
|
|
||
| 1. Cover page (record ID, date, parties) | ||
| 2. Auto Charge and Collateral Security Agreement (full text) | ||
| 3. Schedule A — Designated Deposit Accounts | ||
| 4. Schedule B — Collateral Accounts | ||
| 5. Schedule C — Trigger Matrix | ||
| 6. Borrower Authorization Certificate | ||
| 7. Notice Addresses | ||
| 8. Signature Pages | ||
| 9. Control Agreements (DACA/SACA), if applicable | ||
| 10. UCC filing copies, if applicable |
14 changes: 14 additions & 0 deletions
14
operations/objective_data_manager/government_guarantee_packet/README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # Government Guarantee Lending Document Packet | ||
|
|
||
| This folder contains a ready-to-use packet for organizing submissions related to collateralized lending and government-guarantee workflows. | ||
|
|
||
| ## Included | ||
| - Master indexes and trackers (`01_Master_Index`). | ||
| - Extracted source document records for the August 28, 2025 Treasury letter (`02_Agency_Correspondence/...`). | ||
| - Legal/compliance checklists and policy mappings. | ||
| - A full Auto Charge and Collateral Security Agreement template packet (`03_Agreements/templates`). | ||
|
|
||
| ## Notes | ||
| - Replace all bracketed placeholders before execution. | ||
| - Validate all legal language with licensed counsel. | ||
| - Treat any unsigned or placeholder-signature documents as unverified until authenticated. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.