Skills for 60s API project.
npx skills add https://github.com/vikiboss/60s-skills --skill weather-queryInstallieren Sie diesen Skill über die CLI und beginnen Sie mit der Verwendung des SKILL.md-Workflows in Ihrem Arbeitsbereich.
A collection of Agent Skills for the 60s API.
This repository contains skills that enable AI agents to work with the 60s API, providing access to daily news, weather, trending topics, utilities, entertainment, data queries, and media information.
Agent Skills are a simple, open format for giving agents new capabilities and expertise. They are folders of instructions, scripts, and resources that agents can discover and use to perform better at specific tasks.
60s-skills/
├── skills/ # Individual skills directory
│ ├── daily-news-60s/ # Daily news skill
│ ├── weather-query/ # Weather information
│ ├── hot-topics/ # Trending content
│ ├── utility-tools/ # Translation, IP, QR, etc.
│ ├── entertainment/ # Fun content
│ ├── data-query/ # Exchange rates, calendar, etc.
│ └── media-info/ # Music and movie info
├── README.md # This file
└── LICENSE # MIT License
获取每天60秒读懂世界的每日新闻,包含15条精选国内外新闻和每日微语。
Get daily curated news with 15 selected items and a daily quote, updated every 30 minutes.
Use when: Users need daily news summaries, current events, or want to stay informed.
查询中国各地实时天气和天气预报,包括温度、湿度、风速、空气质量等信息。
Query real-time weather and forecasts for locations in China including temperature, humidity, wind, and air quality.
Use when: Users ask about weather conditions, forecasts, or climate information.
获取微博、知乎、百度、抖音、今日头条、B站等主流平台的实时热搜榜单。
Get trending topics and hot searches from major Chinese platforms (Weibo, Zhihu, Baidu, Douyin, Toutiao, Bilibili).
Use when: Users want to know what's trending on social media.
提供实用工具功能,包括IP查询、文本翻译、二维码生成、哈希计算、网页元数据提取、WHOIS查询和密码生成。
Utility functions including IP lookup, translation, QR code generation, hashing, OG metadata extraction, WHOIS, and password generation.
Use when: Users need translation, IP lookup, QR codes, or other utility functions.
获取娱乐内容,包括一言名句、笑话、段子、运势预测、KFC梗文案和摸鱼日历。
Fun content including quotes, jokes, luck predictions, memes, and slacking calendars.
Use when: Users want entertainment, jokes, quotes, or fun content.
查询各类数据信息,包括汇率、农历、历史事件、百科、油价、金价和化学元素。
Query various data including exchange rates, lunar calendar, historical events, encyclopedia, fuel/gold prices, and chemical elements.
Use when: Users need reference data, currency conversion, calendar info, or encyclopedia lookups.
获取音乐和影视信息,包括网易云音乐排行榜、歌词搜索、电影票房、电视剧收视率和网剧排行。
Get music and entertainment information including music charts, lyrics, movie box office, TV ratings, and web series rankings.
Use when: Users need music charts, lyrics, movie info, or entertainment rankings.
Skills in this repository follow the Agent Skills specification. Each skill:
[a-z0-9-]+SKILL.md file with YAML frontmatter and instructions60s API is a collection of high-quality, open-source APIs providing:
Features:
Simply provide agents access to the skills in this repository. Each SKILL.md file contains all the information needed to use that skill effectively.
Each skill provides:
Example from daily-news-60s:
import requests
response = requests.get('https://60s.viki.moe/v2/60s')
news = response.json()
print(f"📰 {news['date']} 新闻简报")
for i, item in enumerate(news['news'], 1):
print(f"{i}. {item['title']}")
Contributions are welcome! To add improvements:
When creating new skills:
This repository is licensed under the MIT License - see the LICENSE file for details.
The 60s API project is also licensed under MIT.
Made with ❤️ for the AI Agent Community