What problem does it solve?
Many features require repetitive, error-prone boilerplate across database schemas, backend repositories, API routes, and frontend types and stores. This Skill centralizes the pattern and conventions used by CachiBot so developers can add new persistent resources reliably and consistently.
Core Features & Use Cases
- End-to-end scaffolding: Specifies SQLite table schema, async repository CRUD, Pydantic request/response models, and FastAPI route handlers with registration.
- Frontend integration: Produces TypeScript interfaces, fetch-based API client functions, and a persisted Zustand store for state management.
- Use Case: Add a bot-scoped bookmarks or reminders entity and get a complete database table, repository methods, validated API endpoints, typed client calls, and a ready-to-use frontend store.
Quick Start
Add a 'bookmarks' entity (id, bot_id, title, url, created_at, updated_at) and generate the database table, repository, Pydantic models, FastAPI routes, TypeScript types, API client functions, and a persisted Zustand store.