tutti-ai 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/bin/cli.js +2 -0
  2. package/package.json +6 -3
package/bin/cli.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("Tutti AI — coming soon. https://tutti-ai.com")
package/package.json CHANGED
@@ -1,9 +1,12 @@
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",
3
+ "version": "0.0.2",
4
+ "bin": {
5
+ "tutti-ai": "./bin/cli.js"
6
+ },
7
+ "description": "Tutti — multi-agent orchestration. All agents. All together. https://tutti-ai.com",
5
8
  "main": "index.js",
6
9
  "keywords": ["ai", "agents", "orchestration", "multi-agent", "tutti"],
7
- "author": "tutti-ai",
10
+ "author": "tuttiai",
8
11
  "license": "MIT"
9
12
  }