conversokit 0.1.0 → 0.1.1
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 +48 -0
- package/package.json +4 -1
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# conversokit
|
|
2
|
+
|
|
3
|
+
CLI for ConversoKit — scaffold ChatGPT Apps in <30 minutes. Includes `create`, `add`, and `deploy` commands.
|
|
4
|
+
|
|
5
|
+
Part of [ConversoKit](https://github.com/Xyborg/ConversoKit) — a boilerplate for building ChatGPT Apps (Apps SDK / MCP) in <30 minutes.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
You don't need to install — just run via `npx`:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx conversokit create my-app --template commerce
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or install globally:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pnpm add -g conversokit
|
|
19
|
+
# or
|
|
20
|
+
npm install -g conversokit
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Scaffold a new app from a template
|
|
27
|
+
npx conversokit create my-shop --template commerce
|
|
28
|
+
|
|
29
|
+
# Add a widget, integration, or template to an existing project
|
|
30
|
+
npx conversokit add widget ProductCard
|
|
31
|
+
npx conversokit add integration stripe
|
|
32
|
+
npx conversokit add template booking
|
|
33
|
+
|
|
34
|
+
# Generate deploy configs
|
|
35
|
+
npx conversokit deploy vercel
|
|
36
|
+
npx conversokit deploy docker
|
|
37
|
+
npx conversokit deploy railway
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Templates: `commerce`, `booking`, `saas-onboarding`, `travel`, `dashboard`. Each scaffold pulls `@conversokit/*` packages from npm by semver.
|
|
41
|
+
|
|
42
|
+
## Documentation
|
|
43
|
+
|
|
44
|
+
Full docs and runnable examples live in the [main repo](https://github.com/Xyborg/ConversoKit#readme).
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
Apache-2.0 © Martín Aberastegue
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conversokit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI for ConversoKit — scaffold ChatGPT Apps in <30 minutes. Includes `create`, `add`, and `deploy` commands.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=18.0.0"
|
|
8
|
+
},
|
|
6
9
|
"repository": {
|
|
7
10
|
"type": "git",
|
|
8
11
|
"url": "git+https://github.com/Xyborg/ConversoKit.git",
|