{ "name": "daily-horoscope", "version": "1.0.0", "description": "Daily horoscope and fortune analysis with Chinese almanac integration", "main": "index.js", "type": "skill", "tools": [ { "name": "getDailyHoroscope", "description": "Get daily horoscope for all 12 zodiac signs and analyze with user's birth chart", "inputSchema": { "type": "object", "properties": { "date": { "type": "string", "description": "Target date in YYYY-MM-DD format" }, "userBirthInfo": { "type": "object", "properties": { "birthday": { "type": "string" }, "birthTime": { "type": "string" }, "zodiacSign": { "type": "string" } } } } } } ], "skills": { "entries": { "chinese-almanac": { "enabled": true }, "tavily": { "enabled": true } } } }