@base44-preview/cli 0.0.17-pr.95.543227e → 0.0.17-pr.95.8b29052
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 +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,35 @@ The CLI will guide you through project setup. For step-by-step tutorials, see th
|
|
|
57
57
|
|
|
58
58
|
<!--| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Create a Base44 backend project from an existing Base44 app | -->
|
|
59
59
|
|
|
60
|
+
## AI Agent Skills
|
|
61
|
+
|
|
62
|
+
When creating a project, you'll be prompted to install AI agent skills for your preferred coding assistants:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
◆ Add AI agent skills? (Select agents to configure)
|
|
66
|
+
│ ◼ Cursor
|
|
67
|
+
│ ◼ Claude Code
|
|
68
|
+
└
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
This installs [base44/skills](https://github.com/base44/skills) which helps AI agents understand how to work with Base44 projects.
|
|
72
|
+
|
|
73
|
+
**Non-interactive mode:**
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Install skills for all supported agents
|
|
77
|
+
base44 create --name my-app --path ./my-app --skills
|
|
78
|
+
|
|
79
|
+
# Skip skills installation
|
|
80
|
+
base44 create --name my-app --path ./my-app
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
**Manual installation:**
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
npx add-skill base44/skills
|
|
87
|
+
```
|
|
88
|
+
|
|
60
89
|
## Help
|
|
61
90
|
|
|
62
91
|
```bash
|