You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
953 B
37 lines
953 B
|
4 weeks ago
|
{
|
||
|
|
"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 }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|