SlashAI
Coding & Development

Debugging

8 commands

/Rubber

Interrogate your reasoning with pointed questions until the bug surfaces.

Coding & Developmenteasy#debug#thinking

/DebugQuery

Diagnose the failure and propose a minimal fix for a database query — e.g. a 30-line PostgreSQL query joining orders.

Coding & Developmentmedium#sql#query

/BugReplay

Turns a stack trace plus your hunch into a step-by-step reproduction script, the 3 most likely root causes and a patch for each.

Coding & Developmentmedium#debugging#reproduction

/DebugComponent

Diagnose the failure and propose a minimal fix for a UI component — e.g. a React `<PricingTable />` component with three tier props.

Coding & Developmentadvanced#frontend#component

/DebugScript

Diagnose the failure and propose a minimal fix for a script — e.g. a Python script that renames 10.

Coding & Developmentadvanced#script#automation

/DebugApi

Diagnose the failure and propose a minimal fix for an API endpoint — e.g. a `POST /api/orders` Express handler with Stripe integration.

Coding & Developmenteasy#api#backend

/DebugConfig

Diagnose the failure and propose a minimal fix for a config file — e.g. a `docker-compose.yml` running Postgres.

Coding & Developmenteasy#config#devops

/DebugFunction

Diagnose the failure and propose a minimal fix for a function — e.g. a 40-line `parseInvoice(buffer)` helper in TypeScript.

Coding & Developmentmedium#function#debugging