技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 194 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :良性
Package:aiwithabidi/healthie
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :良性
OpenClaw 评估
The skill's code and requirements are consistent with a Healthie API client; nothing indicates intentional misdirection or excess privileges, though there are a few small implementation notes to be aware of.
目的
The skill claims to manage patients/appointments via a Healthie API and requires HEALTHIE_API_KEY — which matches the included CLI implementation that talks to https://api.gethealthie.com. Minor mismatch: SKILL.md and metadata mention a GraphQL API, but the script uses REST-style endpoints (e.g., /users, /appointments) rather than sending GraphQL queries to /graphql. This is likely an implementation description mismatch, not a security issue.
说明范围
SKILL.md simply instructs running the provided Python script. The script makes outbound HTTPS requests to api.gethealthie.com (expected). It also attempts to read a .env file from WORKSPACE or ~/.openclaw/workspace/.env to obtain the HEALTHIE_API_KEY if the env var is not set. The README does not document this .env fallback or the WORKSPACE env var; reading that file is limited to extracting the requested key, but it does mean the script can r…
安装机制
No install spec; this is an instruction-only skill with a bundled Python script. No additional packages or downloads are performed.
证书
Only HEALTHIE_API_KEY is declared/required, which is proportionate for an API client. However, the script also reads the WORKSPACE env var (if present) and a .env file path as a fallback; WORKSPACE is not declared in requires.env. The script does not request any other unrelated credentials.
持久
The skill does not request always: true and does not modify other skills or system-wide settings. It runs as a normal, user-invoked CLI.
综合结论
This skill appears to be a straightforward Healthie API client and only needs your HEALTHIE_API_KEY. Before installing: (1) Confirm you trust the owner/homepage (agxntsix.ai) and that this is the intended Healthie integration. (2) Prefer setting HEALTHIE_API_KEY in the environment rather than relying on a ~/.openclaw/workspace/.env file (the script will read that file as a fallback). (3) Limit the API key's permissions to the minimum required …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Healthie」。简介:Healthie — manage patients, appointments, goals, and documents via GraphQL API。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/healthie/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: healthie
description: "Healthie — manage patients, appointments, goals, and documents via GraphQL API"
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🏥", "requires": {"env": ["HEALTHIE_API_KEY"]}, "primaryEnv": "HEALTHIE_API_KEY", "homepage": "https://www.agxntsix.ai"}}
---
# 🏥 Healthie
Healthie — manage patients, appointments, goals, and documents via GraphQL API
## Requirements
| Variable | Required | Description |
|----------|----------|-------------|
| `HEALTHIE_API_KEY` | ✅ | API key from Healthie developer settings |
## Quick Start
```bash
# List patients
python3 {{baseDir}}/scripts/healthie.py patients --offset <value> --keywords <value>
# Get patient
python3 {{baseDir}}/scripts/healthie.py patient-get id <value>
# Create patient
python3 {{baseDir}}/scripts/healthie.py patient-create --first_name <value> --last_name <value> --email <value>
# List appointments
python3 {{baseDir}}/scripts/healthie.py appointments --provider_id <value>
# Get appointment
python3 {{baseDir}}/scripts/healthie.py appointment-get id <value>
# Create appointment
python3 {{baseDir}}/scripts/healthie.py appointment-create --patient_id <value> --provider_id <value> --datetime <value>
# Delete appointment
python3 {{baseDir}}/scripts/healthie.py appointment-delete id <value>
# List appointment types
python3 {{baseDir}}/scripts/healthie.py appointment-types
```
## All Commands
| Command | Description |
|---------|-------------|
| `patients` | List patients |
| `patient-get` | Get patient |
| `patient-create` | Create patient |
| `appointments` | List appointments |
| `appointment-get` | Get appointment |
| `appointment-create` | Create appointment |
| `appointment-delete` | Delete appointment |
| `appointment-types` | List appointment types |
| `providers` | List providers |
| `goals` | List goals |
| `goal-create` | Create goal |
| `documents` | List documents |
| `forms` | List forms |
| `tags` | List tags |
## Output Format
All commands output JSON by default. Add `--human` for readable formatted output.
```bash
python3 {{baseDir}}/scripts/healthie.py <command> --human
```
## Script Reference
| Script | Description |
|--------|-------------|
| `{{baseDir}}/scripts/healthie.py` | Main CLI — all commands in one tool |
## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.
📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)