create-bestax 3.1.3 → 3.1.4
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 +14 -5
- package/package.json +1 -1
- package/templates/vite/package.json +1 -1
- package/templates/vite-ts/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# create-bestax
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/create-bestax)
|
|
4
|
+
[](https://www.npmjs.com/package/create-bestax)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
7
|
+
The scaffolder for [`@allxsmith/bestax-bulma`](https://www.npmjs.com/package/@allxsmith/bestax-bulma) — spin up a Vite app pre-wired for the **Bulma v1** React component library in one command. Picks your framework (JS or TypeScript), CSS flavor, and icon library, and can drop in the bestax **AI skills** so an agent like Claude Code knows the library from the first prompt.
|
|
8
|
+
|
|
9
|
+
Part of the [bestax monorepo](https://github.com/allxsmith/bestax) — see also [`@allxsmith/bestax-bulma`](https://www.npmjs.com/package/@allxsmith/bestax-bulma) for the components themselves.
|
|
4
10
|
|
|
5
11
|
## Usage
|
|
6
12
|
|
|
@@ -33,6 +39,8 @@ You'll be asked to:
|
|
|
33
39
|
4. Select an icon library (Font Awesome, Material Icons, etc.)
|
|
34
40
|
5. Choose whether to install the bestax AI skills into `.claude/skills/`
|
|
35
41
|
|
|
42
|
+
Every prompt has a flag equivalent, so the whole flow is scriptable and CI-friendly — see the options below.
|
|
43
|
+
|
|
36
44
|
### Command Line Options
|
|
37
45
|
|
|
38
46
|
```bash
|
|
@@ -91,8 +99,8 @@ Available templates:
|
|
|
91
99
|
|
|
92
100
|
Each template includes:
|
|
93
101
|
|
|
94
|
-
- Pre-configured bestax-bulma integration
|
|
95
|
-
- Bulma
|
|
102
|
+
- Pre-configured bestax-bulma integration (React 19)
|
|
103
|
+
- The latest `@allxsmith/bestax-bulma`, which ships Bulma v1 automatically
|
|
96
104
|
- Icon library support (Font Awesome, Material Design, etc.)
|
|
97
105
|
- Sample components demonstrating library usage
|
|
98
106
|
- Development and build scripts
|
|
@@ -100,10 +108,11 @@ Each template includes:
|
|
|
100
108
|
## For AI Tools
|
|
101
109
|
|
|
102
110
|
Scaffolding for an AI agent? Pass `--skills` (or accept the prompt) to drop the bestax
|
|
103
|
-
Agent Skills and a `CLAUDE.md` into the new project
|
|
104
|
-
docs:
|
|
111
|
+
Agent Skills and a `CLAUDE.md` into the new project so Claude Code, Cursor, or Copilot
|
|
112
|
+
build the bestax way from the start. The library also ships LLM-optimized docs:
|
|
105
113
|
|
|
106
114
|
- [LLMs guide](https://bestax.io/docs/guides/llms) — using bestax with Claude Code, Cursor, Copilot
|
|
115
|
+
- [Agent Skills](https://bestax.io/docs/skills/intro) — teach your agent the bestax conventions
|
|
107
116
|
- [llms.txt](https://bestax.io/llms.txt) (curated index) · [llms-full.txt](https://bestax.io/llms-full.txt) (full docs)
|
|
108
117
|
|
|
109
118
|
## Development
|
package/package.json
CHANGED