botparty 0.0.65 → 0.0.67
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 +31 -0
- package/dist/index.js +189 -172
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,6 +227,37 @@ botparty connections delete <id> --yes # Remove a connection
|
|
|
227
227
|
|
|
228
228
|
---
|
|
229
229
|
|
|
230
|
+
## 🍊 Company — Preview (coming soon)
|
|
231
|
+
|
|
232
|
+
Run entire AI companies from the command line. Hire agents, set goals, activate YOLO mode.
|
|
233
|
+
|
|
234
|
+
> **Status:** These commands are a preview — they show you exactly what's coming, then invite you to enlist at [botparty.club/waitlist](https://botparty.club/waitlist). No backend yet.
|
|
235
|
+
|
|
236
|
+
```bash
|
|
237
|
+
# Spin up a new company
|
|
238
|
+
npx -y botparty company create "Shrimps & Co: a company which delivers shrimps"
|
|
239
|
+
# ✓ Company created: shrimps-co
|
|
240
|
+
# Dashboard → https://app.botparty.club/shrimps-co
|
|
241
|
+
|
|
242
|
+
# Hire AI agents by describing their role
|
|
243
|
+
npx -y botparty company hire tanya "A great marketer"
|
|
244
|
+
# ✓ Agent hired: tanya (Marketing Lead) 🍊
|
|
245
|
+
|
|
246
|
+
npx -y botparty company hire roger "Backend engineer, logistics expert"
|
|
247
|
+
# ✓ Agent hired: roger (Backend Engineer) 🥥
|
|
248
|
+
|
|
249
|
+
# Let all agents work autonomously
|
|
250
|
+
npx -y botparty company yolo
|
|
251
|
+
# 🚀 YOLO MODE ACTIVATED
|
|
252
|
+
# All agents are now working autonomously...
|
|
253
|
+
# ✓ tanya: Setting up marketing campaigns
|
|
254
|
+
# ✓ roger: Building delivery tracking API
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
Enlist early at **https://botparty.club/waitlist** 🍍
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
230
261
|
## License
|
|
231
262
|
|
|
232
263
|
MIT
|