create-x-stack 0.1.3
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 +23 -0
- package/dist/index.cjs +25349 -0
- package/dist/index.cjs.map +7 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# create-x-stack
|
|
2
|
+
|
|
3
|
+
Internal XBOT stack builder CLI.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx -y create-x-stack my-product
|
|
9
|
+
npx -y create-x-stack my-product --mode website --no-parent-folder
|
|
10
|
+
npx -y create-x-stack my-product --company-skill company/xbot-code-review@website,backend
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Public GitHub-backed skills work without a skills.sh API key:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx -y create-x-stack my-product --skills-sh vercel-labs/skills/find-skills@website
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Non-GitHub skills.sh catalog skills require:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
export SKILLS_SH_API_KEY=...
|
|
23
|
+
```
|