plugins marketplace
← All plugins

base44

v1.0.3-beta.1

Build and deploy Base44 full-stack apps with CLI project management and JavaScript/TypeScript SDK development skills

Codex3 skills

by base44MIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/base44/ inside the repository.

Layout

plugins/base44/
├── .codex-plugin/plugin.json
├── skills/base44-cli/SKILL.md
├── skills/base44-sdk/SKILL.md
└── skills/base44-troubleshooter/SKILL.md

Skills3

base44-cliskills/base44-cli/SKILL.md

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

base44-sdkskills/base44-sdk/SKILL.md

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

base44-troubleshooterskills/base44-troubleshooter/SKILL.md

Troubleshoot production issues using backend function logs. Use when investigating app errors, debugging function calls, or diagnosing production problems in Base44 apps.

Manifests1

plugins/base44/.codex-plugin/plugin.json
{
  "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": []
  }
}