.kiro/skills/livestock-poultry/SKILL.md
Poultry farming domain knowledge for broilers and layers in LivestockAI
npx skillsauth add captjay98/gemini-livestockai Livestock - PoultryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
LivestockAI supports poultry farming with specialized tracking for broilers and layers.
| Species | Purpose | Typical Cycle | | -------- | -------------------- | ------------- | | Broiler | Meat production | 6-8 weeks | | Layer | Egg production | 72-78 weeks | | Cockerel | Meat (slower growth) | 12-16 weeks | | Turkey | Meat production | 12-20 weeks |
const poultrySourceSizes = [
{ value: 'day-old', label: 'Day Old Chicks (DOC)' },
{ value: 'week-old', label: 'Week Old' },
{ value: 'point-of-lay', label: 'Point of Lay (POL)' },
{ value: 'grower', label: 'Grower' },
]
Broiler growth follows a sigmoid curve:
// Simplified growth model
function estimateWeight(ageInDays: number): number {
// Gompertz growth curve parameters for broilers
const maxWeight = 3000 // grams
const growthRate = 0.05
const inflectionPoint = 35 // days
return (
maxWeight * Math.exp(-Math.exp(-growthRate * (ageInDays - inflectionPoint)))
)
}
batch-centric-design - UI patterns for batch managementfinancial-calculations - Cost and revenue trackingdata-ai
Input validation patterns with Zod in LivestockAI server functions
testing
Unit testing patterns with Vitest in LivestockAI
tools
Server → Service → Repository pattern for feature organization
data-ai
Server-side rendering and server functions with TanStack Start in LivestockAI