@lovie-ai/formation-mcp-server 1.0.1
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/LICENSE +21 -0
- package/README.md +256 -0
- package/dist/cli/commands/certificate-review.d.ts +16 -0
- package/dist/cli/commands/certificate-review.d.ts.map +1 -0
- package/dist/cli/commands/certificate-review.js +71 -0
- package/dist/cli/commands/certificate-review.js.map +1 -0
- package/dist/cli/commands/help.d.ts +10 -0
- package/dist/cli/commands/help.d.ts.map +1 -0
- package/dist/cli/commands/help.js +42 -0
- package/dist/cli/commands/help.js.map +1 -0
- package/dist/cli/commands/index.d.ts +7 -0
- package/dist/cli/commands/index.d.ts.map +1 -0
- package/dist/cli/commands/index.js +23 -0
- package/dist/cli/commands/index.js.map +1 -0
- package/dist/cli/commands/start.d.ts +9 -0
- package/dist/cli/commands/start.d.ts.map +1 -0
- package/dist/cli/commands/start.js +24 -0
- package/dist/cli/commands/start.js.map +1 -0
- package/dist/cli/commands/version.d.ts +9 -0
- package/dist/cli/commands/version.d.ts.map +1 -0
- package/dist/cli/commands/version.js +27 -0
- package/dist/cli/commands/version.js.map +1 -0
- package/dist/cli/formationFlow.d.ts +21 -0
- package/dist/cli/formationFlow.d.ts.map +1 -0
- package/dist/cli/formationFlow.js +1058 -0
- package/dist/cli/formationFlow.js.map +1 -0
- package/dist/cli/index.d.ts +12 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +28 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/prompts/company-info.d.ts +29 -0
- package/dist/cli/prompts/company-info.d.ts.map +1 -0
- package/dist/cli/prompts/company-info.js +118 -0
- package/dist/cli/prompts/company-info.js.map +1 -0
- package/dist/cli/prompts/index.d.ts +10 -0
- package/dist/cli/prompts/index.d.ts.map +1 -0
- package/dist/cli/prompts/index.js +26 -0
- package/dist/cli/prompts/index.js.map +1 -0
- package/dist/cli/prompts/payment.d.ts +13 -0
- package/dist/cli/prompts/payment.d.ts.map +1 -0
- package/dist/cli/prompts/payment.js +74 -0
- package/dist/cli/prompts/payment.js.map +1 -0
- package/dist/cli/prompts/registered-agent.d.ts +12 -0
- package/dist/cli/prompts/registered-agent.d.ts.map +1 -0
- package/dist/cli/prompts/registered-agent.js +70 -0
- package/dist/cli/prompts/registered-agent.js.map +1 -0
- package/dist/cli/prompts/review-summary.d.ts +20 -0
- package/dist/cli/prompts/review-summary.d.ts.map +1 -0
- package/dist/cli/prompts/review-summary.js +96 -0
- package/dist/cli/prompts/review-summary.js.map +1 -0
- package/dist/cli/prompts/shareholder-info.d.ts +12 -0
- package/dist/cli/prompts/shareholder-info.d.ts.map +1 -0
- package/dist/cli/prompts/shareholder-info.js +135 -0
- package/dist/cli/prompts/shareholder-info.js.map +1 -0
- package/dist/cli/prompts/welcome.d.ts +17 -0
- package/dist/cli/prompts/welcome.d.ts.map +1 -0
- package/dist/cli/prompts/welcome.js +53 -0
- package/dist/cli/prompts/welcome.js.map +1 -0
- package/dist/cli/prompts.d.ts +48 -0
- package/dist/cli/prompts.d.ts.map +1 -0
- package/dist/cli/prompts.js +461 -0
- package/dist/cli/prompts.js.map +1 -0
- package/dist/cli/types/index.d.ts +52 -0
- package/dist/cli/types/index.d.ts.map +1 -0
- package/dist/cli/types/index.js +6 -0
- package/dist/cli/types/index.js.map +1 -0
- package/dist/cli/utils/formatter.d.ts +80 -0
- package/dist/cli/utils/formatter.d.ts.map +1 -0
- package/dist/cli/utils/formatter.js +140 -0
- package/dist/cli/utils/formatter.js.map +1 -0
- package/dist/cli/utils/session.d.ts +36 -0
- package/dist/cli/utils/session.d.ts.map +1 -0
- package/dist/cli/utils/session.js +159 -0
- package/dist/cli/utils/session.js.map +1 -0
- package/dist/cli/utils/spinner.d.ts +41 -0
- package/dist/cli/utils/spinner.d.ts.map +1 -0
- package/dist/cli/utils/spinner.js +88 -0
- package/dist/cli/utils/spinner.js.map +1 -0
- package/dist/cli/validators/index.d.ts +38 -0
- package/dist/cli/validators/index.d.ts.map +1 -0
- package/dist/cli/validators/index.js +181 -0
- package/dist/cli/validators/index.js.map +1 -0
- package/dist/cli.d.ts +14 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +79 -0
- package/dist/cli.js.map +1 -0
- package/dist/core/FormationOrchestrator.d.ts +142 -0
- package/dist/core/FormationOrchestrator.d.ts.map +1 -0
- package/dist/core/FormationOrchestrator.js +401 -0
- package/dist/core/FormationOrchestrator.js.map +1 -0
- package/dist/core/StateMachine.d.ts +64 -0
- package/dist/core/StateMachine.d.ts.map +1 -0
- package/dist/core/StateMachine.js +170 -0
- package/dist/core/StateMachine.js.map +1 -0
- package/dist/core/agents/DocumentFillerAgent.d.ts +59 -0
- package/dist/core/agents/DocumentFillerAgent.d.ts.map +1 -0
- package/dist/core/agents/DocumentFillerAgent.js +178 -0
- package/dist/core/agents/DocumentFillerAgent.js.map +1 -0
- package/dist/core/agents/FilingAgent.d.ts +78 -0
- package/dist/core/agents/FilingAgent.d.ts.map +1 -0
- package/dist/core/agents/FilingAgent.js +217 -0
- package/dist/core/agents/FilingAgent.js.map +1 -0
- package/dist/core/agents/NameCheckAgent.d.ts +53 -0
- package/dist/core/agents/NameCheckAgent.d.ts.map +1 -0
- package/dist/core/agents/NameCheckAgent.js +139 -0
- package/dist/core/agents/NameCheckAgent.js.map +1 -0
- package/dist/core/index.d.ts +10 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +26 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/types.d.ts +175 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +56 -0
- package/dist/core/types.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +70 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/errors.d.ts +42 -0
- package/dist/mcp/errors.d.ts.map +1 -0
- package/dist/mcp/errors.js +115 -0
- package/dist/mcp/errors.js.map +1 -0
- package/dist/mcp/index.d.ts +7 -0
- package/dist/mcp/index.d.ts.map +1 -0
- package/dist/mcp/index.js +40 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/mcp/middleware/session.d.ts +9 -0
- package/dist/mcp/middleware/session.d.ts.map +1 -0
- package/dist/mcp/middleware/session.js +118 -0
- package/dist/mcp/middleware/session.js.map +1 -0
- package/dist/mcp/server.d.ts +4 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +73 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/services/DatabaseSyncClient.d.ts +17 -0
- package/dist/mcp/services/DatabaseSyncClient.d.ts.map +1 -0
- package/dist/mcp/services/DatabaseSyncClient.js +70 -0
- package/dist/mcp/services/DatabaseSyncClient.js.map +1 -0
- package/dist/mcp/state/FormationSessionStore.d.ts +17 -0
- package/dist/mcp/state/FormationSessionStore.d.ts.map +1 -0
- package/dist/mcp/state/FormationSessionStore.js +150 -0
- package/dist/mcp/state/FormationSessionStore.js.map +1 -0
- package/dist/mcp/state/progress.d.ts +23 -0
- package/dist/mcp/state/progress.d.ts.map +1 -0
- package/dist/mcp/state/progress.js +151 -0
- package/dist/mcp/state/progress.js.map +1 -0
- package/dist/mcp/state/types.d.ts +104 -0
- package/dist/mcp/state/types.d.ts.map +1 -0
- package/dist/mcp/state/types.js +62 -0
- package/dist/mcp/state/types.js.map +1 -0
- package/dist/mcp/tools/certificate.d.ts +6 -0
- package/dist/mcp/tools/certificate.d.ts.map +1 -0
- package/dist/mcp/tools/certificate.js +169 -0
- package/dist/mcp/tools/certificate.js.map +1 -0
- package/dist/mcp/tools/company.d.ts +9 -0
- package/dist/mcp/tools/company.d.ts.map +1 -0
- package/dist/mcp/tools/company.js +247 -0
- package/dist/mcp/tools/company.js.map +1 -0
- package/dist/mcp/tools/index.d.ts +8 -0
- package/dist/mcp/tools/index.d.ts.map +1 -0
- package/dist/mcp/tools/index.js +43 -0
- package/dist/mcp/tools/index.js.map +1 -0
- package/dist/mcp/tools/session.d.ts +7 -0
- package/dist/mcp/tools/session.d.ts.map +1 -0
- package/dist/mcp/tools/session.js +180 -0
- package/dist/mcp/tools/session.js.map +1 -0
- package/dist/mcp/tools/stakeholders.d.ts +8 -0
- package/dist/mcp/tools/stakeholders.d.ts.map +1 -0
- package/dist/mcp/tools/stakeholders.js +274 -0
- package/dist/mcp/tools/stakeholders.js.map +1 -0
- package/dist/mcp/tools/sync.d.ts +5 -0
- package/dist/mcp/tools/sync.d.ts.map +1 -0
- package/dist/mcp/tools/sync.js +56 -0
- package/dist/mcp/tools/sync.js.map +1 -0
- package/dist/mcp/validation.d.ts +72 -0
- package/dist/mcp/validation.d.ts.map +1 -0
- package/dist/mcp/validation.js +94 -0
- package/dist/mcp/validation.js.map +1 -0
- package/dist/services/agents/BaseAgentClient.d.ts +84 -0
- package/dist/services/agents/BaseAgentClient.d.ts.map +1 -0
- package/dist/services/agents/BaseAgentClient.js +296 -0
- package/dist/services/agents/BaseAgentClient.js.map +1 -0
- package/dist/services/agents/DocumentFillerAgent.d.ts +69 -0
- package/dist/services/agents/DocumentFillerAgent.d.ts.map +1 -0
- package/dist/services/agents/DocumentFillerAgent.js +144 -0
- package/dist/services/agents/DocumentFillerAgent.js.map +1 -0
- package/dist/services/agents/FilingAgent.d.ts +108 -0
- package/dist/services/agents/FilingAgent.d.ts.map +1 -0
- package/dist/services/agents/FilingAgent.js +158 -0
- package/dist/services/agents/FilingAgent.js.map +1 -0
- package/dist/services/agents/NameCheckAgent.d.ts +98 -0
- package/dist/services/agents/NameCheckAgent.d.ts.map +1 -0
- package/dist/services/agents/NameCheckAgent.js +254 -0
- package/dist/services/agents/NameCheckAgent.js.map +1 -0
- package/dist/services/agents/documentFillerClient.d.ts +201 -0
- package/dist/services/agents/documentFillerClient.d.ts.map +1 -0
- package/dist/services/agents/documentFillerClient.js +386 -0
- package/dist/services/agents/documentFillerClient.js.map +1 -0
- package/dist/services/agents/filingClient.d.ts +251 -0
- package/dist/services/agents/filingClient.d.ts.map +1 -0
- package/dist/services/agents/filingClient.js +436 -0
- package/dist/services/agents/filingClient.js.map +1 -0
- package/dist/services/agents/index.d.ts +18 -0
- package/dist/services/agents/index.d.ts.map +1 -0
- package/dist/services/agents/index.js +40 -0
- package/dist/services/agents/index.js.map +1 -0
- package/dist/services/agents/nameCheckClient.d.ts +154 -0
- package/dist/services/agents/nameCheckClient.d.ts.map +1 -0
- package/dist/services/agents/nameCheckClient.js +314 -0
- package/dist/services/agents/nameCheckClient.js.map +1 -0
- package/dist/services/agents/paymentClient.d.ts +253 -0
- package/dist/services/agents/paymentClient.d.ts.map +1 -0
- package/dist/services/agents/paymentClient.js +482 -0
- package/dist/services/agents/paymentClient.js.map +1 -0
- package/dist/services/agents/types.d.ts +483 -0
- package/dist/services/agents/types.d.ts.map +1 -0
- package/dist/services/agents/types.js +136 -0
- package/dist/services/agents/types.js.map +1 -0
- package/dist/services/apiClient.d.ts +53 -0
- package/dist/services/apiClient.d.ts.map +1 -0
- package/dist/services/apiClient.js +187 -0
- package/dist/services/apiClient.js.map +1 -0
- package/dist/services/certificate/api.d.ts +46 -0
- package/dist/services/certificate/api.d.ts.map +1 -0
- package/dist/services/certificate/api.js +201 -0
- package/dist/services/certificate/api.js.map +1 -0
- package/dist/services/certificate/index.d.ts +8 -0
- package/dist/services/certificate/index.d.ts.map +1 -0
- package/dist/services/certificate/index.js +24 -0
- package/dist/services/certificate/index.js.map +1 -0
- package/dist/services/certificate/server.d.ts +77 -0
- package/dist/services/certificate/server.d.ts.map +1 -0
- package/dist/services/certificate/server.js +682 -0
- package/dist/services/certificate/server.js.map +1 -0
- package/dist/services/certificate/types.d.ts +86 -0
- package/dist/services/certificate/types.d.ts.map +1 -0
- package/dist/services/certificate/types.js +7 -0
- package/dist/services/certificate/types.js.map +1 -0
- package/dist/services/session-storage.d.ts +133 -0
- package/dist/services/session-storage.d.ts.map +1 -0
- package/dist/services/session-storage.js +412 -0
- package/dist/services/session-storage.js.map +1 -0
- package/dist/services/sessionManager.d.ts +74 -0
- package/dist/services/sessionManager.d.ts.map +1 -0
- package/dist/services/sessionManager.js +260 -0
- package/dist/services/sessionManager.js.map +1 -0
- package/dist/storage/SessionManager.d.ts +107 -0
- package/dist/storage/SessionManager.d.ts.map +1 -0
- package/dist/storage/SessionManager.js +556 -0
- package/dist/storage/SessionManager.js.map +1 -0
- package/dist/storage/encryption.d.ts +58 -0
- package/dist/storage/encryption.d.ts.map +1 -0
- package/dist/storage/encryption.js +155 -0
- package/dist/storage/encryption.js.map +1 -0
- package/dist/storage/index.d.ts +7 -0
- package/dist/storage/index.d.ts.map +1 -0
- package/dist/storage/index.js +26 -0
- package/dist/storage/index.js.map +1 -0
- package/dist/storage/types.d.ts +107 -0
- package/dist/storage/types.d.ts.map +1 -0
- package/dist/storage/types.js +23 -0
- package/dist/storage/types.js.map +1 -0
- package/dist/types/certificate-storage.d.ts +73 -0
- package/dist/types/certificate-storage.d.ts.map +1 -0
- package/dist/types/certificate-storage.js +8 -0
- package/dist/types/certificate-storage.js.map +1 -0
- package/dist/types/index.d.ts +80 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +22 -0
- package/dist/types/index.js.map +1 -0
- package/dist/utils/browser-launcher.d.ts +48 -0
- package/dist/utils/browser-launcher.d.ts.map +1 -0
- package/dist/utils/browser-launcher.js +128 -0
- package/dist/utils/browser-launcher.js.map +1 -0
- package/dist/utils/browser.d.ts +17 -0
- package/dist/utils/browser.d.ts.map +1 -0
- package/dist/utils/browser.js +82 -0
- package/dist/utils/browser.js.map +1 -0
- package/dist/utils/config.d.ts +29 -0
- package/dist/utils/config.d.ts.map +1 -0
- package/dist/utils/config.js +57 -0
- package/dist/utils/config.js.map +1 -0
- package/dist/utils/display.d.ts +115 -0
- package/dist/utils/display.d.ts.map +1 -0
- package/dist/utils/display.js +371 -0
- package/dist/utils/display.js.map +1 -0
- package/dist/utils/encryption.d.ts +20 -0
- package/dist/utils/encryption.d.ts.map +1 -0
- package/dist/utils/encryption.js +79 -0
- package/dist/utils/encryption.js.map +1 -0
- package/dist/utils/logger.d.ts +22 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +54 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/validation.d.ts +55 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +178 -0
- package/dist/utils/validation.js.map +1 -0
- package/dist/workflows/certificate-review.d.ts +33 -0
- package/dist/workflows/certificate-review.d.ts.map +1 -0
- package/dist/workflows/certificate-review.js +314 -0
- package/dist/workflows/certificate-review.js.map +1 -0
- package/dist/workflows/index.d.ts +5 -0
- package/dist/workflows/index.d.ts.map +1 -0
- package/dist/workflows/index.js +21 -0
- package/dist/workflows/index.js.map +1 -0
- package/package.json +67 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 [Your Name]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
# Lovie CLI - Streamlined US Company Formation
|
|
2
|
+
|
|
3
|
+
> Form your US company in minutes, right from your terminal.
|
|
4
|
+
|
|
5
|
+
[](https://badge.fury.io/js/lovie)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
Lovie CLI is a conversational command-line tool that guides you through forming a US company (LLC, C-Corp, or S-Corp) with real-time name checking, automatic document generation, and seamless state filing.
|
|
9
|
+
|
|
10
|
+
## ✨ Features
|
|
11
|
+
|
|
12
|
+
- **🚀 Quick Formation** - Complete company formation in under 15 minutes
|
|
13
|
+
- **💬 Conversational Interface** - Plain language, no legal jargon
|
|
14
|
+
- **⚡ Real-Time Name Check** - Instant company name availability verification
|
|
15
|
+
- **📄 Auto-Document Generation** - Professional incorporation documents created automatically
|
|
16
|
+
- **🏛️ Direct State Filing** - Submit directly to state authorities
|
|
17
|
+
- **💳 Secure Payment** - PCI-compliant payment processing
|
|
18
|
+
- **💾 Resume Capability** - Save progress and resume anytime
|
|
19
|
+
- **🖥️ Cross-Platform** - Works on macOS, Windows, and Linux
|
|
20
|
+
|
|
21
|
+
## 🎯 Quick Start
|
|
22
|
+
|
|
23
|
+
### Installation
|
|
24
|
+
|
|
25
|
+
**macOS (Homebrew)**
|
|
26
|
+
```bash
|
|
27
|
+
brew install lovie
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**Windows/Linux/macOS (npm)**
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g lovie
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Basic Usage
|
|
36
|
+
|
|
37
|
+
Start the company formation process:
|
|
38
|
+
```bash
|
|
39
|
+
lovie
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Check version:
|
|
43
|
+
```bash
|
|
44
|
+
lovie --version
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Get help:
|
|
48
|
+
```bash
|
|
49
|
+
lovie --help
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## 📋 What You'll Need
|
|
53
|
+
|
|
54
|
+
Before starting, have these ready:
|
|
55
|
+
|
|
56
|
+
- **Company Information**
|
|
57
|
+
- Desired company name (we'll check availability)
|
|
58
|
+
- State of incorporation
|
|
59
|
+
- Company type (LLC, C-Corp, or S-Corp)
|
|
60
|
+
|
|
61
|
+
- **Shareholder/Member Details**
|
|
62
|
+
- Full legal names
|
|
63
|
+
- Addresses
|
|
64
|
+
- SSN or EIN
|
|
65
|
+
- Ownership percentages
|
|
66
|
+
|
|
67
|
+
- **Registered Agent**
|
|
68
|
+
- Name and address (must be in the state of incorporation)
|
|
69
|
+
|
|
70
|
+
- **Payment Method**
|
|
71
|
+
- Credit/debit card for state filing fees and service fee
|
|
72
|
+
|
|
73
|
+
## 🎬 Usage Example
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
$ lovie
|
|
77
|
+
|
|
78
|
+
┌─────────────────────────────────────┐
|
|
79
|
+
│ Welcome to Lovie Company Formation │
|
|
80
|
+
└─────────────────────────────────────┘
|
|
81
|
+
|
|
82
|
+
Let's form your company! I'll guide you through the process.
|
|
83
|
+
|
|
84
|
+
? What would you like to name your company?
|
|
85
|
+
› Acme Innovations
|
|
86
|
+
|
|
87
|
+
⠋ Checking name availability...
|
|
88
|
+
✓ "Acme Innovations" is available in Delaware!
|
|
89
|
+
|
|
90
|
+
? Which state would you like to incorporate in?
|
|
91
|
+
› ◉ Delaware (Recommended for most startups)
|
|
92
|
+
○ California
|
|
93
|
+
○ New York
|
|
94
|
+
○ Texas
|
|
95
|
+
↓ 46 more states...
|
|
96
|
+
|
|
97
|
+
? What type of company would you like to form?
|
|
98
|
+
◉ LLC (Limited Liability Company)
|
|
99
|
+
Simple structure, pass-through taxation
|
|
100
|
+
○ C-Corporation
|
|
101
|
+
Best for raising venture capital
|
|
102
|
+
○ S-Corporation
|
|
103
|
+
Pass-through taxation with corporate structure
|
|
104
|
+
|
|
105
|
+
...
|
|
106
|
+
|
|
107
|
+
┌──────────────────────────────────────┐
|
|
108
|
+
│ Review Your Company Information │
|
|
109
|
+
└──────────────────────────────────────┘
|
|
110
|
+
|
|
111
|
+
Company Details:
|
|
112
|
+
Name: Acme Innovations LLC
|
|
113
|
+
State: Delaware
|
|
114
|
+
Type: Limited Liability Company
|
|
115
|
+
|
|
116
|
+
Members:
|
|
117
|
+
1. John Smith (100%)
|
|
118
|
+
123 Main St, San Francisco, CA 94102
|
|
119
|
+
|
|
120
|
+
Registered Agent:
|
|
121
|
+
Delaware Corporate Services
|
|
122
|
+
456 Business Ave, Wilmington, DE 19801
|
|
123
|
+
|
|
124
|
+
Costs:
|
|
125
|
+
State Filing Fee: $90.00
|
|
126
|
+
Service Fee: $49.00
|
|
127
|
+
─────────────────────────────
|
|
128
|
+
Total: $139.00
|
|
129
|
+
|
|
130
|
+
? Everything look correct? (Y/n)
|
|
131
|
+
|
|
132
|
+
✓ Payment processed successfully!
|
|
133
|
+
⠋ Generating incorporation documents...
|
|
134
|
+
✓ Documents generated
|
|
135
|
+
⠋ Filing with Delaware Division of Corporations...
|
|
136
|
+
✓ Filed successfully!
|
|
137
|
+
|
|
138
|
+
┌──────────────────────────────────────┐
|
|
139
|
+
│ 🎉 Congratulations! │
|
|
140
|
+
└──────────────────────────────────────┘
|
|
141
|
+
|
|
142
|
+
Your company has been formed!
|
|
143
|
+
|
|
144
|
+
Filing Details:
|
|
145
|
+
Confirmation #: DE-2025-123456
|
|
146
|
+
Filing Date: December 23, 2025
|
|
147
|
+
Status: Approved
|
|
148
|
+
|
|
149
|
+
Documents saved to: ~/lovie/acme-innovations-llc/
|
|
150
|
+
|
|
151
|
+
Next Steps:
|
|
152
|
+
1. Apply for EIN (Employer ID Number) at irs.gov
|
|
153
|
+
2. Open a business bank account
|
|
154
|
+
3. Set up accounting software
|
|
155
|
+
4. File annual reports as required
|
|
156
|
+
|
|
157
|
+
Questions? Visit https://lovie.io/support
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
## 🗂️ Supported Company Types
|
|
161
|
+
|
|
162
|
+
### LLC (Limited Liability Company)
|
|
163
|
+
- Simple structure with flexible management
|
|
164
|
+
- Pass-through taxation
|
|
165
|
+
- Personal liability protection
|
|
166
|
+
- Fewer compliance requirements
|
|
167
|
+
- **Best for**: Small businesses, side projects, real estate
|
|
168
|
+
|
|
169
|
+
### C-Corporation
|
|
170
|
+
- Formal corporate structure
|
|
171
|
+
- Can issue multiple stock classes
|
|
172
|
+
- Attracts venture capital investment
|
|
173
|
+
- Corporate taxation (double taxation)
|
|
174
|
+
- **Best for**: Startups planning to raise VC funding
|
|
175
|
+
|
|
176
|
+
### S-Corporation
|
|
177
|
+
- Corporate structure with pass-through taxation
|
|
178
|
+
- Ownership restrictions (100 shareholders max, US citizens/residents only)
|
|
179
|
+
- Tax savings on self-employment
|
|
180
|
+
- More compliance requirements
|
|
181
|
+
- **Best for**: Small to medium businesses with US-based owners
|
|
182
|
+
|
|
183
|
+
## 🗺️ Supported States
|
|
184
|
+
|
|
185
|
+
**v1.0 (MVP)**: Delaware
|
|
186
|
+
|
|
187
|
+
**Planned**: California, Texas, New York, Florida, Wyoming, Nevada, and 44+ more states
|
|
188
|
+
|
|
189
|
+
## 🔒 Security & Privacy
|
|
190
|
+
|
|
191
|
+
- **Encryption**: All sensitive data encrypted at rest and in transit
|
|
192
|
+
- **PCI Compliance**: Payment processing through Stripe (PCI Level 1 certified)
|
|
193
|
+
- **Data Deletion**: Sensitive information cleared after formation completion
|
|
194
|
+
- **No Storage**: Credit card details never stored locally or on our servers
|
|
195
|
+
- **Secure Sessions**: Unique session IDs with encrypted local storage
|
|
196
|
+
|
|
197
|
+
## 🆘 Troubleshooting
|
|
198
|
+
|
|
199
|
+
### Installation Issues
|
|
200
|
+
|
|
201
|
+
**Error: Command not found**
|
|
202
|
+
```bash
|
|
203
|
+
# Verify installation
|
|
204
|
+
which lovie
|
|
205
|
+
|
|
206
|
+
# If using npm, ensure global bin is in PATH
|
|
207
|
+
npm config get prefix
|
|
208
|
+
# Add to PATH: export PATH="$(npm config get prefix)/bin:$PATH"
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
**Error: Permission denied**
|
|
212
|
+
```bash
|
|
213
|
+
# macOS/Linux: Use sudo (not recommended) or fix npm permissions
|
|
214
|
+
npm config set prefix ~/.npm-global
|
|
215
|
+
export PATH=~/.npm-global/bin:$PATH
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### Common Issues
|
|
219
|
+
|
|
220
|
+
**"Name not available" errors**: Try variations of your company name. Add LLC/Inc suffix, use different words.
|
|
221
|
+
|
|
222
|
+
**Payment declined**: Check card details, ensure sufficient funds, try a different card.
|
|
223
|
+
|
|
224
|
+
**Connection timeout**: Check internet connection, retry operation. Data is saved automatically.
|
|
225
|
+
|
|
226
|
+
See [TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) for detailed solutions.
|
|
227
|
+
|
|
228
|
+
## 📚 Documentation
|
|
229
|
+
|
|
230
|
+
- [User Guide](docs/USER_GUIDE.md) - Comprehensive user guide with detailed walkthroughs
|
|
231
|
+
- [API Documentation](docs/API.md) - Backend agent API reference
|
|
232
|
+
- [Development Guide](docs/DEVELOPMENT.md) - Setup, testing, and contribution guide
|
|
233
|
+
- [Troubleshooting](docs/TROUBLESHOOTING.md) - Common issues and solutions
|
|
234
|
+
|
|
235
|
+
## 🤝 Contributing
|
|
236
|
+
|
|
237
|
+
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
238
|
+
|
|
239
|
+
## 📝 License
|
|
240
|
+
|
|
241
|
+
MIT License - see [LICENSE](LICENSE) file for details.
|
|
242
|
+
|
|
243
|
+
## 🔗 Links
|
|
244
|
+
|
|
245
|
+
- **Website**: https://lovie.io
|
|
246
|
+
- **Support**: https://lovie.io/support
|
|
247
|
+
- **GitHub**: https://github.com/lovie/lovie-cli
|
|
248
|
+
- **npm**: https://npmjs.com/package/lovie
|
|
249
|
+
|
|
250
|
+
## ⚖️ Legal Disclaimer
|
|
251
|
+
|
|
252
|
+
Lovie CLI is a document preparation and filing service. We do not provide legal or tax advice. For legal guidance on choosing the right business structure, consult with a licensed attorney. For tax advice, consult with a certified tax professional.
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
Made with ❤️ by the Lovie team
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Certificate Review Command Integration
|
|
3
|
+
* Integrates certificate review workflow into the formation flow
|
|
4
|
+
* Feature 002: Pre-Payment Certificate Review and Approval
|
|
5
|
+
*/
|
|
6
|
+
import { CompanyFormationData } from '../../types';
|
|
7
|
+
import { CertificateSessionData } from '../../services/certificate/types';
|
|
8
|
+
/**
|
|
9
|
+
* Integration point for certificate review
|
|
10
|
+
* Called AFTER review step and BEFORE payment step
|
|
11
|
+
*
|
|
12
|
+
* @param companyData - Complete company formation data
|
|
13
|
+
* @returns Certificate session data if approved, null if cancelled/failed
|
|
14
|
+
*/
|
|
15
|
+
export declare function runCertificateReviewStep(companyData: CompanyFormationData): Promise<CertificateSessionData | null>;
|
|
16
|
+
//# sourceMappingURL=certificate-review.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"certificate-review.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/certificate-review.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,EAAE,sBAAsB,EAAE,MAAM,kCAAkC,CAAC;AAE1E;;;;;;GAMG;AACH,wBAAsB,wBAAwB,CAC5C,WAAW,EAAE,oBAAoB,GAChC,OAAO,CAAC,sBAAsB,GAAG,IAAI,CAAC,CAuDxC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Certificate Review Command Integration
|
|
4
|
+
* Integrates certificate review workflow into the formation flow
|
|
5
|
+
* Feature 002: Pre-Payment Certificate Review and Approval
|
|
6
|
+
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.runCertificateReviewStep = runCertificateReviewStep;
|
|
12
|
+
const chalk_1 = __importDefault(require("chalk"));
|
|
13
|
+
const certificate_review_1 = require("../../workflows/certificate-review");
|
|
14
|
+
/**
|
|
15
|
+
* Integration point for certificate review
|
|
16
|
+
* Called AFTER review step and BEFORE payment step
|
|
17
|
+
*
|
|
18
|
+
* @param companyData - Complete company formation data
|
|
19
|
+
* @returns Certificate session data if approved, null if cancelled/failed
|
|
20
|
+
*/
|
|
21
|
+
async function runCertificateReviewStep(companyData) {
|
|
22
|
+
console.log();
|
|
23
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ╔════════════════════════════════════════════════════════╗'));
|
|
24
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ║'));
|
|
25
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ') + chalk_1.default.bold.white('CERTIFICATE PREVIEW') + chalk_1.default.hex('#4A90E2')(' ║'));
|
|
26
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ║'));
|
|
27
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ╟────────────────────────────────────────────────────────╢'));
|
|
28
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ║'));
|
|
29
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ') + chalk_1.default.white('Before proceeding to payment, let\'s preview your') + chalk_1.default.hex('#4A90E2')(' ║'));
|
|
30
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ') + chalk_1.default.white('Certificate of Incorporation.') + chalk_1.default.hex('#4A90E2')(' ║'));
|
|
31
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ║'));
|
|
32
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ') + chalk_1.default.dim('This ensures all information is correct before') + chalk_1.default.hex('#4A90E2')(' ║'));
|
|
33
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ') + chalk_1.default.dim('making your payment.') + chalk_1.default.hex('#4A90E2')(' ║'));
|
|
34
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ║ ║'));
|
|
35
|
+
console.log(chalk_1.default.hex('#4A90E2')(' ╚════════════════════════════════════════════════════════╝'));
|
|
36
|
+
console.log();
|
|
37
|
+
try {
|
|
38
|
+
// Run certificate review workflow
|
|
39
|
+
const result = await (0, certificate_review_1.reviewCertificateBeforePayment)(companyData);
|
|
40
|
+
if (result.approved && result.certificateData) {
|
|
41
|
+
// Return certificate data directly (already in correct format)
|
|
42
|
+
const certificateData = {
|
|
43
|
+
certificateId: result.certificateData.certificateId,
|
|
44
|
+
downloadUrl: result.certificateData.downloadUrl,
|
|
45
|
+
s3Uri: result.certificateData.s3Uri,
|
|
46
|
+
expiresAt: result.certificateData.expiresAt,
|
|
47
|
+
approvedAt: result.certificateData.approvedAt,
|
|
48
|
+
metadata: result.certificateData.metadata
|
|
49
|
+
};
|
|
50
|
+
return certificateData;
|
|
51
|
+
}
|
|
52
|
+
if (result.cancelled) {
|
|
53
|
+
console.log(chalk_1.default.yellow('You can make changes and try again.'));
|
|
54
|
+
return null;
|
|
55
|
+
}
|
|
56
|
+
if (result.error) {
|
|
57
|
+
console.log(chalk_1.default.red(`Error: ${result.error}`));
|
|
58
|
+
console.log(chalk_1.default.yellow('\nWould you like to proceed without certificate preview?'));
|
|
59
|
+
return null;
|
|
60
|
+
}
|
|
61
|
+
return null;
|
|
62
|
+
}
|
|
63
|
+
catch (error) {
|
|
64
|
+
console.log();
|
|
65
|
+
console.log(chalk_1.default.red('Certificate preview encountered an error.'));
|
|
66
|
+
console.log(chalk_1.default.yellow('You can proceed to payment, but we recommend reviewing your information carefully.'));
|
|
67
|
+
console.log();
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=certificate-review.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"certificate-review.js","sourceRoot":"","sources":["../../../src/cli/commands/certificate-review.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/help.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;GAEG;AACH,wBAAgB,QAAQ,IAAI,IAAI,CAkC/B"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Help command
|
|
4
|
+
* FR-003: Provide --help command
|
|
5
|
+
* FR-007: Plain language, no jargon
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.showHelp = showHelp;
|
|
9
|
+
const formatter_1 = require("../utils/formatter");
|
|
10
|
+
/**
|
|
11
|
+
* Display help information
|
|
12
|
+
*/
|
|
13
|
+
function showHelp() {
|
|
14
|
+
(0, formatter_1.print)((0, formatter_1.formatHeader)('Lovie CLI - Company Formation Tool'));
|
|
15
|
+
(0, formatter_1.print)(formatter_1.colors.bold('\nUsage:'));
|
|
16
|
+
(0, formatter_1.print)(' lovie [command] [options]\n');
|
|
17
|
+
(0, formatter_1.print)(formatter_1.colors.bold('Commands:'));
|
|
18
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('lovie, lovie start Start company formation process'));
|
|
19
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('lovie --version Show version information'));
|
|
20
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('lovie --help Show this help message'));
|
|
21
|
+
(0, formatter_1.print)(formatter_1.colors.bold('\nDescription:'));
|
|
22
|
+
(0, formatter_1.print)(' Lovie helps you form your US company in minutes through an interactive,');
|
|
23
|
+
(0, formatter_1.print)(' user-friendly command-line interface. We support LLC, C-Corp, and S-Corp');
|
|
24
|
+
(0, formatter_1.print)(' formations in all 50 US states.');
|
|
25
|
+
(0, formatter_1.print)(formatter_1.colors.bold('\nExamples:'));
|
|
26
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('lovie # Start the formation process', 1));
|
|
27
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('lovie start # Same as above', 1));
|
|
28
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('lovie --version # Check your current version', 1));
|
|
29
|
+
(0, formatter_1.print)(formatter_1.colors.bold('\nFeatures:'));
|
|
30
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ Conversational, step-by-step guidance'));
|
|
31
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ Real-time company name availability checking'));
|
|
32
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ Support for all 50 US states'));
|
|
33
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ LLC, C-Corp, and S-Corp formations'));
|
|
34
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ Resume interrupted sessions'));
|
|
35
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ Secure payment processing'));
|
|
36
|
+
(0, formatter_1.print)((0, formatter_1.formatListItem)('✓ Automatic document generation and filing'));
|
|
37
|
+
(0, formatter_1.print)(formatter_1.colors.bold('\nSupport:'));
|
|
38
|
+
(0, formatter_1.print)(' Website: https://lovie.app');
|
|
39
|
+
(0, formatter_1.print)(' Email: support@lovie.app');
|
|
40
|
+
(0, formatter_1.print)(' GitHub: https://github.com/lovie-app/cli\n');
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=help.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"help.js","sourceRoot":"","sources":["../../../src/cli/commands/help.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;AAOH,4BAkCC;AAvCD,kDAAiF;AAEjF;;GAEG;AACH,SAAgB,QAAQ;IACtB,IAAA,iBAAK,EAAC,IAAA,wBAAY,EAAC,oCAAoC,CAAC,CAAC,CAAC;IAE1D,IAAA,iBAAK,EAAC,kBAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;IAC/B,IAAA,iBAAK,EAAC,+BAA+B,CAAC,CAAC;IAEvC,IAAA,iBAAK,EAAC,kBAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;IAChC,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,uDAAuD,CAAC,CAAC,CAAC;IAC/E,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,gDAAgD,CAAC,CAAC,CAAC;IACxE,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,8CAA8C,CAAC,CAAC,CAAC;IAEtE,IAAA,iBAAK,EAAC,kBAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC;IACrC,IAAA,iBAAK,EAAC,2EAA2E,CAAC,CAAC;IACnF,IAAA,iBAAK,EAAC,4EAA4E,CAAC,CAAC;IACpF,IAAA,iBAAK,EAAC,mCAAmC,CAAC,CAAC;IAE3C,IAAA,iBAAK,EAAC,kBAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC;IAClC,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,qDAAqD,EAAE,CAAC,CAAC,CAAC,CAAC;IAChF,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,uCAAuC,EAAE,CAAC,CAAC,CAAC,CAAC;IAClE,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,oDAAoD,EAAE,CAAC,CAAC,CAAC,CAAC;IAE/E,IAAA,iBAAK,EAAC,kBAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC;IAClC,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,yCAAyC,CAAC,CAAC,CAAC;IACjE,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,gDAAgD,CAAC,CAAC,CAAC;IACxE,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,gCAAgC,CAAC,CAAC,CAAC;IACxD,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,sCAAsC,CAAC,CAAC,CAAC;IAC9D,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,+BAA+B,CAAC,CAAC,CAAC;IACvD,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,6BAA6B,CAAC,CAAC,CAAC;IACrD,IAAA,iBAAK,EAAC,IAAA,0BAAc,EAAC,4CAA4C,CAAC,CAAC,CAAC;IAEpE,IAAA,iBAAK,EAAC,kBAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC;IACjC,IAAA,iBAAK,EAAC,8BAA8B,CAAC,CAAC;IACtC,IAAA,iBAAK,EAAC,4BAA4B,CAAC,CAAC;IACpC,IAAA,iBAAK,EAAC,8CAA8C,CAAC,CAAC;AACxD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Export all commands
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
17
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
__exportStar(require("./start"), exports);
|
|
21
|
+
__exportStar(require("./version"), exports);
|
|
22
|
+
__exportStar(require("./help"), exports);
|
|
23
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,0CAAwB;AACxB,4CAA0B;AAC1B,yCAAuB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Main company formation flow command
|
|
3
|
+
* This file uses the FormationOrchestrator instead of standalone prompt functions
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Main company formation flow
|
|
7
|
+
*/
|
|
8
|
+
export declare function startFormation(): Promise<void>;
|
|
9
|
+
//# sourceMappingURL=start.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/start.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH;;GAEG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC,CASpD"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Main company formation flow command
|
|
4
|
+
* This file uses the FormationOrchestrator instead of standalone prompt functions
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.startFormation = startFormation;
|
|
8
|
+
const FormationOrchestrator_1 = require("../../core/FormationOrchestrator");
|
|
9
|
+
const display_1 = require("../../utils/display");
|
|
10
|
+
/**
|
|
11
|
+
* Main company formation flow
|
|
12
|
+
*/
|
|
13
|
+
async function startFormation() {
|
|
14
|
+
try {
|
|
15
|
+
const orchestrator = new FormationOrchestrator_1.FormationOrchestrator();
|
|
16
|
+
// The orchestrator is event-driven, no single run method
|
|
17
|
+
display_1.Display.info('Formation orchestrator initialized');
|
|
18
|
+
}
|
|
19
|
+
catch (error) {
|
|
20
|
+
display_1.Display.error(`An error occurred: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
21
|
+
process.exit(1);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=start.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"start.js","sourceRoot":"","sources":["../../../src/cli/commands/start.ts"],"names":[],"mappings":";AAAA;;;GAGG;;AAQH,wCASC;AAfD,4EAAyE;AACzE,iDAA8C;AAE9C;;GAEG;AACI,KAAK,UAAU,cAAc;IAClC,IAAI,CAAC;QACH,MAAM,YAAY,GAAG,IAAI,6CAAqB,EAAE,CAAC;QACjD,yDAAyD;QACzD,iBAAO,CAAC,IAAI,CAAC,oCAAoC,CAAC,CAAC;IACrD,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,iBAAO,CAAC,KAAK,CAAC,sBAAsB,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,eAAe,EAAE,CAAC,CAAC;QAChG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH;;GAEG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAYlC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Version command
|
|
4
|
+
* FR-003: Provide --version command
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.showVersion = showVersion;
|
|
8
|
+
const fs_1 = require("fs");
|
|
9
|
+
const path_1 = require("path");
|
|
10
|
+
const formatter_1 = require("../utils/formatter");
|
|
11
|
+
/**
|
|
12
|
+
* Display version information
|
|
13
|
+
*/
|
|
14
|
+
function showVersion() {
|
|
15
|
+
try {
|
|
16
|
+
// Read version from package.json
|
|
17
|
+
const packageJsonPath = (0, path_1.join)(__dirname, '../../../package.json');
|
|
18
|
+
const packageJson = JSON.parse((0, fs_1.readFileSync)(packageJsonPath, 'utf-8'));
|
|
19
|
+
(0, formatter_1.print)(formatter_1.colors.primary.bold('Lovie CLI'));
|
|
20
|
+
(0, formatter_1.print)(formatter_1.colors.muted(`Version ${packageJson.version}`));
|
|
21
|
+
(0, formatter_1.print)(formatter_1.colors.muted('Company formation made simple.'));
|
|
22
|
+
}
|
|
23
|
+
catch (error) {
|
|
24
|
+
(0, formatter_1.print)(formatter_1.colors.error('Unable to determine version'));
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=version.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/cli/commands/version.ts"],"names":[],"mappings":";AAAA;;;GAGG;;AASH,kCAYC;AAnBD,2BAAkC;AAClC,+BAA4B;AAC5B,kDAAmD;AAEnD;;GAEG;AACH,SAAgB,WAAW;IACzB,IAAI,CAAC;QACH,iCAAiC;QACjC,MAAM,eAAe,GAAG,IAAA,WAAI,EAAC,SAAS,EAAE,uBAAuB,CAAC,CAAC;QACjE,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAA,iBAAY,EAAC,eAAe,EAAE,OAAO,CAAC,CAAC,CAAC;QAEvE,IAAA,iBAAK,EAAC,kBAAM,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QACxC,IAAA,iBAAK,EAAC,kBAAM,CAAC,KAAK,CAAC,WAAW,WAAW,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QACtD,IAAA,iBAAK,EAAC,kBAAM,CAAC,KAAK,CAAC,gCAAgC,CAAC,CAAC,CAAC;IACxD,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,IAAA,iBAAK,EAAC,kBAAM,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC,CAAC;IACrD,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Interactive company formation flow with async name checking
|
|
3
|
+
*
|
|
4
|
+
* Flow:
|
|
5
|
+
* 1. Select State (Delaware only for now)
|
|
6
|
+
* 2. Select Company Type (LLC, C-Corp, S-Corp)
|
|
7
|
+
* 3. Select Entity Ending (based on type)
|
|
8
|
+
* 4. Enter Company Base Name (show preview with ending)
|
|
9
|
+
* 5. Collect Registered Agent Info (name check runs in background)
|
|
10
|
+
* 6. Collect Share Structure (C-Corp/S-Corp only: authorized shares & par value)
|
|
11
|
+
* 7. Collect Shareholder/Member Info
|
|
12
|
+
* 8. Collect Authorized Party (who signs documents)
|
|
13
|
+
* 9. Async notification when name check completes
|
|
14
|
+
* 10. Review and Confirm
|
|
15
|
+
*/
|
|
16
|
+
import { CompanyFormationData } from '../types';
|
|
17
|
+
/**
|
|
18
|
+
* Main formation flow
|
|
19
|
+
*/
|
|
20
|
+
export declare function startFormationFlow(): Promise<CompanyFormationData | null>;
|
|
21
|
+
//# sourceMappingURL=formationFlow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formationFlow.d.ts","sourceRoot":"","sources":["../../src/cli/formationFlow.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAKH,OAAO,EAAE,oBAAoB,EAAsD,MAAM,UAAU,CAAC;AAyHpG;;GAEG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAC,CA2W/E"}
|