get_trending_skills
Discover trending skills on SkillFlow marketplace, sorted by popularity and trust score, to identify in-demand capabilities for AI coding agents.
Instructions
Get currently trending skills on SkillFlow marketplace, sorted by popularity and trust score.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (default: 5) |
Implementation Reference
- src/index.ts:336-355 (handler)The implementation of the get_trending_skills tool, which filters the SKILL_CATALOG for trending skills, sorts them by trust_score, and formats them for the MCP response.
case "get_trending_skills": { const limit = (args?.limit as number) || 5; const trending = SKILL_CATALOG .filter((s) => s.trending) .sort((a, b) => b.trust_score - a.trust_score) .slice(0, limit); const formatted = trending.map((s, i) => `${i + 1}. **${s.name}** (Trust: ${s.trust_score}/100)\n` + ` ${s.description}\n` + ` Install: \`${s.install}\`` ).join("\n\n"); return { content: [{ type: "text", text: `# Trending Skills on SkillFlow\n\n${formatted}\n\n---\nSee all trending: ${SKILLFLOW_BASE_URL}/explore?sort=trending`, }], }; }