Claude Code
Hand Claude a bug fix, test, or multi-day migration. Steer and review from your terminal, IDE, Slack, or web.
Available for macOS, Linux, and Windows.
Other ways to use Claude Code:
We're seeing duplicate charges when customers double-click the pay button. Can you find and fix it?
Add a dark mode toggle to the settings page. Should remember the choice and follow the system default until they pick one.
src/theme/ThemeProvider.tsx
10
export function ThemeProvider({children}: {children: ReactNode}) {11+
const prefersDark = useMediaQuery('(prefers-color-scheme: dark)')12
const stored = localStorage.getItem('theme')13+
const [mode, setMode] = useState(stored ?? (prefersDark ? 'dark' : 'light'))14
15+
useEffect(() => {16+
localStorage.setItem('theme', mode)17+
}, [mode])18
19
return (20
<ThemeContext.Provider value={{mode, setMode}}>21
{children}#112acme-dashboardclaude/settings-dark-mode-Xk4fq CI