examples/health-management/skills/health-analyze/SKILL.md
# health-analyze **用途**: 分析健康数据,计算健康评分 **输入**: ```yaml date: string data: temperature: number heart_rate: number steps: number ``` **输出**: ```yaml status: string # 状态:analyzed health_score: number # 健康评分 (0-100) analysis: temperature_ok: boolean heart_rate_ok: boolean steps_ok: boolean issues: array # 问题列表 timestamp: string ``` ## 评分规则 总分 100 分,分为三个维度: 1. **体温评分** (30 分) - 36.0 - 37.5°C: 30 分 - 其他: 0 分 2. **心率评分** (30 分) - 60 - 100 bpm: 30 分 -
npx skillsauth add maxoreric/sop-engine examples/health-management/skills/health-analyzeInstall 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.
用途: 分析健康数据,计算健康评分
输入:
date: string
data:
temperature: number
heart_rate: number
steps: number
输出:
status: string # 状态:analyzed
health_score: number # 健康评分 (0-100)
analysis:
temperature_ok: boolean
heart_rate_ok: boolean
steps_ok: boolean
issues: array # 问题列表
timestamp: string
总分 100 分,分为三个维度:
体温评分 (30 分)
心率评分 (30 分)
步数评分 (40 分)
data-ai
# workflow-define-skill **用途**: 定义 Workflow(基于需求生成 Workflow YAML) **输入**: 需求、系统结构、Skills 列表 **输出**: Workflow YAML 定义 --- ## 核心原则 1. **基于需求驱动** - Workflow 服务于具体需求 2. **复用 Skills** - 优先使用已有的 Skills 3. **遵循规范** - 严格遵循 workflow-spec.md 4. **清晰命名** - Workflow 和节点名称自解释 5. **适度复杂** - 避免过度设计,保持简单 --- ## 输入格式 ```yaml input: requirement: # 需求描述 name: string # Workflow 名称 purpose: string # 用途 trigger: object # 触发
testing
Skill 版本管理的 Skill。当需要 A/B test、切换版本、回滚时触发。触发词:版本、version、A/B test、切换、回滚、promote。
development
# user-confirm-skill **用途**: 判别式确认 - 展示内容并获取用户反馈 **核心理念**: - 做选择题,不做填空题 - 人类擅长判别(喜不喜欢),不擅长生成(描述细节) - 展示具体方案,让用户说"对/不对" --- ## 输入参数 ```yaml input: content: object | string # 要确认的内容(方案、结果等) format: string # 展示格式(见下方) question: string # 确认问题 options: array # 可选:预定义的选项 ``` ### format 选项 | 格式 | 说明 | 适用场景 | |------|------|----------| | `visual_summary` | 可视化摘要(emoji + 结构化) | 展示设计方案 | | `file_list_with_summary` | 文件列表 + 功能说明 | 展示执行结果 | | `comp
data-ai
# system-create-skill **用途**: 创建一个完整的 System/Project **触发**: 当用户表达想要创建一个系统时(如:"创建一个健康管理系统") **核心理念**: - 人只说意图,AI 自己设计 - 做选择题,不做填空题 - 问最关键的一题(最大信息增益) --- ## Workflow 定义 这是一个完整的 Workflow,演示了: - 条件分支 - 循环迭代 - Workflow 嵌套 - 判别式交互 ```yaml workflow: name: system-create-skill description: 创建一个完整的 System/Project version: 1.0.0 input: user_intent: string # 用户的模糊意图 output: system_path: string # 创建的系统路径 summary: object # 系统摘要 # ===============================