What problem does it solve? When integrating with the Fusebase API, you often don't know an endpoint's exact behavior, response shape, or schema before writing production code. This Skill provides a repeatable workflow for creating short-lived tokens and running direct test calls so you can verify API behavior first and avoid debugging guesswork inside your app. ## Core Features & Use Cases - Temporary Token Generation: Creates 15-minute tokens via the fusebase token create CLI command scoped to a specific app ID from fusebase.json. - Direct API Testing: Runs throwaway TypeScript scripts (e.g. _test-api.ts) with bun to call endpoints using the x-app-feature-token header and inspect raw responses. - SDK Verification: Validates @fusebase/dashboard-service-sdk calls such as listing databases and reading dashboard rows before wiring them into UI code. - Use Case: Before building a dashboard widget, you run a test script to confirm the CustomDashboardRowsApi.getRows response structure, then implement the real feature with confidence. ## Quick Start Ask the AI to create a temporary Fusebase token and run a test script that calls the API endpoint you want to verify, then inspect the response output.