base44
v1.0.3-beta.1Build and deploy Base44 full-stack apps with CLI project management and JavaScript/TypeScript SDK development skills
by base44MIT5kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/base44/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── skills/base44-cli/SKILL.md├── skills/base44-sdk/SKILL.md└── skills/base44-troubleshooter/SKILL.md
Skills3
The base44 CLI is used for EVERYTHING related to base44 projects: resource configuration (entities, backend functions, ai agents), initialization and actions (resource creation, deployment). This skill is the place for learning about how to configure resources. When you plan or implement a feature, you must learn this skill
The base44 SDK is the library to communicate with base44 services. In projects, you use it to communicate with remote resources (entities, backend functions, ai agents) and to write backend functions. This skill is the place for learning about available modules and types. When you plan or implement a feature, you must learn this skill
Troubleshoot production issues using backend function logs. Use when investigating app errors, debugging function calls, or diagnosing production problems in Base44 apps.
Manifests1
{
"name": "base44",
"version": "1.0.3-beta.1",
"description": "Build and deploy Base44 full-stack apps with CLI project management and JavaScript/TypeScript SDK development skills",
"author": {
"name": "base44",
"url": "https://base44.com"
},
"homepage": "https://docs.base44.com",
"repository": "https://github.com/base44/skills",
"license": "MIT",
"keywords": [
"base44",
"full-stack",
"sdk",
"cli",
"deployment",
"entities",
"backend-functions",
"javascript",
"typescript"
],
"skills": "./skills/",
"apps": "./.app.json",
"interface": {
"displayName": "Base44",
"shortDescription": "Build and deploy Base44 full-stack apps from Codex",
"longDescription": "Build and deploy Base44 full-stack apps with Codex. Includes CLI project management, JavaScript/TypeScript SDK development, and production troubleshooting skills.",
"developerName": "base44",
"category": "Developer Tools",
"capabilities": [
"Interactive",
"Read",
"Write"
],
"websiteURL": "https://base44.com",
"defaultPrompt": [
"Create a new Base44 app and deploy it.",
"Build a feature in my existing Base44 app.",
"Debug errors from my Base44 backend functions."
],
"composerIcon": "./assets/logo-padded.png",
"logo": "./assets/logo-padded.png",
"screenshots": []
}
}