@thecorporation/cli 1.0.4 → 26.3.2
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 +56 -4
- package/dist/index.js +672 -64
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# @thecorporation/cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Corporate governance from the terminal. Every command validates input, passes it through the governance kernel, and commits the result to your git-backed corporate repo. The command runs. The commit appears. The corporate record updates.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`corp` handles entity formation, equity management, payroll, tax filings, governance, and agent management — with an AI assistant that can execute any corporate action via `corp chat`.
|
|
6
|
+
|
|
7
|
+
Part of [TheCorporation](https://thecorporation.ai) — version-controlled governance, autonomous agents, and open-source corporate infrastructure.
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
|
@@ -56,6 +58,9 @@ corp form --type llc --name "Acme" # form a new entity
|
|
|
56
58
|
| `corp cap-table transfers` | List share transfers |
|
|
57
59
|
| `corp cap-table valuations` | View valuation history |
|
|
58
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 |
|
|
59
64
|
|
|
60
65
|
Round close gating (v1, February 28, 2026):
|
|
61
66
|
- Conversion execution now requires an authorized execute intent (`equity.round.execute_conversion`) and `intent_id`.
|
|
@@ -77,11 +82,57 @@ Round close gating (v1, February 28, 2026):
|
|
|
77
82
|
| Command | Description |
|
|
78
83
|
|---|---|
|
|
79
84
|
| `corp governance` | List governance bodies |
|
|
80
|
-
| `corp governance convene` | Convene a meeting |
|
|
81
|
-
| `corp governance vote` | Cast a vote |
|
|
82
85
|
| `corp governance seats <body-id>` | List seats |
|
|
83
86
|
| `corp governance meetings <body-id>` | List meetings |
|
|
84
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
|
+
```
|
|
85
136
|
|
|
86
137
|
### Documents & Compliance
|
|
87
138
|
|
|
@@ -114,6 +165,7 @@ Round close gating (v1, February 28, 2026):
|
|
|
114
165
|
| `corp agents resume <id>` | Resume an agent |
|
|
115
166
|
| `corp agents delete <id>` | Delete an agent |
|
|
116
167
|
| `corp agents skill <id>` | Add a skill to an agent |
|
|
168
|
+
| `corp agents executions <id>` | List agent executions |
|
|
117
169
|
|
|
118
170
|
### Billing & Approvals
|
|
119
171
|
|