Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
163 changes: 163 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@types/lodash.kebabcase": "^4.1.9",
"@types/node": "^22.10.5",
"@types/tar": "^6.1.13",
"@types/unzipper": "^0.10.11",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"chalk": "^5.6.2",
Expand All @@ -58,6 +59,7 @@
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.52.0",
"unzipper": "^0.12.3",
"vitest": "^4.0.16",
"zod": "^4.3.5",
"open": "^11.0.0"
Expand Down
5 changes: 2 additions & 3 deletions src/cli/commands/project/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ async function createInteractive(options: CreateOptions): Promise<RunCommandResu
name: () => {
return options.name ? Promise.resolve(options.name) : text({
message: "What is the name of your project?",
placeholder: basename(process.cwd()),
initialValue: basename(process.cwd()),
placeholder: "my-app",
validate: (value) => {
if (!value || value.trim().length === 0) {
return "Every project deserves a name";
Expand Down Expand Up @@ -230,7 +229,7 @@ async function executeCreate({
await runTask(
"Installing AI agent skills...",
async () => {
await execa("npx", ["-y", "add-skill", "base44/skills", "-y"], {
await execa("npx", ["-y", "skills", "add", "base44/skills", "-a", "claude-code", "-y"], {
cwd: resolvedPath,
shell: true
});
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/project/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface DeployOptions {
yes?: boolean;
}

async function deployAction(options: DeployOptions): Promise<RunCommandResult> {
export async function deployAction(options: DeployOptions): Promise<RunCommandResult> {
const projectData = await readProjectConfig();

if (!hasResourcesToDeploy(projectData)) {
Expand Down
Loading