@mutagent/cli 0.1.27 → 0.1.28
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 +16 -24
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,31 +1,24 @@
|
|
|
1
1
|
# MutagenT CLI
|
|
2
2
|
|
|
3
|
-
```
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
║ ██║ ██║ ██║ ║
|
|
17
|
-
║ ╚██████╗███████╗██║ ║
|
|
18
|
-
║ ╚═════╝╚══════╝╚═╝ ║
|
|
19
|
-
║ ║
|
|
20
|
-
║ Command-Line Interface for AI-Native Development. ║
|
|
21
|
-
║ ║
|
|
22
|
-
╚════════════════════════════════════════════════════════════════════════════════════════════╝
|
|
3
|
+
```
|
|
4
|
+
███╗ ███╗██╗ ██╗████████╗ █████╗ ██████╗ ███████╗███╗ ██╗████████╗
|
|
5
|
+
████╗ ████║██║ ██║╚══██╔══╝██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝
|
|
6
|
+
██╔████╔██║██║ ██║ ██║ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║
|
|
7
|
+
██║╚██╔╝██║██║ ██║ ██║ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║
|
|
8
|
+
██║ ╚═╝ ██║╚██████╔╝ ██║ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║
|
|
9
|
+
╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝
|
|
10
|
+
██████╗██╗ ██╗
|
|
11
|
+
██╔════╝██║ ██║
|
|
12
|
+
██║ ██║ ██║
|
|
13
|
+
██║ ██║ ██║
|
|
14
|
+
╚██████╗███████╗██║
|
|
15
|
+
╚═════╝╚══════╝╚═╝
|
|
23
16
|
```
|
|
24
17
|
|
|
25
18
|
<p align="center">
|
|
26
19
|
<a href="https://www.npmjs.com/package/@mutagent/cli"><img src="https://img.shields.io/npm/v/@mutagent/cli?style=for-the-badge&color=cb3837&logo=npm&logoColor=white" alt="npm"></a>
|
|
27
|
-
<a href="https://bun.sh"><img src="https://img.shields.io/badge/Bun-1.
|
|
28
|
-
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node-
|
|
20
|
+
<a href="https://bun.sh"><img src="https://img.shields.io/badge/Bun-1.0+-f472b6?style=for-the-badge&logo=bun&logoColor=white" alt="Bun"></a>
|
|
21
|
+
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node-22+-339933?style=for-the-badge&logo=node.js&logoColor=white" alt="Node.js"></a>
|
|
29
22
|
<a href="https://www.typescriptlang.org"><img src="https://img.shields.io/badge/TypeScript-5.0+-3178C6?style=for-the-badge&logo=typescript&logoColor=white" alt="TypeScript"></a>
|
|
30
23
|
<a href="#"><img src="https://img.shields.io/badge/License-Proprietary-ff6b6b?style=for-the-badge" alt="License: Proprietary"></a>
|
|
31
24
|
</p>
|
|
@@ -490,7 +483,6 @@ mutagent agents get <id>
|
|
|
490
483
|
mutagent agents create --name "Agent" --slug agent --system-prompt "..."
|
|
491
484
|
mutagent agents update <id> --status paused
|
|
492
485
|
mutagent agents delete <id>
|
|
493
|
-
mutagent agents conversations list <agent-id>
|
|
494
486
|
```
|
|
495
487
|
|
|
496
488
|
---
|
|
@@ -634,7 +626,7 @@ const handler = new MutagentCallbackHandler();
|
|
|
634
626
|
|
|
635
627
|
### Prerequisites
|
|
636
628
|
|
|
637
|
-
- [Bun](https://bun.sh) >= 1.
|
|
629
|
+
- [Bun](https://bun.sh) >= 1.0.0
|
|
638
630
|
- Node.js >= 18.0.0 (fallback)
|
|
639
631
|
|
|
640
632
|
### Setup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mutagent/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.28",
|
|
4
4
|
"description": "Bun-native CLI for MutagenT AI platform - AI-first agent integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"verify:fix": "bun run lint:fix && bun run typecheck && bun run build"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@mutagent/sdk": "^0.2.
|
|
33
|
+
"@mutagent/sdk": "^0.2.44",
|
|
34
34
|
"chalk": "^5.3.0",
|
|
35
35
|
"commander": "^12.1.0",
|
|
36
36
|
"cosmiconfig": "^9.0.0",
|