tutti-ai 0.0.2 → 0.3.0
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 +33 -0
- package/bin/tutti-ai.js +2 -0
- package/package.json +15 -7
- package/bin/cli.js +0 -2
- package/index.js +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# tutti-ai
|
|
2
|
+
|
|
3
|
+
**All agents. All together.**
|
|
4
|
+
|
|
5
|
+
Open-source multi-agent orchestration framework for TypeScript.
|
|
6
|
+
|
|
7
|
+
This is the unscoped wrapper for [`@tuttiai/cli`](https://www.npmjs.com/package/@tuttiai/cli). Both packages provide the same `tutti-ai` binary.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g tutti-ai
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
tutti-ai init my-project # scaffold a new project
|
|
19
|
+
cd my-project
|
|
20
|
+
cp .env.example .env # add your ANTHROPIC_API_KEY
|
|
21
|
+
npm install
|
|
22
|
+
tutti-ai run # interactive REPL
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Links
|
|
26
|
+
|
|
27
|
+
- [Website](https://tutti-ai.com)
|
|
28
|
+
- [GitHub](https://github.com/tuttiai/tutti)
|
|
29
|
+
- [Docs](https://tutti-ai.com/docs)
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
MIT
|
package/bin/tutti-ai.js
ADDED
package/package.json
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tutti-ai",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Tutti — multi-agent orchestration. All agents. All together.",
|
|
5
|
+
"type": "module",
|
|
4
6
|
"bin": {
|
|
5
|
-
"tutti-ai": "./bin/
|
|
7
|
+
"tutti-ai": "./bin/tutti-ai.js"
|
|
6
8
|
},
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"license": "MIT"
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@tuttiai/cli": "0.3.0"
|
|
11
|
+
},
|
|
12
|
+
"files": ["bin", "README.md"],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://tutti-ai.com",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/tuttiai/tutti"
|
|
18
|
+
},
|
|
19
|
+
"keywords": ["ai", "agents", "orchestration", "multi-agent", "tutti", "cli"]
|
|
12
20
|
}
|
package/bin/cli.js
DELETED
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = {}
|