From base44
Fetches and analyzes Base44 backend function logs to troubleshoot production errors, debug function calls, and diagnose app issues.
How this skill is triggered — by the user, by Claude, or both
Slash command
/base44:base44-troubleshooterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Verify authentication before fetching logs:
Verify authentication before fetching logs:
npx base44 whoami
If not authenticated or token expired, instruct user to run npx base44 login.
Resolve app context in one of these ways:
# From a linked local project
cat base44/.app.jsonc
# Or explicitly
npx base44 logs --app-id app_123
| Command | Description | Reference |
|---|---|---|
base44 logs | Fetch function logs for this app | project-logs.md |
Start by pulling the latest errors across all functions:
npx base44 logs --level error
If you know which function is failing:
npx base44 logs --function <function_name> --level error
If you are outside the project directory, pass the app explicitly:
npx base44 logs --app-id app_123 --function <function_name> --level error
Correlate with user-reported issue timestamps:
npx base44 logs --function <function_name> --since <start_time> --until <end_time>
--limit to fetch more entries if the default 50 isn't enoughnpx claudepluginhub base44/skills --plugin base44Builds features in existing Base44 projects using JavaScript/TypeScript SDK for CRUD on entities, backend functions, AI agents, and auth.
Builds, deploys, and debugs CloudBase Event Functions and HTTP Functions. Use when creating application runtime code or function triggers on CloudBase.