@tellet/create 0.8.1 → 0.9.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 +8 -8
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Tell it. Let it.
|
|
2
2
|
|
|
3
3
|
> The open-source platform for running an Agentic Company.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx
|
|
6
|
+
npx create-tellet
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
tellet is a management platform for AI-powered companies. One command generates your AI agent team, website, dashboard, Knowledge Base, and Orchestrator — ready to deploy anywhere.
|
|
@@ -21,7 +21,7 @@ tellet is a management platform for AI-powered companies. One command generates
|
|
|
21
21
|
## How it works
|
|
22
22
|
|
|
23
23
|
```
|
|
24
|
-
npx
|
|
24
|
+
npx create-tellet
|
|
25
25
|
|
|
26
26
|
? New or Connect? → New business or add AI to existing
|
|
27
27
|
? Deployment? → Quick Start / Cloud / Enterprise
|
|
@@ -46,18 +46,18 @@ npx @tellet/create
|
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
48
|
# Quick Start (Vercel + Supabase, free)
|
|
49
|
-
npx
|
|
49
|
+
npx create-tellet
|
|
50
50
|
cd your-company
|
|
51
51
|
npm install && npm run dev
|
|
52
52
|
|
|
53
53
|
# Cloud (Docker + Railway, $5/mo)
|
|
54
|
-
npx
|
|
54
|
+
npx create-tellet # choose "Cloud"
|
|
55
55
|
cd your-company
|
|
56
56
|
docker compose up # local dev
|
|
57
57
|
railway up # deploy
|
|
58
58
|
|
|
59
59
|
# Enterprise (AWS CDK, $5-15/mo)
|
|
60
|
-
npx
|
|
60
|
+
npx create-tellet # choose "Enterprise"
|
|
61
61
|
cd your-company/infra
|
|
62
62
|
npm install && npx cdk deploy
|
|
63
63
|
```
|
|
@@ -142,7 +142,7 @@ Connect tools via the Orchestrator or `tellet.json`:
|
|
|
142
142
|
Already have a business? Use Connect mode:
|
|
143
143
|
|
|
144
144
|
```bash
|
|
145
|
-
npx
|
|
145
|
+
npx create-tellet # choose "Connect"
|
|
146
146
|
```
|
|
147
147
|
|
|
148
148
|
- Skips site generation, keeps dashboard + API
|
|
@@ -192,4 +192,4 @@ MIT
|
|
|
192
192
|
|
|
193
193
|
- [tellet.com](https://tellet.com) — Website
|
|
194
194
|
- [GitHub](https://github.com/agentic-company/tellet) — Source code
|
|
195
|
-
- [npm](https://www.npmjs.com/package
|
|
195
|
+
- [npm](https://www.npmjs.com/package/create-tellet) — Package
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tellet/create",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "The open-source platform for running an Agentic Company",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
+
"create-tellet": "dist/index.js",
|
|
7
8
|
"create": "dist/index.js"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
@@ -28,10 +29,16 @@
|
|
|
28
29
|
"no-code"
|
|
29
30
|
],
|
|
30
31
|
"license": "MIT",
|
|
32
|
+
"author": "tellet <hello@tellet.com>",
|
|
33
|
+
"homepage": "https://tellet.com",
|
|
34
|
+
"bugs": "https://github.com/agentic-company/tellet/issues",
|
|
31
35
|
"repository": {
|
|
32
36
|
"type": "git",
|
|
33
37
|
"url": "https://github.com/agentic-company/tellet"
|
|
34
38
|
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18.0.0"
|
|
41
|
+
},
|
|
35
42
|
"dependencies": {
|
|
36
43
|
"@anthropic-ai/sdk": "^0.80.0",
|
|
37
44
|
"@clack/prompts": "^1.1.0",
|