@stacksjs/skills 0.70.161 → 0.70.163
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 +24 -12
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -36,23 +36,34 @@ As a developer, Stacks helps you every step along the way—in beginner & expert
|
|
|
36
36
|
|
|
37
37
|
## Prerequisites
|
|
38
38
|
|
|
39
|
-
Stacks
|
|
39
|
+
Stacks uses [Pantry](https://pantry.dev) to provision Bun, Git, SQLite, and the project-specific tools declared by the framework. You'll need:
|
|
40
40
|
|
|
41
|
-
- **
|
|
42
|
-
- **macOS, Linux, or WSL**
|
|
43
|
-
- **Node.js is NOT required.** Bun handles the JS/TS runtime, package management, and bundling.
|
|
41
|
+
- **Pantry** - install it with `curl -fsSL https://pantry.dev | bash`, then run `pantry bootstrap` once to configure your shell.
|
|
42
|
+
- **macOS, Linux, or WSL** - Windows-native support is on the roadmap. The current toolchain assumes a POSIX shell.
|
|
44
43
|
|
|
45
|
-
|
|
44
|
+
Pantry installs and pins Bun 1.3 or newer for each Stacks project, then keeps the rest of the machine and project dependencies in sync. Features such as PostgreSQL, Redis, and cloud deployment add their requirements through the same Pantry manifest where possible, with feature-specific configuration documented alongside them.
|
|
45
|
+
|
|
46
|
+
Stacks pins Pantry [`v0.10.36`](https://github.com/pantry-pm/pantry/tree/v0.10.36)
|
|
47
|
+
as an external toolchain contract. Resolution sources, lockfile and integrity
|
|
48
|
+
rules, lifecycle trust, registry routes, authentication, storage, and failure
|
|
49
|
+
modes are documented in the source-linked whitepaper references for the
|
|
50
|
+
[package manager](https://whitepaper.stacksjs.com/reference/package-manager) and
|
|
51
|
+
[registry](https://whitepaper.stacksjs.com/reference/registry). Stacks does not
|
|
52
|
+
redefine those behaviors.
|
|
46
53
|
|
|
47
54
|
## Get Started
|
|
48
55
|
|
|
49
|
-
The fastest path
|
|
56
|
+
The fastest path after Pantry is installed:
|
|
50
57
|
|
|
51
58
|
```bash
|
|
52
|
-
|
|
59
|
+
panx @stacksjs/buddy new my-project
|
|
53
60
|
```
|
|
54
61
|
|
|
55
|
-
|
|
62
|
+
Pantry executes Buddy in an isolated environment and provisions the generated project's declared toolchain during setup.
|
|
63
|
+
|
|
64
|
+
For frontend experiments in the browser, open the live stx starter:
|
|
65
|
+
|
|
66
|
+
[](https://stackblitz.com/fork/github/stacksjs/stackblitz?title=Stacks%20Starter)
|
|
56
67
|
|
|
57
68
|
## Usage
|
|
58
69
|
|
|
@@ -80,7 +91,7 @@ buddy --help # view help menu
|
|
|
80
91
|
|
|
81
92
|
buddy new my-project # creates a new Stacks project
|
|
82
93
|
buddy install # installs dependencies
|
|
83
|
-
buddy add #
|
|
94
|
+
buddy add calendar # pulls a registered project-shaped stack into this project
|
|
84
95
|
buddy fresh # fresh reinstall of all deps (--force skips the confirmation)
|
|
85
96
|
buddy clean # removes all deps (--force skips the confirmation)
|
|
86
97
|
buddy setup # sets up the project initially
|
|
@@ -117,7 +128,7 @@ buddy build # select a specific build (follow CLI prompts)
|
|
|
117
128
|
buddy build:frontend # builds the frontend (aliases: build:views, build:pages)
|
|
118
129
|
buddy build:desktop # builds Desktop application
|
|
119
130
|
buddy build:functions # builds function library
|
|
120
|
-
buddy build:components # builds
|
|
131
|
+
buddy build:components # builds the STX component library and Web Component library
|
|
121
132
|
buddy build:web-components # builds framework agnostic Web Component library (i.e. Custom Elements)
|
|
122
133
|
buddy build:cli # builds the Buddy CLI binary
|
|
123
134
|
buddy build:server # builds the Stacks cloud server (Docker image)
|
|
@@ -145,7 +156,7 @@ buddy make:migration create_cars_table # creates a cars migration file
|
|
|
145
156
|
buddy make:factory cars # creates a Car factory file
|
|
146
157
|
buddy make:notification welcome-email # bootstraps a welcome-email notification
|
|
147
158
|
buddy make:lang de # bootstraps a lang/de.yml language file
|
|
148
|
-
buddy make:stack my-plugin # scaffolds a
|
|
159
|
+
buddy make:stack my-plugin # scaffolds a project-shaped registry stack (new project? use `panx @stacksjs/buddy new`)
|
|
149
160
|
|
|
150
161
|
buddy migrate # runs database migrations
|
|
151
162
|
buddy migrate:fresh # drops all tables & re-runs migrations (destroys all data; --seed reseeds)
|
|
@@ -299,6 +310,7 @@ _Focus on coding, not publishing._
|
|
|
299
310
|
|
|
300
311
|
Convention over configuration, while staying wholly configurable. _No more boilerplate._
|
|
301
312
|
|
|
313
|
+
- 🧠 **LLM-Friendly Authoring** _models generate compact application intent instead of repeating framework glue or reading `node_modules`_
|
|
302
314
|
- 💎 **Automated Upgrades** _no need to worry about upgrading to the latest versions, Stacks upgrades you_
|
|
303
315
|
- 🦋 **Pretty Dev URLs** _your-project.localhost instead of localhost:3000_
|
|
304
316
|
- 💡 **IDE Integration** _auto-completions, inline docs & a powerful IDE setup_
|
|
@@ -309,7 +321,7 @@ Convention over configuration, while staying wholly configurable. _No more boile
|
|
|
309
321
|
- 🚗 **Auto Imports** _your components & functions, including date, string, array, & object helpers_
|
|
310
322
|
- ⏩ **Code Snippets** _goodbye to the boilerplate code—thank you Sarah Drasner_
|
|
311
323
|
- 🔤 **Spell Checker** _be notified once there are typos_
|
|
312
|
-
- 🛠️ **Essential Utilities** _powers at your fingertips. Collections,
|
|
324
|
+
- 🛠️ **Essential Utilities** _powers at your fingertips. Collections, STX composables, and more_
|
|
313
325
|
- 👥 **Team Management** _manage your team & their permissions_
|
|
314
326
|
- 🧪 **Streamlined Testing** _unit & e2e tests powered by Bun, Vitest & Playwright_
|
|
315
327
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/skills",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.70.
|
|
5
|
+
"version": "0.70.163",
|
|
6
6
|
"description": "Agent skills for the Stacks framework, following the agentskills.io standard.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"contributors": [
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"prepublishOnly": "bun run build"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@stacksjs/path": "0.70.
|
|
58
|
-
"@stacksjs/storage": "0.70.
|
|
57
|
+
"@stacksjs/path": "0.70.163",
|
|
58
|
+
"@stacksjs/storage": "0.70.163"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"better-dx": "^0.2.17",
|
|
62
|
-
"@stacksjs/types": "0.70.
|
|
62
|
+
"@stacksjs/types": "0.70.163"
|
|
63
63
|
}
|
|
64
64
|
}
|