返回 Skill 列表
extension
分类: 开发与工程无需 API Key

base44

Base44 CLI和SDK的完整指南 - 使用实体、无服务器函数、AI代理和站点部署构建全栈应用

person作者: jakexiaohubgithub

Base44 CLI Skill

Build and deploy full-stack applications using the Base44 platform.

When to Use This Skill

  • Creating new Base44 projects
  • Defining entity schemas and data models
  • Writing serverless functions
  • Configuring AI agents
  • Deploying sites and applications
  • Using the @base44/sdk in frontend code

Quick Reference

| Command | Description | |---------|-------------| | base44 login | Authenticate with Base44 | | base44 logout | Logout from current device | | base44 whoami | Display current authenticated user | | base44 create [name] | Create new project from templates | | base44 link | Link local project to Base44 project | | base44 deploy | Deploy all resources | | base44 entities push | Push entity schemas | | base44 functions deploy | Deploy serverless functions | | base44 agents push | Push AI agent configs | | base44 agents pull | Pull agents from Base44 | | base44 site deploy | Deploy built site | | base44 dashboard | Open app dashboard |

Project Structure

project/
├── base44/
│   ├── .app.jsonc          # App ID (not committed)
│   ├── config.jsonc        # Project configuration
│   ├── entities/           # Entity schemas
│   │   └── *.jsonc
│   ├── agents/             # AI agent configurations
│   │   └── *.jsonc
│   └── functions/          # Serverless functions
├── src/                    # Frontend code
└── package.json

Detailed Guides

  • @rules/01-project-setup.md - Creating and linking projects
  • @rules/02-entities.md - Defining entity schemas
  • @rules/03-functions.md - Serverless functions
  • @rules/04-agents.md - AI agent configuration
  • @rules/05-site-deployment.md - Site deployment
  • @rules/06-authentication.md - CLI authentication
  • @rules/07-config-files.md - Configuration files
  • @rules/08-sdk-integration.md - @base44/sdk usage