agentful 0.1.4 → 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/dist/index.cjs +1467 -255
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentful",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Agentful in your terminal — local development with push-to-cloud previews",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://agentful.dev",
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
"node": ">=20"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "npm run sync-theme && tsup",
|
|
22
|
+
"build": "npm run sync-theme && npm run sync-starters && npm run sync-skills && tsup",
|
|
23
|
+
"sync-starters": "node scripts/sync-starters.mjs",
|
|
24
|
+
"sync-skills": "node scripts/sync-skills.mjs",
|
|
23
25
|
"typecheck": "tsc --noEmit",
|
|
24
26
|
"dev": "tsx src/index.ts",
|
|
25
27
|
"sync-theme": "cp src/branding/agentful-theme.json ../frontend/public/cli/theme.json",
|