@thecorporation/cli 1.0.5 → 26.3.3
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/README.md +51 -2
- package/dist/index.js +968 -210
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -58,6 +58,9 @@ corp form --type llc --name "Acme" # form a new entity
|
|
|
58
58
|
| `corp cap-table transfers` | List share transfers |
|
|
59
59
|
| `corp cap-table valuations` | View valuation history |
|
|
60
60
|
| `corp cap-table 409a` | Current 409A valuation |
|
|
61
|
+
| `corp cap-table create-valuation` | Create a valuation (409A, FMV, etc.) |
|
|
62
|
+
| `corp cap-table submit-valuation <id>` | Submit valuation for board approval |
|
|
63
|
+
| `corp cap-table approve-valuation <id>` | Approve a valuation |
|
|
61
64
|
|
|
62
65
|
Round close gating (v1, February 28, 2026):
|
|
63
66
|
- Conversion execution now requires an authorized execute intent (`equity.round.execute_conversion`) and `intent_id`.
|
|
@@ -79,11 +82,57 @@ Round close gating (v1, February 28, 2026):
|
|
|
79
82
|
| Command | Description |
|
|
80
83
|
|---|---|
|
|
81
84
|
| `corp governance` | List governance bodies |
|
|
82
|
-
| `corp governance convene` | Convene a meeting |
|
|
83
|
-
| `corp governance vote` | Cast a vote |
|
|
84
85
|
| `corp governance seats <body-id>` | List seats |
|
|
85
86
|
| `corp governance meetings <body-id>` | List meetings |
|
|
86
87
|
| `corp governance resolutions <meeting-id>` | List resolutions |
|
|
88
|
+
| `corp governance agenda-items <meeting-id>` | List agenda items |
|
|
89
|
+
| `corp governance convene` | Schedule and convene a meeting |
|
|
90
|
+
| `corp governance notice <meeting-id>` | Send meeting notice |
|
|
91
|
+
| `corp governance vote <meeting-id> <item-id>` | Cast a vote |
|
|
92
|
+
| `corp governance resolve <meeting-id> <item-id>` | Compute a resolution |
|
|
93
|
+
| `corp governance finalize-item <meeting-id> <item-id>` | Finalize an agenda item |
|
|
94
|
+
| `corp governance adjourn <meeting-id>` | Adjourn a meeting |
|
|
95
|
+
| `corp governance cancel <meeting-id>` | Cancel a meeting |
|
|
96
|
+
| `corp governance written-consent` | Create a written consent action |
|
|
97
|
+
|
|
98
|
+
#### Meeting Lifecycle
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
schedule → notice → convene → vote → resolve → finalize → adjourn
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
**Board meeting example:**
|
|
105
|
+
```bash
|
|
106
|
+
# 1. Schedule meeting with agenda items
|
|
107
|
+
corp governance convene --body <body-id> --type BoardMeeting \
|
|
108
|
+
--title "Q1 Board Meeting" --date 2026-03-15 \
|
|
109
|
+
--agenda "Approve budget" --agenda "Elect officers"
|
|
110
|
+
|
|
111
|
+
# 2. Send notice to participants
|
|
112
|
+
corp governance notice <meeting-id>
|
|
113
|
+
|
|
114
|
+
# 3. Convene with present members (checks quorum)
|
|
115
|
+
# (done via MCP tool: convene_meeting with present_seat_ids)
|
|
116
|
+
|
|
117
|
+
# 4. Cast votes on agenda items
|
|
118
|
+
corp governance vote <meeting-id> <item-id> --voter <contact-id> --vote for
|
|
119
|
+
|
|
120
|
+
# 5. Compute resolution (tallies votes)
|
|
121
|
+
corp governance resolve <meeting-id> <item-id> --text "Budget approved for Q1"
|
|
122
|
+
|
|
123
|
+
# 6. Finalize agenda items
|
|
124
|
+
corp governance finalize-item <meeting-id> <item-id> --status voted
|
|
125
|
+
|
|
126
|
+
# 7. Adjourn meeting
|
|
127
|
+
corp governance adjourn <meeting-id>
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
**Written consent (no physical meeting):**
|
|
131
|
+
```bash
|
|
132
|
+
corp governance written-consent --body <body-id> \
|
|
133
|
+
--title "Approve stock option plan" \
|
|
134
|
+
--description "Unanimous written consent to approve 2026 stock option plan"
|
|
135
|
+
```
|
|
87
136
|
|
|
88
137
|
### Documents & Compliance
|
|
89
138
|
|