Beta — These skills are functional and actively maintained. Feedback and suggestions are welcome on GitHub Discussions.
Install these skills so your coding agents can assist with Base44 development.
Supports many AI coding agents, including Cursor, Claude Code, Codex CLI, and OpenCode.
Add the marketplace and install:
/plugin marketplace add base44/skills
/plugin install base44@base44-skills
Or install directly:
claude plugin install base44@base44-skillsIn a terminal, register the marketplace:
codex plugin marketplace add base44/skillsThen in Codex CLI, run /plugins, select Base44, and choose Install Plugin.
Install skills using skills:
# Install all skills
npx skills add base44/skills
# Install globally (user-level)
npx skills add base44/skills -gIf you develop your app inside Base44's cloud sandbox (the platform auto-builds, auto-commits, and auto-syncs, so you never run deploy/push), install the focused base44-sandbox plugin instead of the full set. It bundles base44-remote-dev, base44-sandbox, base44-sdk, and base44-troubleshooter — and deliberately excludes the deploy-oriented base44-cli.
# Claude Code
claude plugin install base44-sandbox@base44-skills
# Codex CLI: register the marketplace, then /plugins → "Base44 Sandbox" → Install
codex plugin marketplace add base44/skills
# Other agents (skills CLI)
npx skills add base44/skills --skill base44-remote-dev --skill base44-sandbox --skill base44-sdk --skill base44-troubleshooter| Skill | Description |
|---|---|
base44-cli |
Create and manage Base44 projects using the CLI. Handles resource configuration (entities, backend functions, AI agents), initialization, and deployment. |
base44-sdk |
Build apps using the Base44 JavaScript SDK. Communicate with remote resources like entities, backend functions, and AI agents. |
base44-troubleshooter |
Troubleshoot production issues using backend function logs. Use when investigating app errors or diagnosing production problems. |
base44-remote-dev |
Develop a Base44 app remotely from your own coding agent by connecting it to the Base44 sandbox over MCP or the base44 sandbox CLI. |
base44-sandbox |
Author Base44 app code inside the cloud sandbox — no deploy/push; writing a resource file (function, entity, agent) into the sandbox is what ships it. |
Agent skills are reusable instruction sets that extend your coding agent's capabilities. They're defined in SKILL.md files following the Agent Skills specification.
Learn more about agent extensions for Base44.
See CONTRIBUTING.md for guidelines on creating and submitting skills.