From base44
Troubleshoots production issues in Base44 apps using backend function logs. Useful for investigating app errors, debugging function calls, or diagnosing production problems.
npx claudepluginhub base44/skills --plugin base44This skill uses the workspace's default tool permissions.
Verify authentication before fetching logs:
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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