search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

add /check-prod command for monitoring production

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz d69d5a7e d3fb6079

+23
+23
.claude/commands/check-prod.md
··· 1 + # check prod health 2 + 3 + ## quick status 4 + ```bash 5 + curl -s https://leaflet-search-backend.fly.dev/health 6 + curl -s https://leaflet-search-backend.fly.dev/stats | jq 7 + ``` 8 + 9 + ## observability 10 + use the logfire MCP server to query traces and logs: 11 + - `mcp__logfire__arbitrary_query` - run SQL against traces/spans 12 + - `mcp__logfire__find_exceptions_in_file` - recent exceptions by file 13 + - `mcp__logfire__schema_reference` - see available columns 14 + 15 + ## database 16 + use turso CLI for direct SQL: 17 + ```bash 18 + turso db shell leaflet-search "SELECT COUNT(*) FROM documents" 19 + turso db shell leaflet-search "SELECT * FROM documents ORDER BY created_at DESC LIMIT 5" 20 + ``` 21 + 22 + ## tap status 23 + from `tap/` directory: `just check`