tutti-ai 0.0.1 → 0.2.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 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
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "@tuttiai/cli";
package/package.json CHANGED
@@ -1,9 +1,20 @@
1
1
  {
2
2
  "name": "tutti-ai",
3
- "version": "0.0.1",
4
- "description": "Tutti — multi-agent orchestration framework. All agents. All together. https://tutti-ai.com",
5
- "main": "index.js",
6
- "keywords": ["ai", "agents", "orchestration", "multi-agent", "tutti"],
7
- "author": "tutti-ai",
8
- "license": "MIT"
3
+ "version": "0.2.0",
4
+ "description": "Tutti — multi-agent orchestration. All agents. All together.",
5
+ "type": "module",
6
+ "bin": {
7
+ "tutti-ai": "./bin/tutti-ai.js"
8
+ },
9
+ "dependencies": {
10
+ "@tuttiai/cli": "0.2.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"]
9
20
  }
package/index.js DELETED
@@ -1 +0,0 @@
1
- module.exports = {}