Help us improve
Share bugs, ideas, or general feedback.
From base44
Troubleshoots production issues in Base44 apps using backend function logs. Guides fetching errors by level, function, time range, and analyzing stack traces.
npx claudepluginhub base44/skills --plugin base44How 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:
Builds 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.
Share bugs, ideas, or general feedback.
Verify authentication before fetching logs:
npx base44 whoami
If not authenticated or token expired, instruct user to run npx base44 login.
Must be run from the project directory (where base44/.app.jsonc exists):
cat base44/.app.jsonc
| 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
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 enough