pigeongov 0.2.0
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/AGENTS.md +258 -0
- package/LICENSE +21 -0
- package/PRIVACY.md +38 -0
- package/README.md +234 -0
- package/agents.json +72 -0
- package/dist/bin/pigeongov.d.ts +2 -0
- package/dist/bin/pigeongov.js +4 -0
- package/dist/bin/pigeongov.js.map +1 -0
- package/dist/src/advisory/decision-support/contribution-optimizer.d.ts +36 -0
- package/dist/src/advisory/decision-support/contribution-optimizer.js +88 -0
- package/dist/src/advisory/decision-support/contribution-optimizer.js.map +1 -0
- package/dist/src/advisory/decision-support/deduction-optimizer.d.ts +31 -0
- package/dist/src/advisory/decision-support/deduction-optimizer.js +96 -0
- package/dist/src/advisory/decision-support/deduction-optimizer.js.map +1 -0
- package/dist/src/advisory/life-events/events.d.ts +4 -0
- package/dist/src/advisory/life-events/events.js +156 -0
- package/dist/src/advisory/life-events/events.js.map +1 -0
- package/dist/src/advisory/life-events/planner.d.ts +19 -0
- package/dist/src/advisory/life-events/planner.js +72 -0
- package/dist/src/advisory/life-events/planner.js.map +1 -0
- package/dist/src/advisory/screener/engine.d.ts +4 -0
- package/dist/src/advisory/screener/engine.js +368 -0
- package/dist/src/advisory/screener/engine.js.map +1 -0
- package/dist/src/advisory/screener/intake.d.ts +68 -0
- package/dist/src/advisory/screener/intake.js +93 -0
- package/dist/src/advisory/screener/intake.js.map +1 -0
- package/dist/src/analytics/stats.d.ts +18 -0
- package/dist/src/analytics/stats.js +158 -0
- package/dist/src/analytics/stats.js.map +1 -0
- package/dist/src/api/handlers/deadlines.d.ts +2 -0
- package/dist/src/api/handlers/deadlines.js +7 -0
- package/dist/src/api/handlers/deadlines.js.map +1 -0
- package/dist/src/api/handlers/openapi.d.ts +2 -0
- package/dist/src/api/handlers/openapi.js +7 -0
- package/dist/src/api/handlers/openapi.js.map +1 -0
- package/dist/src/api/handlers/workflows.d.ts +5 -0
- package/dist/src/api/handlers/workflows.js +73 -0
- package/dist/src/api/handlers/workflows.js.map +1 -0
- package/dist/src/api/index.d.ts +20 -0
- package/dist/src/api/index.js +70 -0
- package/dist/src/api/index.js.map +1 -0
- package/dist/src/api/openapi.d.ts +5 -0
- package/dist/src/api/openapi.js +384 -0
- package/dist/src/api/openapi.js.map +1 -0
- package/dist/src/api/router.d.ts +19 -0
- package/dist/src/api/router.js +57 -0
- package/dist/src/api/router.js.map +1 -0
- package/dist/src/cli/commands/completions.d.ts +2 -0
- package/dist/src/cli/commands/completions.js +396 -0
- package/dist/src/cli/commands/completions.js.map +1 -0
- package/dist/src/cli/commands/deadlines.d.ts +2 -0
- package/dist/src/cli/commands/deadlines.js +47 -0
- package/dist/src/cli/commands/deadlines.js.map +1 -0
- package/dist/src/cli/commands/doctor.d.ts +2 -0
- package/dist/src/cli/commands/doctor.js +50 -0
- package/dist/src/cli/commands/doctor.js.map +1 -0
- package/dist/src/cli/commands/drafts.d.ts +2 -0
- package/dist/src/cli/commands/drafts.js +75 -0
- package/dist/src/cli/commands/drafts.js.map +1 -0
- package/dist/src/cli/commands/extract.d.ts +2 -0
- package/dist/src/cli/commands/extract.js +17 -0
- package/dist/src/cli/commands/extract.js.map +1 -0
- package/dist/src/cli/commands/fees.d.ts +2 -0
- package/dist/src/cli/commands/fees.js +40 -0
- package/dist/src/cli/commands/fees.js.map +1 -0
- package/dist/src/cli/commands/fill.d.ts +25 -0
- package/dist/src/cli/commands/fill.js +354 -0
- package/dist/src/cli/commands/fill.js.map +1 -0
- package/dist/src/cli/commands/glossary.d.ts +2 -0
- package/dist/src/cli/commands/glossary.js +90 -0
- package/dist/src/cli/commands/glossary.js.map +1 -0
- package/dist/src/cli/commands/life-event.d.ts +2 -0
- package/dist/src/cli/commands/life-event.js +41 -0
- package/dist/src/cli/commands/life-event.js.map +1 -0
- package/dist/src/cli/commands/list.d.ts +2 -0
- package/dist/src/cli/commands/list.js +19 -0
- package/dist/src/cli/commands/list.js.map +1 -0
- package/dist/src/cli/commands/machine.d.ts +2 -0
- package/dist/src/cli/commands/machine.js +100 -0
- package/dist/src/cli/commands/machine.js.map +1 -0
- package/dist/src/cli/commands/merge.d.ts +2 -0
- package/dist/src/cli/commands/merge.js +24 -0
- package/dist/src/cli/commands/merge.js.map +1 -0
- package/dist/src/cli/commands/plugin.d.ts +2 -0
- package/dist/src/cli/commands/plugin.js +119 -0
- package/dist/src/cli/commands/plugin.js.map +1 -0
- package/dist/src/cli/commands/profile.d.ts +2 -0
- package/dist/src/cli/commands/profile.js +125 -0
- package/dist/src/cli/commands/profile.js.map +1 -0
- package/dist/src/cli/commands/review.d.ts +2 -0
- package/dist/src/cli/commands/review.js +25 -0
- package/dist/src/cli/commands/review.js.map +1 -0
- package/dist/src/cli/commands/scaffold.d.ts +2 -0
- package/dist/src/cli/commands/scaffold.js +304 -0
- package/dist/src/cli/commands/scaffold.js.map +1 -0
- package/dist/src/cli/commands/schemas.d.ts +2 -0
- package/dist/src/cli/commands/schemas.js +14 -0
- package/dist/src/cli/commands/schemas.js.map +1 -0
- package/dist/src/cli/commands/screen.d.ts +2 -0
- package/dist/src/cli/commands/screen.js +89 -0
- package/dist/src/cli/commands/screen.js.map +1 -0
- package/dist/src/cli/commands/serve.d.ts +2 -0
- package/dist/src/cli/commands/serve.js +46 -0
- package/dist/src/cli/commands/serve.js.map +1 -0
- package/dist/src/cli/commands/start.d.ts +2 -0
- package/dist/src/cli/commands/start.js +16 -0
- package/dist/src/cli/commands/start.js.map +1 -0
- package/dist/src/cli/commands/stats.d.ts +2 -0
- package/dist/src/cli/commands/stats.js +17 -0
- package/dist/src/cli/commands/stats.js.map +1 -0
- package/dist/src/cli/commands/testdata.d.ts +2 -0
- package/dist/src/cli/commands/testdata.js +60 -0
- package/dist/src/cli/commands/testdata.js.map +1 -0
- package/dist/src/cli/commands/tui.d.ts +2 -0
- package/dist/src/cli/commands/tui.js +26 -0
- package/dist/src/cli/commands/tui.js.map +1 -0
- package/dist/src/cli/commands/validate.d.ts +2 -0
- package/dist/src/cli/commands/validate.js +22 -0
- package/dist/src/cli/commands/validate.js.map +1 -0
- package/dist/src/cli/commands/vault.d.ts +2 -0
- package/dist/src/cli/commands/vault.js +73 -0
- package/dist/src/cli/commands/vault.js.map +1 -0
- package/dist/src/cli/commands/workflows.d.ts +2 -0
- package/dist/src/cli/commands/workflows.js +23 -0
- package/dist/src/cli/commands/workflows.js.map +1 -0
- package/dist/src/cli/display/review.d.ts +2 -0
- package/dist/src/cli/display/review.js +4 -0
- package/dist/src/cli/display/review.js.map +1 -0
- package/dist/src/cli/display/summary.d.ts +2 -0
- package/dist/src/cli/display/summary.js +19 -0
- package/dist/src/cli/display/summary.js.map +1 -0
- package/dist/src/cli/display/validation.d.ts +2 -0
- package/dist/src/cli/display/validation.js +16 -0
- package/dist/src/cli/display/validation.js.map +1 -0
- package/dist/src/cli/index.d.ts +1 -0
- package/dist/src/cli/index.js +83 -0
- package/dist/src/cli/index.js.map +1 -0
- package/dist/src/cli/output.d.ts +21 -0
- package/dist/src/cli/output.js +107 -0
- package/dist/src/cli/output.js.map +1 -0
- package/dist/src/cli/prompts/common.d.ts +21 -0
- package/dist/src/cli/prompts/common.js +53 -0
- package/dist/src/cli/prompts/common.js.map +1 -0
- package/dist/src/cli/prompts/credits.d.ts +3 -0
- package/dist/src/cli/prompts/credits.js +23 -0
- package/dist/src/cli/prompts/credits.js.map +1 -0
- package/dist/src/cli/prompts/deductions.d.ts +12 -0
- package/dist/src/cli/prompts/deductions.js +26 -0
- package/dist/src/cli/prompts/deductions.js.map +1 -0
- package/dist/src/cli/prompts/identity.d.ts +8 -0
- package/dist/src/cli/prompts/identity.js +36 -0
- package/dist/src/cli/prompts/identity.js.map +1 -0
- package/dist/src/cli/prompts/income.d.ts +15 -0
- package/dist/src/cli/prompts/income.js +61 -0
- package/dist/src/cli/prompts/income.js.map +1 -0
- package/dist/src/cli/prompts/workflow.d.ts +3 -0
- package/dist/src/cli/prompts/workflow.js +74 -0
- package/dist/src/cli/prompts/workflow.js.map +1 -0
- package/dist/src/cli/support.d.ts +53 -0
- package/dist/src/cli/support.js +80 -0
- package/dist/src/cli/support.js.map +1 -0
- package/dist/src/cli/tui.d.ts +22 -0
- package/dist/src/cli/tui.js +122 -0
- package/dist/src/cli/tui.js.map +1 -0
- package/dist/src/engine/audit-risk/scorer.d.ts +36 -0
- package/dist/src/engine/audit-risk/scorer.js +132 -0
- package/dist/src/engine/audit-risk/scorer.js.map +1 -0
- package/dist/src/engine/crypto/cost-basis.d.ts +19 -0
- package/dist/src/engine/crypto/cost-basis.js +115 -0
- package/dist/src/engine/crypto/cost-basis.js.map +1 -0
- package/dist/src/engine/crypto/transaction-parser.d.ts +36 -0
- package/dist/src/engine/crypto/transaction-parser.js +124 -0
- package/dist/src/engine/crypto/transaction-parser.js.map +1 -0
- package/dist/src/engine/crypto/wash-sale.d.ts +25 -0
- package/dist/src/engine/crypto/wash-sale.js +51 -0
- package/dist/src/engine/crypto/wash-sale.js.map +1 -0
- package/dist/src/engine/equity/espp.d.ts +41 -0
- package/dist/src/engine/equity/espp.js +90 -0
- package/dist/src/engine/equity/espp.js.map +1 -0
- package/dist/src/engine/equity/iso.d.ts +42 -0
- package/dist/src/engine/equity/iso.js +94 -0
- package/dist/src/engine/equity/iso.js.map +1 -0
- package/dist/src/engine/equity/nso.d.ts +35 -0
- package/dist/src/engine/equity/nso.js +63 -0
- package/dist/src/engine/equity/nso.js.map +1 -0
- package/dist/src/engine/equity/rsu.d.ts +33 -0
- package/dist/src/engine/equity/rsu.js +64 -0
- package/dist/src/engine/equity/rsu.js.map +1 -0
- package/dist/src/engine/field-mapper.d.ts +26 -0
- package/dist/src/engine/field-mapper.js +119 -0
- package/dist/src/engine/field-mapper.js.map +1 -0
- package/dist/src/engine/forms/core-1040.d.ts +2 -0
- package/dist/src/engine/forms/core-1040.js +124 -0
- package/dist/src/engine/forms/core-1040.js.map +1 -0
- package/dist/src/engine/forms/form-8949.d.ts +21 -0
- package/dist/src/engine/forms/form-8949.js +96 -0
- package/dist/src/engine/forms/form-8949.js.map +1 -0
- package/dist/src/engine/forms/index.d.ts +7 -0
- package/dist/src/engine/forms/index.js +6 -0
- package/dist/src/engine/forms/index.js.map +1 -0
- package/dist/src/engine/forms/schedule-b.d.ts +15 -0
- package/dist/src/engine/forms/schedule-b.js +78 -0
- package/dist/src/engine/forms/schedule-b.js.map +1 -0
- package/dist/src/engine/forms/schedule-d.d.ts +9 -0
- package/dist/src/engine/forms/schedule-d.js +86 -0
- package/dist/src/engine/forms/schedule-d.js.map +1 -0
- package/dist/src/engine/fpl.d.ts +70 -0
- package/dist/src/engine/fpl.js +127 -0
- package/dist/src/engine/fpl.js.map +1 -0
- package/dist/src/engine/gig/home-office.d.ts +34 -0
- package/dist/src/engine/gig/home-office.js +53 -0
- package/dist/src/engine/gig/home-office.js.map +1 -0
- package/dist/src/engine/gig/mileage.d.ts +30 -0
- package/dist/src/engine/gig/mileage.js +45 -0
- package/dist/src/engine/gig/mileage.js.map +1 -0
- package/dist/src/engine/gig/multi-1099.d.ts +19 -0
- package/dist/src/engine/gig/multi-1099.js +28 -0
- package/dist/src/engine/gig/multi-1099.js.map +1 -0
- package/dist/src/engine/multiyear/carryforward.d.ts +31 -0
- package/dist/src/engine/multiyear/carryforward.js +77 -0
- package/dist/src/engine/multiyear/carryforward.js.map +1 -0
- package/dist/src/engine/multiyear/compare.d.ts +25 -0
- package/dist/src/engine/multiyear/compare.js +94 -0
- package/dist/src/engine/multiyear/compare.js.map +1 -0
- package/dist/src/engine/multiyear/import.d.ts +23 -0
- package/dist/src/engine/multiyear/import.js +193 -0
- package/dist/src/engine/multiyear/import.js.map +1 -0
- package/dist/src/engine/optimizer/filing-status.d.ts +29 -0
- package/dist/src/engine/optimizer/filing-status.js +66 -0
- package/dist/src/engine/optimizer/filing-status.js.map +1 -0
- package/dist/src/engine/orchestrator.d.ts +14 -0
- package/dist/src/engine/orchestrator.js +135 -0
- package/dist/src/engine/orchestrator.js.map +1 -0
- package/dist/src/engine/scenarios/whatif.d.ts +34 -0
- package/dist/src/engine/scenarios/whatif.js +70 -0
- package/dist/src/engine/scenarios/whatif.js.map +1 -0
- package/dist/src/engine/state/ca/calculator.d.ts +3 -0
- package/dist/src/engine/state/ca/calculator.js +107 -0
- package/dist/src/engine/state/ca/calculator.js.map +1 -0
- package/dist/src/engine/state/common.d.ts +39 -0
- package/dist/src/engine/state/common.js +115 -0
- package/dist/src/engine/state/common.js.map +1 -0
- package/dist/src/engine/state/ga/calculator.d.ts +3 -0
- package/dist/src/engine/state/ga/calculator.js +82 -0
- package/dist/src/engine/state/ga/calculator.js.map +1 -0
- package/dist/src/engine/state/il/calculator.d.ts +3 -0
- package/dist/src/engine/state/il/calculator.js +49 -0
- package/dist/src/engine/state/il/calculator.js.map +1 -0
- package/dist/src/engine/state/mi/calculator.d.ts +3 -0
- package/dist/src/engine/state/mi/calculator.js +60 -0
- package/dist/src/engine/state/mi/calculator.js.map +1 -0
- package/dist/src/engine/state/nc/calculator.d.ts +3 -0
- package/dist/src/engine/state/nc/calculator.js +54 -0
- package/dist/src/engine/state/nc/calculator.js.map +1 -0
- package/dist/src/engine/state/nj/calculator.d.ts +3 -0
- package/dist/src/engine/state/nj/calculator.js +90 -0
- package/dist/src/engine/state/nj/calculator.js.map +1 -0
- package/dist/src/engine/state/ny/calculator.d.ts +3 -0
- package/dist/src/engine/state/ny/calculator.js +103 -0
- package/dist/src/engine/state/ny/calculator.js.map +1 -0
- package/dist/src/engine/state/oh/calculator.d.ts +3 -0
- package/dist/src/engine/state/oh/calculator.js +79 -0
- package/dist/src/engine/state/oh/calculator.js.map +1 -0
- package/dist/src/engine/state/pa/calculator.d.ts +3 -0
- package/dist/src/engine/state/pa/calculator.js +58 -0
- package/dist/src/engine/state/pa/calculator.js.map +1 -0
- package/dist/src/engine/state/registry.d.ts +9 -0
- package/dist/src/engine/state/registry.js +67 -0
- package/dist/src/engine/state/registry.js.map +1 -0
- package/dist/src/engine/state/types.d.ts +57 -0
- package/dist/src/engine/state/types.js +2 -0
- package/dist/src/engine/state/types.js.map +1 -0
- package/dist/src/engine/state/va/calculator.d.ts +3 -0
- package/dist/src/engine/state/va/calculator.js +76 -0
- package/dist/src/engine/state/va/calculator.js.map +1 -0
- package/dist/src/engine/suggestions/missed-deductions.d.ts +43 -0
- package/dist/src/engine/suggestions/missed-deductions.js +128 -0
- package/dist/src/engine/suggestions/missed-deductions.js.map +1 -0
- package/dist/src/engine/tax-calculator.d.ts +55 -0
- package/dist/src/engine/tax-calculator.js +156 -0
- package/dist/src/engine/tax-calculator.js.map +1 -0
- package/dist/src/engine/tax-constants-2025.d.ts +56 -0
- package/dist/src/engine/tax-constants-2025.js +138 -0
- package/dist/src/engine/tax-constants-2025.js.map +1 -0
- package/dist/src/engine/types.d.ts +77 -0
- package/dist/src/engine/types.js +2 -0
- package/dist/src/engine/types.js.map +1 -0
- package/dist/src/engine/va-math.d.ts +24 -0
- package/dist/src/engine/va-math.js +90 -0
- package/dist/src/engine/va-math.js.map +1 -0
- package/dist/src/engine/validator.d.ts +7 -0
- package/dist/src/engine/validator.js +108 -0
- package/dist/src/engine/validator.js.map +1 -0
- package/dist/src/glossary/entries/healthcare.d.ts +2 -0
- package/dist/src/glossary/entries/healthcare.js +78 -0
- package/dist/src/glossary/entries/healthcare.js.map +1 -0
- package/dist/src/glossary/entries/immigration.d.ts +2 -0
- package/dist/src/glossary/entries/immigration.js +112 -0
- package/dist/src/glossary/entries/immigration.js.map +1 -0
- package/dist/src/glossary/entries/tax.d.ts +2 -0
- package/dist/src/glossary/entries/tax.js +149 -0
- package/dist/src/glossary/entries/tax.js.map +1 -0
- package/dist/src/glossary/entries/unemployment.d.ts +2 -0
- package/dist/src/glossary/entries/unemployment.js +52 -0
- package/dist/src/glossary/entries/unemployment.js.map +1 -0
- package/dist/src/glossary/index.d.ts +19 -0
- package/dist/src/glossary/index.js +39 -0
- package/dist/src/glossary/index.js.map +1 -0
- package/dist/src/i18n/index.d.ts +21 -0
- package/dist/src/i18n/index.js +92 -0
- package/dist/src/i18n/index.js.map +1 -0
- package/dist/src/mcp/result.d.ts +3 -0
- package/dist/src/mcp/result.js +7 -0
- package/dist/src/mcp/result.js.map +1 -0
- package/dist/src/mcp/return-bundle.d.ts +19 -0
- package/dist/src/mcp/return-bundle.js +49 -0
- package/dist/src/mcp/return-bundle.js.map +1 -0
- package/dist/src/mcp/shared.d.ts +49102 -0
- package/dist/src/mcp/shared.js +354 -0
- package/dist/src/mcp/shared.js.map +1 -0
- package/dist/src/mcp/tools/build-packet.d.ts +7 -0
- package/dist/src/mcp/tools/build-packet.js +23 -0
- package/dist/src/mcp/tools/build-packet.js.map +1 -0
- package/dist/src/mcp/tools/calculate-tax.d.ts +40 -0
- package/dist/src/mcp/tools/calculate-tax.js +17 -0
- package/dist/src/mcp/tools/calculate-tax.js.map +1 -0
- package/dist/src/mcp/tools/deadlines.d.ts +7 -0
- package/dist/src/mcp/tools/deadlines.js +23 -0
- package/dist/src/mcp/tools/deadlines.js.map +1 -0
- package/dist/src/mcp/tools/describe-form.d.ts +14 -0
- package/dist/src/mcp/tools/describe-form.js +23 -0
- package/dist/src/mcp/tools/describe-form.js.map +1 -0
- package/dist/src/mcp/tools/describe-workflow.d.ts +6 -0
- package/dist/src/mcp/tools/describe-workflow.js +16 -0
- package/dist/src/mcp/tools/describe-workflow.js.map +1 -0
- package/dist/src/mcp/tools/explain-flag.d.ts +7 -0
- package/dist/src/mcp/tools/explain-flag.js +19 -0
- package/dist/src/mcp/tools/explain-flag.js.map +1 -0
- package/dist/src/mcp/tools/extract-document.d.ts +13 -0
- package/dist/src/mcp/tools/extract-document.js +20 -0
- package/dist/src/mcp/tools/extract-document.js.map +1 -0
- package/dist/src/mcp/tools/fees.d.ts +7 -0
- package/dist/src/mcp/tools/fees.js +24 -0
- package/dist/src/mcp/tools/fees.js.map +1 -0
- package/dist/src/mcp/tools/fill-form.d.ts +56 -0
- package/dist/src/mcp/tools/fill-form.js +47 -0
- package/dist/src/mcp/tools/fill-form.js.map +1 -0
- package/dist/src/mcp/tools/fill-workflow.d.ts +7 -0
- package/dist/src/mcp/tools/fill-workflow.js +24 -0
- package/dist/src/mcp/tools/fill-workflow.js.map +1 -0
- package/dist/src/mcp/tools/glossary.d.ts +8 -0
- package/dist/src/mcp/tools/glossary.js +54 -0
- package/dist/src/mcp/tools/glossary.js.map +1 -0
- package/dist/src/mcp/tools/list-forms.d.ts +6 -0
- package/dist/src/mcp/tools/list-forms.js +15 -0
- package/dist/src/mcp/tools/list-forms.js.map +1 -0
- package/dist/src/mcp/tools/list-workflows.d.ts +6 -0
- package/dist/src/mcp/tools/list-workflows.js +16 -0
- package/dist/src/mcp/tools/list-workflows.js.map +1 -0
- package/dist/src/mcp/tools/plan-life-event.d.ts +59 -0
- package/dist/src/mcp/tools/plan-life-event.js +41 -0
- package/dist/src/mcp/tools/plan-life-event.js.map +1 -0
- package/dist/src/mcp/tools/review-form.d.ts +40 -0
- package/dist/src/mcp/tools/review-form.js +26 -0
- package/dist/src/mcp/tools/review-form.js.map +1 -0
- package/dist/src/mcp/tools/review-workflow.d.ts +7 -0
- package/dist/src/mcp/tools/review-workflow.js +27 -0
- package/dist/src/mcp/tools/review-workflow.js.map +1 -0
- package/dist/src/mcp/tools/screen-eligibility.d.ts +53 -0
- package/dist/src/mcp/tools/screen-eligibility.js +44 -0
- package/dist/src/mcp/tools/screen-eligibility.js.map +1 -0
- package/dist/src/mcp/tools/start-workflow.d.ts +6 -0
- package/dist/src/mcp/tools/start-workflow.js +17 -0
- package/dist/src/mcp/tools/start-workflow.js.map +1 -0
- package/dist/src/mcp/tools/validate-form.d.ts +48 -0
- package/dist/src/mcp/tools/validate-form.js +30 -0
- package/dist/src/mcp/tools/validate-form.js.map +1 -0
- package/dist/src/mcp/tools/validate-workflow.d.ts +7 -0
- package/dist/src/mcp/tools/validate-workflow.js +24 -0
- package/dist/src/mcp/tools/validate-workflow.js.map +1 -0
- package/dist/src/pdf/batch.d.ts +8 -0
- package/dist/src/pdf/batch.js +15 -0
- package/dist/src/pdf/batch.js.map +1 -0
- package/dist/src/pdf/merge.d.ts +10 -0
- package/dist/src/pdf/merge.js +62 -0
- package/dist/src/pdf/merge.js.map +1 -0
- package/dist/src/pdf/ocr.d.ts +22 -0
- package/dist/src/pdf/ocr.js +52 -0
- package/dist/src/pdf/ocr.js.map +1 -0
- package/dist/src/pdf/reader.d.ts +2 -0
- package/dist/src/pdf/reader.js +354 -0
- package/dist/src/pdf/reader.js.map +1 -0
- package/dist/src/pdf/shared.d.ts +89 -0
- package/dist/src/pdf/shared.js +137 -0
- package/dist/src/pdf/shared.js.map +1 -0
- package/dist/src/pdf/writer.d.ts +7 -0
- package/dist/src/pdf/writer.js +311 -0
- package/dist/src/pdf/writer.js.map +1 -0
- package/dist/src/plugins/loader.d.ts +15 -0
- package/dist/src/plugins/loader.js +86 -0
- package/dist/src/plugins/loader.js.map +1 -0
- package/dist/src/plugins/sandbox.d.ts +14 -0
- package/dist/src/plugins/sandbox.js +88 -0
- package/dist/src/plugins/sandbox.js.map +1 -0
- package/dist/src/plugins/types.d.ts +17 -0
- package/dist/src/plugins/types.js +13 -0
- package/dist/src/plugins/types.js.map +1 -0
- package/dist/src/schemas/2025/f1040.d.ts +127 -0
- package/dist/src/schemas/2025/f1040.js +104 -0
- package/dist/src/schemas/2025/f1040.js.map +1 -0
- package/dist/src/schemas/2025/f1099-int.d.ts +53 -0
- package/dist/src/schemas/2025/f1099-int.js +51 -0
- package/dist/src/schemas/2025/f1099-int.js.map +1 -0
- package/dist/src/schemas/2025/f1099-nec.d.ts +47 -0
- package/dist/src/schemas/2025/f1099-nec.js +45 -0
- package/dist/src/schemas/2025/f1099-nec.js.map +1 -0
- package/dist/src/schemas/2025/form-8949.d.ts +46 -0
- package/dist/src/schemas/2025/form-8949.js +71 -0
- package/dist/src/schemas/2025/form-8949.js.map +1 -0
- package/dist/src/schemas/2025/index.d.ts +1004 -0
- package/dist/src/schemas/2025/index.js +60 -0
- package/dist/src/schemas/2025/index.js.map +1 -0
- package/dist/src/schemas/2025/schedule-1.d.ts +44 -0
- package/dist/src/schemas/2025/schedule-1.js +56 -0
- package/dist/src/schemas/2025/schedule-1.js.map +1 -0
- package/dist/src/schemas/2025/schedule-b.d.ts +32 -0
- package/dist/src/schemas/2025/schedule-b.js +53 -0
- package/dist/src/schemas/2025/schedule-b.js.map +1 -0
- package/dist/src/schemas/2025/schedule-c.d.ts +58 -0
- package/dist/src/schemas/2025/schedule-c.js +46 -0
- package/dist/src/schemas/2025/schedule-c.js.map +1 -0
- package/dist/src/schemas/2025/schedule-d.d.ts +36 -0
- package/dist/src/schemas/2025/schedule-d.js +52 -0
- package/dist/src/schemas/2025/schedule-d.js.map +1 -0
- package/dist/src/schemas/2025/shared.d.ts +98 -0
- package/dist/src/schemas/2025/shared.js +161 -0
- package/dist/src/schemas/2025/shared.js.map +1 -0
- package/dist/src/schemas/2025/w2.d.ts +57 -0
- package/dist/src/schemas/2025/w2.js +62 -0
- package/dist/src/schemas/2025/w2.js.map +1 -0
- package/dist/src/storage/drafts.d.ts +25 -0
- package/dist/src/storage/drafts.js +117 -0
- package/dist/src/storage/drafts.js.map +1 -0
- package/dist/src/storage/paths.d.ts +15 -0
- package/dist/src/storage/paths.js +33 -0
- package/dist/src/storage/paths.js.map +1 -0
- package/dist/src/storage/profile.d.ts +17 -0
- package/dist/src/storage/profile.js +59 -0
- package/dist/src/storage/profile.js.map +1 -0
- package/dist/src/storage/vault.d.ts +38 -0
- package/dist/src/storage/vault.js +187 -0
- package/dist/src/storage/vault.js.map +1 -0
- package/dist/src/testing/synthetic.d.ts +13 -0
- package/dist/src/testing/synthetic.js +164 -0
- package/dist/src/testing/synthetic.js.map +1 -0
- package/dist/src/types.d.ts +362 -0
- package/dist/src/types.js +2 -0
- package/dist/src/types.js.map +1 -0
- package/dist/src/workflows/deadlines.d.ts +13 -0
- package/dist/src/workflows/deadlines.js +88 -0
- package/dist/src/workflows/deadlines.js.map +1 -0
- package/dist/src/workflows/domains/benefits.d.ts +409 -0
- package/dist/src/workflows/domains/benefits.js +744 -0
- package/dist/src/workflows/domains/benefits.js.map +1 -0
- package/dist/src/workflows/domains/business.d.ts +65 -0
- package/dist/src/workflows/domains/business.js +76 -0
- package/dist/src/workflows/domains/business.js.map +1 -0
- package/dist/src/workflows/domains/education.d.ts +251 -0
- package/dist/src/workflows/domains/education.js +504 -0
- package/dist/src/workflows/domains/education.js.map +1 -0
- package/dist/src/workflows/domains/estate.d.ts +217 -0
- package/dist/src/workflows/domains/estate.js +407 -0
- package/dist/src/workflows/domains/estate.js.map +1 -0
- package/dist/src/workflows/domains/healthcare-ext.d.ts +88 -0
- package/dist/src/workflows/domains/healthcare-ext.js +150 -0
- package/dist/src/workflows/domains/healthcare-ext.js.map +1 -0
- package/dist/src/workflows/domains/healthcare.d.ts +92 -0
- package/dist/src/workflows/domains/healthcare.js +126 -0
- package/dist/src/workflows/domains/healthcare.js.map +1 -0
- package/dist/src/workflows/domains/identity-domain.d.ts +291 -0
- package/dist/src/workflows/domains/identity-domain.js +541 -0
- package/dist/src/workflows/domains/identity-domain.js.map +1 -0
- package/dist/src/workflows/domains/immigration-ext.d.ts +282 -0
- package/dist/src/workflows/domains/immigration-ext.js +590 -0
- package/dist/src/workflows/domains/immigration-ext.js.map +1 -0
- package/dist/src/workflows/domains/immigration.d.ts +121 -0
- package/dist/src/workflows/domains/immigration.js +152 -0
- package/dist/src/workflows/domains/immigration.js.map +1 -0
- package/dist/src/workflows/domains/legal.d.ts +235 -0
- package/dist/src/workflows/domains/legal.js +380 -0
- package/dist/src/workflows/domains/legal.js.map +1 -0
- package/dist/src/workflows/domains/permits.d.ts +65 -0
- package/dist/src/workflows/domains/permits.js +74 -0
- package/dist/src/workflows/domains/permits.js.map +1 -0
- package/dist/src/workflows/domains/retirement.d.ts +59 -0
- package/dist/src/workflows/domains/retirement.js +155 -0
- package/dist/src/workflows/domains/retirement.js.map +1 -0
- package/dist/src/workflows/domains/tax.d.ts +133 -0
- package/dist/src/workflows/domains/tax.js +187 -0
- package/dist/src/workflows/domains/tax.js.map +1 -0
- package/dist/src/workflows/domains/unemployment.d.ts +105 -0
- package/dist/src/workflows/domains/unemployment.js +122 -0
- package/dist/src/workflows/domains/unemployment.js.map +1 -0
- package/dist/src/workflows/domains/veterans.d.ts +189 -0
- package/dist/src/workflows/domains/veterans.js +380 -0
- package/dist/src/workflows/domains/veterans.js.map +1 -0
- package/dist/src/workflows/fees.d.ts +15 -0
- package/dist/src/workflows/fees.js +93 -0
- package/dist/src/workflows/fees.js.map +1 -0
- package/dist/src/workflows/helpers.d.ts +8 -0
- package/dist/src/workflows/helpers.js +66 -0
- package/dist/src/workflows/helpers.js.map +1 -0
- package/dist/src/workflows/io.d.ts +3 -0
- package/dist/src/workflows/io.js +38 -0
- package/dist/src/workflows/io.js.map +1 -0
- package/dist/src/workflows/registry.d.ts +51355 -0
- package/dist/src/workflows/registry.js +140 -0
- package/dist/src/workflows/registry.js.map +1 -0
- package/dist/src/workflows/schemas/benefits.d.ts +78 -0
- package/dist/src/workflows/schemas/benefits.js +91 -0
- package/dist/src/workflows/schemas/benefits.js.map +1 -0
- package/dist/src/workflows/schemas/common.d.ts +27 -0
- package/dist/src/workflows/schemas/common.js +28 -0
- package/dist/src/workflows/schemas/common.js.map +1 -0
- package/dist/src/workflows/schemas/education.d.ts +70 -0
- package/dist/src/workflows/schemas/education.js +85 -0
- package/dist/src/workflows/schemas/education.js.map +1 -0
- package/dist/src/workflows/schemas/estate.d.ts +64 -0
- package/dist/src/workflows/schemas/estate.js +85 -0
- package/dist/src/workflows/schemas/estate.js.map +1 -0
- package/dist/src/workflows/schemas/healthcare-ext.d.ts +15 -0
- package/dist/src/workflows/schemas/healthcare-ext.js +17 -0
- package/dist/src/workflows/schemas/healthcare-ext.js.map +1 -0
- package/dist/src/workflows/schemas/healthcare.d.ts +33 -0
- package/dist/src/workflows/schemas/healthcare.js +20 -0
- package/dist/src/workflows/schemas/healthcare.js.map +1 -0
- package/dist/src/workflows/schemas/identity-domain.d.ts +64 -0
- package/dist/src/workflows/schemas/identity-domain.js +87 -0
- package/dist/src/workflows/schemas/identity-domain.js.map +1 -0
- package/dist/src/workflows/schemas/immigration-ext.d.ts +63 -0
- package/dist/src/workflows/schemas/immigration-ext.js +58 -0
- package/dist/src/workflows/schemas/immigration-ext.js.map +1 -0
- package/dist/src/workflows/schemas/immigration.d.ts +48 -0
- package/dist/src/workflows/schemas/immigration.js +27 -0
- package/dist/src/workflows/schemas/immigration.js.map +1 -0
- package/dist/src/workflows/schemas/legal.d.ts +45 -0
- package/dist/src/workflows/schemas/legal.js +45 -0
- package/dist/src/workflows/schemas/legal.js.map +1 -0
- package/dist/src/workflows/schemas/planning.d.ts +23 -0
- package/dist/src/workflows/schemas/planning.js +15 -0
- package/dist/src/workflows/schemas/planning.js.map +1 -0
- package/dist/src/workflows/schemas/retirement.d.ts +14 -0
- package/dist/src/workflows/schemas/retirement.js +22 -0
- package/dist/src/workflows/schemas/retirement.js.map +1 -0
- package/dist/src/workflows/schemas/tax.d.ts +58 -0
- package/dist/src/workflows/schemas/tax.js +51 -0
- package/dist/src/workflows/schemas/tax.js.map +1 -0
- package/dist/src/workflows/schemas/unemployment.d.ts +33 -0
- package/dist/src/workflows/schemas/unemployment.js +19 -0
- package/dist/src/workflows/schemas/unemployment.js.map +1 -0
- package/dist/src/workflows/schemas/veterans.d.ts +47 -0
- package/dist/src/workflows/schemas/veterans.js +51 -0
- package/dist/src/workflows/schemas/veterans.js.map +1 -0
- package/dist/src/workflows/types.d.ts +9 -0
- package/dist/src/workflows/types.js +2 -0
- package/dist/src/workflows/types.js.map +1 -0
- package/dist/xmcp.config.d.ts +3 -0
- package/dist/xmcp.config.js +29 -0
- package/dist/xmcp.config.js.map +1 -0
- package/llms.txt +48 -0
- package/package.json +82 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import type { WorkflowBundle } from "../../types.js";
|
|
2
|
+
import type { ImmigrationWorkflowInput } from "../schemas/immigration.js";
|
|
3
|
+
export declare const immigrationWorkflows: {
|
|
4
|
+
readonly "immigration/family-visa-intake": {
|
|
5
|
+
summary: {
|
|
6
|
+
id: string;
|
|
7
|
+
domain: "immigration";
|
|
8
|
+
title: string;
|
|
9
|
+
summary: string;
|
|
10
|
+
status: "active";
|
|
11
|
+
audience: "household";
|
|
12
|
+
tags: string[];
|
|
13
|
+
};
|
|
14
|
+
inputSchema: import("zod").ZodObject<{
|
|
15
|
+
applicant: import("zod").ZodObject<{
|
|
16
|
+
firstName: import("zod").ZodString;
|
|
17
|
+
lastName: import("zod").ZodString;
|
|
18
|
+
ssn: import("zod").ZodDefault<import("zod").ZodString>;
|
|
19
|
+
address: import("zod").ZodObject<{
|
|
20
|
+
street1: import("zod").ZodString;
|
|
21
|
+
street2: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22
|
+
city: import("zod").ZodString;
|
|
23
|
+
state: import("zod").ZodString;
|
|
24
|
+
zipCode: import("zod").ZodString;
|
|
25
|
+
}, import("zod/v4/core").$strict>;
|
|
26
|
+
}, import("zod/v4/core").$strict>;
|
|
27
|
+
beneficiary: import("zod").ZodObject<{
|
|
28
|
+
fullName: import("zod").ZodString;
|
|
29
|
+
relationship: import("zod").ZodString;
|
|
30
|
+
currentCountry: import("zod").ZodString;
|
|
31
|
+
currentlyInUnitedStates: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
32
|
+
}, import("zod/v4/core").$strict>;
|
|
33
|
+
household: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
34
|
+
name: import("zod").ZodString;
|
|
35
|
+
relationship: import("zod").ZodString;
|
|
36
|
+
age: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
37
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
38
|
+
}, import("zod/v4/core").$strict>>>;
|
|
39
|
+
visaGoal: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
40
|
+
family: "family";
|
|
41
|
+
fiance: "fiance";
|
|
42
|
+
employment: "employment";
|
|
43
|
+
adjustment: "adjustment";
|
|
44
|
+
}>>;
|
|
45
|
+
petitionerStatus: import("zod").ZodEnum<{
|
|
46
|
+
other: "other";
|
|
47
|
+
employer: "employer";
|
|
48
|
+
uscitizen: "uscitizen";
|
|
49
|
+
permanent_resident: "permanent_resident";
|
|
50
|
+
}>;
|
|
51
|
+
hasPassportCopy: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
52
|
+
hasBirthCertificate: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
53
|
+
hasRelationshipEvidence: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
54
|
+
hasFinancialSponsor: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
55
|
+
priorVisaDenials: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
56
|
+
needsTranslation: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
57
|
+
workAuthorizationRequested: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
58
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
59
|
+
}, import("zod/v4/core").$strict>;
|
|
60
|
+
starterData: {
|
|
61
|
+
applicant: {
|
|
62
|
+
firstName: string;
|
|
63
|
+
lastName: string;
|
|
64
|
+
ssn: string;
|
|
65
|
+
address: {
|
|
66
|
+
street1: string;
|
|
67
|
+
city: string;
|
|
68
|
+
state: string;
|
|
69
|
+
zipCode: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
beneficiary: {
|
|
73
|
+
fullName: string;
|
|
74
|
+
relationship: string;
|
|
75
|
+
currentCountry: string;
|
|
76
|
+
currentlyInUnitedStates: false;
|
|
77
|
+
};
|
|
78
|
+
household: never[];
|
|
79
|
+
visaGoal: "family";
|
|
80
|
+
petitionerStatus: "uscitizen";
|
|
81
|
+
hasPassportCopy: false;
|
|
82
|
+
hasBirthCertificate: false;
|
|
83
|
+
hasRelationshipEvidence: false;
|
|
84
|
+
hasFinancialSponsor: false;
|
|
85
|
+
priorVisaDenials: false;
|
|
86
|
+
needsTranslation: false;
|
|
87
|
+
workAuthorizationRequested: false;
|
|
88
|
+
};
|
|
89
|
+
sections: ({
|
|
90
|
+
id: string;
|
|
91
|
+
title: string;
|
|
92
|
+
fields: ({
|
|
93
|
+
key: string;
|
|
94
|
+
label: string;
|
|
95
|
+
type: "text";
|
|
96
|
+
options?: never;
|
|
97
|
+
} | {
|
|
98
|
+
key: string;
|
|
99
|
+
label: string;
|
|
100
|
+
type: "select";
|
|
101
|
+
options: {
|
|
102
|
+
label: string;
|
|
103
|
+
value: string;
|
|
104
|
+
}[];
|
|
105
|
+
})[];
|
|
106
|
+
} | {
|
|
107
|
+
id: string;
|
|
108
|
+
title: string;
|
|
109
|
+
fields: ({
|
|
110
|
+
key: string;
|
|
111
|
+
label: string;
|
|
112
|
+
type: "text";
|
|
113
|
+
} | {
|
|
114
|
+
key: string;
|
|
115
|
+
label: string;
|
|
116
|
+
type: "confirm";
|
|
117
|
+
})[];
|
|
118
|
+
})[];
|
|
119
|
+
buildBundle(input: ImmigrationWorkflowInput): WorkflowBundle;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { buildEvidenceItem, buildGenericSummary, genericArtifacts, makeCheck, makeFlag } from "../helpers.js";
|
|
2
|
+
import { immigrationInputSchema } from "../schemas/immigration.js";
|
|
3
|
+
export const immigrationWorkflows = {
|
|
4
|
+
"immigration/family-visa-intake": {
|
|
5
|
+
summary: {
|
|
6
|
+
id: "immigration/family-visa-intake",
|
|
7
|
+
domain: "immigration",
|
|
8
|
+
title: "Family visa packet intake",
|
|
9
|
+
summary: "Build a household-centered family visa or adjustment packet checklist before attorney or human review.",
|
|
10
|
+
status: "active",
|
|
11
|
+
audience: "household",
|
|
12
|
+
tags: ["uscis", "family", "visa", "packet", "evidence"],
|
|
13
|
+
},
|
|
14
|
+
inputSchema: immigrationInputSchema,
|
|
15
|
+
starterData: {
|
|
16
|
+
applicant: {
|
|
17
|
+
firstName: "",
|
|
18
|
+
lastName: "",
|
|
19
|
+
ssn: "000-00-0000",
|
|
20
|
+
address: {
|
|
21
|
+
street1: "",
|
|
22
|
+
city: "",
|
|
23
|
+
state: "CA",
|
|
24
|
+
zipCode: "",
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
beneficiary: {
|
|
28
|
+
fullName: "",
|
|
29
|
+
relationship: "spouse",
|
|
30
|
+
currentCountry: "",
|
|
31
|
+
currentlyInUnitedStates: false,
|
|
32
|
+
},
|
|
33
|
+
household: [],
|
|
34
|
+
visaGoal: "family",
|
|
35
|
+
petitionerStatus: "uscitizen",
|
|
36
|
+
hasPassportCopy: false,
|
|
37
|
+
hasBirthCertificate: false,
|
|
38
|
+
hasRelationshipEvidence: false,
|
|
39
|
+
hasFinancialSponsor: false,
|
|
40
|
+
priorVisaDenials: false,
|
|
41
|
+
needsTranslation: false,
|
|
42
|
+
workAuthorizationRequested: false,
|
|
43
|
+
},
|
|
44
|
+
sections: [
|
|
45
|
+
{
|
|
46
|
+
id: "sponsor",
|
|
47
|
+
title: "Petitioner",
|
|
48
|
+
fields: [
|
|
49
|
+
{ key: "applicant.firstName", label: "Petitioner first name", type: "text" },
|
|
50
|
+
{ key: "applicant.lastName", label: "Petitioner last name", type: "text" },
|
|
51
|
+
{
|
|
52
|
+
key: "petitionerStatus",
|
|
53
|
+
label: "Petitioner status",
|
|
54
|
+
type: "select",
|
|
55
|
+
options: [
|
|
56
|
+
{ label: "US citizen", value: "uscitizen" },
|
|
57
|
+
{ label: "Permanent resident", value: "permanent_resident" },
|
|
58
|
+
{ label: "Employer", value: "employer" },
|
|
59
|
+
{ label: "Other", value: "other" },
|
|
60
|
+
],
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
id: "beneficiary",
|
|
66
|
+
title: "Beneficiary",
|
|
67
|
+
fields: [
|
|
68
|
+
{ key: "beneficiary.fullName", label: "Beneficiary full name", type: "text" },
|
|
69
|
+
{ key: "beneficiary.relationship", label: "Relationship", type: "text" },
|
|
70
|
+
{ key: "beneficiary.currentCountry", label: "Current country", type: "text" },
|
|
71
|
+
{
|
|
72
|
+
key: "beneficiary.currentlyInUnitedStates",
|
|
73
|
+
label: "Currently in the United States",
|
|
74
|
+
type: "confirm",
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
id: "evidence",
|
|
80
|
+
title: "Evidence",
|
|
81
|
+
fields: [
|
|
82
|
+
{ key: "hasPassportCopy", label: "Passport copy available", type: "confirm" },
|
|
83
|
+
{ key: "hasBirthCertificate", label: "Birth certificate available", type: "confirm" },
|
|
84
|
+
{
|
|
85
|
+
key: "hasRelationshipEvidence",
|
|
86
|
+
label: "Relationship evidence available",
|
|
87
|
+
type: "confirm",
|
|
88
|
+
},
|
|
89
|
+
{ key: "hasFinancialSponsor", label: "Financial sponsor ready", type: "confirm" },
|
|
90
|
+
],
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
buildBundle(input) {
|
|
94
|
+
const evidence = [
|
|
95
|
+
buildEvidenceItem("passport", "Passport biographic page", true, input.hasPassportCopy),
|
|
96
|
+
buildEvidenceItem("birth", "Birth certificate", true, input.hasBirthCertificate),
|
|
97
|
+
buildEvidenceItem("relationship", "Relationship evidence", true, input.hasRelationshipEvidence),
|
|
98
|
+
buildEvidenceItem("financial", "Financial sponsor package", true, input.hasFinancialSponsor),
|
|
99
|
+
buildEvidenceItem("translations", "Certified translations", input.needsTranslation, !input.needsTranslation, input.needsTranslation ? "Confirm each non-English civil document has a translation." : undefined),
|
|
100
|
+
];
|
|
101
|
+
const flags = [];
|
|
102
|
+
if (input.priorVisaDenials) {
|
|
103
|
+
flags.push(makeFlag("priorVisaDenials", "review", "Prior denials usually require a human review of prior filings and refusal notices."));
|
|
104
|
+
}
|
|
105
|
+
if (!input.hasFinancialSponsor) {
|
|
106
|
+
flags.push(makeFlag("hasFinancialSponsor", "warning", "Most family visa packets need a support affidavit or equivalent sponsor evidence."));
|
|
107
|
+
}
|
|
108
|
+
if (!input.hasRelationshipEvidence) {
|
|
109
|
+
flags.push(makeFlag("hasRelationshipEvidence", "error", "Relationship evidence is missing for a family-based packet."));
|
|
110
|
+
}
|
|
111
|
+
const checks = [
|
|
112
|
+
makeCheck("beneficiary-name", "Beneficiary identity captured", input.beneficiary.fullName.trim().length > 0, "error", "Provide the beneficiary legal name."),
|
|
113
|
+
makeCheck("relationship-evidence", "Relationship evidence captured", input.hasRelationshipEvidence, "error", "Relationship evidence is required for packet assembly."),
|
|
114
|
+
makeCheck("passport-copy", "Passport copy available", input.hasPassportCopy, "warning", "Passport copy is recommended before packet review."),
|
|
115
|
+
];
|
|
116
|
+
const missingEvidence = evidence.filter((item) => item.status === "missing").length;
|
|
117
|
+
return {
|
|
118
|
+
workflowId: "immigration/family-visa-intake",
|
|
119
|
+
domain: "immigration",
|
|
120
|
+
title: "Family visa packet intake",
|
|
121
|
+
summary: "Packet planner for family visa and adjustment-style evidence assembly. PigeonGov does not submit to USCIS.",
|
|
122
|
+
applicant: input.applicant,
|
|
123
|
+
household: [
|
|
124
|
+
{
|
|
125
|
+
name: input.beneficiary.fullName,
|
|
126
|
+
relationship: input.beneficiary.relationship,
|
|
127
|
+
},
|
|
128
|
+
...input.household,
|
|
129
|
+
],
|
|
130
|
+
evidence,
|
|
131
|
+
answers: input,
|
|
132
|
+
derived: {
|
|
133
|
+
packetTrack: input.beneficiary.currentlyInUnitedStates ? "adjustment-review" : "consular-review",
|
|
134
|
+
missingEvidenceCount: missingEvidence,
|
|
135
|
+
workAuthorizationRequested: input.workAuthorizationRequested,
|
|
136
|
+
},
|
|
137
|
+
validation: {
|
|
138
|
+
checks,
|
|
139
|
+
flaggedFields: flags,
|
|
140
|
+
},
|
|
141
|
+
review: buildGenericSummary("Visa packet readiness", missingEvidence === 0 ? "ready for human review" : "needs more evidence", evidence, flags, [
|
|
142
|
+
`${input.beneficiary.fullName} is being reviewed for a ${input.visaGoal} packet.`,
|
|
143
|
+
`Recommended track: ${input.beneficiary.currentlyInUnitedStates ? "adjustment of status review" : "consular packet review"}.`,
|
|
144
|
+
`Missing evidence items: ${missingEvidence}.`,
|
|
145
|
+
]),
|
|
146
|
+
outputArtifacts: genericArtifacts("immigration-family-visa-intake", evidence),
|
|
147
|
+
provenance: ["workflow-registry", "immigration-evidence-model"],
|
|
148
|
+
};
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
};
|
|
152
|
+
//# sourceMappingURL=immigration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"immigration.js","sourceRoot":"","sources":["../../../../src/workflows/domains/immigration.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
import type { WorkflowBundle } from "../../types.js";
|
|
2
|
+
import type { ChildSupportModificationInput, ExpungementInput, SmallClaimsInput } from "../schemas/legal.js";
|
|
3
|
+
declare function buildSmallClaimsBundle(input: SmallClaimsInput): WorkflowBundle;
|
|
4
|
+
declare function buildExpungementBundle(input: ExpungementInput): WorkflowBundle;
|
|
5
|
+
declare function buildChildSupportModificationBundle(input: ChildSupportModificationInput): WorkflowBundle;
|
|
6
|
+
export declare const legalWorkflows: {
|
|
7
|
+
readonly "legal/small-claims": {
|
|
8
|
+
summary: {
|
|
9
|
+
id: string;
|
|
10
|
+
domain: "legal";
|
|
11
|
+
title: string;
|
|
12
|
+
summary: string;
|
|
13
|
+
status: "active";
|
|
14
|
+
audience: "individual";
|
|
15
|
+
tags: string[];
|
|
16
|
+
};
|
|
17
|
+
inputSchema: import("zod").ZodObject<{
|
|
18
|
+
plaintiffName: import("zod").ZodString;
|
|
19
|
+
defendantName: import("zod").ZodString;
|
|
20
|
+
state: import("zod").ZodString;
|
|
21
|
+
claimAmount: import("zod").ZodCoercedNumber<unknown>;
|
|
22
|
+
claimType: import("zod").ZodEnum<{
|
|
23
|
+
other: "other";
|
|
24
|
+
"money-owed": "money-owed";
|
|
25
|
+
"property-damage": "property-damage";
|
|
26
|
+
contract: "contract";
|
|
27
|
+
deposit: "deposit";
|
|
28
|
+
}>;
|
|
29
|
+
incidentDate: import("zod").ZodString;
|
|
30
|
+
hasEvidence: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
31
|
+
}, import("zod/v4/core").$strict>;
|
|
32
|
+
starterData: {
|
|
33
|
+
plaintiffName: string;
|
|
34
|
+
defendantName: string;
|
|
35
|
+
state: string;
|
|
36
|
+
claimAmount: number;
|
|
37
|
+
claimType: "money-owed";
|
|
38
|
+
incidentDate: string;
|
|
39
|
+
hasEvidence: false;
|
|
40
|
+
};
|
|
41
|
+
sections: ({
|
|
42
|
+
id: string;
|
|
43
|
+
title: string;
|
|
44
|
+
fields: ({
|
|
45
|
+
key: string;
|
|
46
|
+
label: string;
|
|
47
|
+
type: "currency";
|
|
48
|
+
options?: never;
|
|
49
|
+
} | {
|
|
50
|
+
key: string;
|
|
51
|
+
label: string;
|
|
52
|
+
type: "select";
|
|
53
|
+
options: {
|
|
54
|
+
label: string;
|
|
55
|
+
value: string;
|
|
56
|
+
}[];
|
|
57
|
+
} | {
|
|
58
|
+
key: string;
|
|
59
|
+
label: string;
|
|
60
|
+
type: "date";
|
|
61
|
+
options?: never;
|
|
62
|
+
} | {
|
|
63
|
+
key: string;
|
|
64
|
+
label: string;
|
|
65
|
+
type: "text";
|
|
66
|
+
options?: never;
|
|
67
|
+
})[];
|
|
68
|
+
} | {
|
|
69
|
+
id: string;
|
|
70
|
+
title: string;
|
|
71
|
+
fields: {
|
|
72
|
+
key: string;
|
|
73
|
+
label: string;
|
|
74
|
+
type: "confirm";
|
|
75
|
+
}[];
|
|
76
|
+
})[];
|
|
77
|
+
buildBundle: typeof buildSmallClaimsBundle;
|
|
78
|
+
};
|
|
79
|
+
readonly "legal/expungement": {
|
|
80
|
+
summary: {
|
|
81
|
+
id: string;
|
|
82
|
+
domain: "legal";
|
|
83
|
+
title: string;
|
|
84
|
+
summary: string;
|
|
85
|
+
status: "active";
|
|
86
|
+
audience: "individual";
|
|
87
|
+
tags: string[];
|
|
88
|
+
};
|
|
89
|
+
inputSchema: import("zod").ZodObject<{
|
|
90
|
+
applicantName: import("zod").ZodString;
|
|
91
|
+
state: import("zod").ZodString;
|
|
92
|
+
offenseType: import("zod").ZodEnum<{
|
|
93
|
+
misdemeanor: "misdemeanor";
|
|
94
|
+
felony: "felony";
|
|
95
|
+
infraction: "infraction";
|
|
96
|
+
}>;
|
|
97
|
+
offenseDate: import("zod").ZodString;
|
|
98
|
+
sentenceCompletionDate: import("zod").ZodString;
|
|
99
|
+
hasCompletedProbation: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
100
|
+
subsequentOffenses: import("zod").ZodDefault<import("zod").ZodCoercedNumber<unknown>>;
|
|
101
|
+
}, import("zod/v4/core").$strict>;
|
|
102
|
+
starterData: {
|
|
103
|
+
applicantName: string;
|
|
104
|
+
state: string;
|
|
105
|
+
offenseType: "misdemeanor";
|
|
106
|
+
offenseDate: string;
|
|
107
|
+
sentenceCompletionDate: string;
|
|
108
|
+
hasCompletedProbation: false;
|
|
109
|
+
subsequentOffenses: number;
|
|
110
|
+
};
|
|
111
|
+
sections: ({
|
|
112
|
+
id: string;
|
|
113
|
+
title: string;
|
|
114
|
+
fields: ({
|
|
115
|
+
key: string;
|
|
116
|
+
label: string;
|
|
117
|
+
type: "text";
|
|
118
|
+
options?: never;
|
|
119
|
+
} | {
|
|
120
|
+
key: string;
|
|
121
|
+
label: string;
|
|
122
|
+
type: "select";
|
|
123
|
+
options: {
|
|
124
|
+
label: string;
|
|
125
|
+
value: string;
|
|
126
|
+
}[];
|
|
127
|
+
} | {
|
|
128
|
+
key: string;
|
|
129
|
+
label: string;
|
|
130
|
+
type: "date";
|
|
131
|
+
options?: never;
|
|
132
|
+
})[];
|
|
133
|
+
description?: never;
|
|
134
|
+
} | {
|
|
135
|
+
id: string;
|
|
136
|
+
title: string;
|
|
137
|
+
fields: ({
|
|
138
|
+
key: string;
|
|
139
|
+
label: string;
|
|
140
|
+
type: "date";
|
|
141
|
+
} | {
|
|
142
|
+
key: string;
|
|
143
|
+
label: string;
|
|
144
|
+
type: "confirm";
|
|
145
|
+
} | {
|
|
146
|
+
key: string;
|
|
147
|
+
label: string;
|
|
148
|
+
type: "number";
|
|
149
|
+
})[];
|
|
150
|
+
description?: never;
|
|
151
|
+
} | {
|
|
152
|
+
id: string;
|
|
153
|
+
title: string;
|
|
154
|
+
description: string;
|
|
155
|
+
fields: never[];
|
|
156
|
+
})[];
|
|
157
|
+
buildBundle: typeof buildExpungementBundle;
|
|
158
|
+
};
|
|
159
|
+
readonly "legal/child-support-modification": {
|
|
160
|
+
summary: {
|
|
161
|
+
id: string;
|
|
162
|
+
domain: "legal";
|
|
163
|
+
title: string;
|
|
164
|
+
summary: string;
|
|
165
|
+
status: "active";
|
|
166
|
+
audience: "individual";
|
|
167
|
+
tags: string[];
|
|
168
|
+
};
|
|
169
|
+
inputSchema: import("zod").ZodObject<{
|
|
170
|
+
petitionerName: import("zod").ZodString;
|
|
171
|
+
currentOrderAmount: import("zod").ZodCoercedNumber<unknown>;
|
|
172
|
+
currentIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
173
|
+
previousIncome: import("zod").ZodCoercedNumber<unknown>;
|
|
174
|
+
reason: import("zod").ZodEnum<{
|
|
175
|
+
"income-change": "income-change";
|
|
176
|
+
"custody-change": "custody-change";
|
|
177
|
+
"child-needs-change": "child-needs-change";
|
|
178
|
+
}>;
|
|
179
|
+
state: import("zod").ZodString;
|
|
180
|
+
numberOfChildren: import("zod").ZodCoercedNumber<unknown>;
|
|
181
|
+
}, import("zod/v4/core").$strict>;
|
|
182
|
+
starterData: {
|
|
183
|
+
petitionerName: string;
|
|
184
|
+
currentOrderAmount: number;
|
|
185
|
+
currentIncome: number;
|
|
186
|
+
previousIncome: number;
|
|
187
|
+
reason: "income-change";
|
|
188
|
+
state: string;
|
|
189
|
+
numberOfChildren: number;
|
|
190
|
+
};
|
|
191
|
+
sections: ({
|
|
192
|
+
id: string;
|
|
193
|
+
title: string;
|
|
194
|
+
fields: ({
|
|
195
|
+
key: string;
|
|
196
|
+
label: string;
|
|
197
|
+
type: "text";
|
|
198
|
+
} | {
|
|
199
|
+
key: string;
|
|
200
|
+
label: string;
|
|
201
|
+
type: "currency";
|
|
202
|
+
} | {
|
|
203
|
+
key: string;
|
|
204
|
+
label: string;
|
|
205
|
+
type: "number";
|
|
206
|
+
})[];
|
|
207
|
+
description?: never;
|
|
208
|
+
} | {
|
|
209
|
+
id: string;
|
|
210
|
+
title: string;
|
|
211
|
+
fields: ({
|
|
212
|
+
key: string;
|
|
213
|
+
label: string;
|
|
214
|
+
type: "currency";
|
|
215
|
+
options?: never;
|
|
216
|
+
} | {
|
|
217
|
+
key: string;
|
|
218
|
+
label: string;
|
|
219
|
+
type: "select";
|
|
220
|
+
options: {
|
|
221
|
+
label: string;
|
|
222
|
+
value: string;
|
|
223
|
+
}[];
|
|
224
|
+
})[];
|
|
225
|
+
description?: never;
|
|
226
|
+
} | {
|
|
227
|
+
id: string;
|
|
228
|
+
title: string;
|
|
229
|
+
description: string;
|
|
230
|
+
fields: never[];
|
|
231
|
+
})[];
|
|
232
|
+
buildBundle: typeof buildChildSupportModificationBundle;
|
|
233
|
+
};
|
|
234
|
+
};
|
|
235
|
+
export {};
|