A Claude Code plugin providing a skill for interacting with the Uccello Hub REST API.
When installed, Claude automatically activates this skill whenever you work with Uccello Hub data — creating records, filtering lists, checking schema, or wiring up CRUD operations. It enforces the core rule: never create local database migrations for business data, always use the Uccello Hub API.
claude plugin marketplace add github:uccellolabs/uccello-hub-development
claude plugin install uccello-hub-developmentAdd to your .env:
UCCELLO_HUB_URL=https://your-hub.uccello.app
UCCELLO_HUB_API_KEY=your_api_keyAdd to config/services.php:
'uccello_hub' => [
'url' => env('UCCELLO_HUB_URL'),
'api_key' => env('UCCELLO_HUB_API_KEY'),
],skills/
└── uccello-hub-development/
└── SKILL.md # Model-invoked skill with API conventions and code patterns
MIT