Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Healthie

v1.0.0

Healthie — manage patients, appointments, goals, and documents via GraphQL API

0· 358·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for aiwithabidi/healthie.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Healthie" (aiwithabidi/healthie) from ClawHub.
Skill page: https://clawhub.ai/aiwithabidi/healthie
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: HEALTHIE_API_KEY
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install healthie

ClawHub CLI

Package manager switcher

npx clawhub@latest install healthie
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
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.
Instruction Scope
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 read a file in the user's home directory.
Install Mechanism
No install spec; this is an instruction-only skill with a bundled Python script. No additional packages or downloads are performed.
Credentials
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.
Persistence & Privilege
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.
Assessment
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 and avoid using a highly privileged key that could expose PHI. (4) Note the SKILL.md claims GraphQL but the script uses REST endpoints—verify this matches the Healthie API you expect. (5) If handling real patient data, run the tool in a controlled environment and review network activity to ensure requests go only to the expected api.gethealthie.com host.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🏥 Clawdis
EnvHEALTHIE_API_KEY
Primary envHEALTHIE_API_KEY
latestvk97fpfwtd7xt7t3b5zfpkbmrf1829fxn
358downloads
0stars
1versions
Updated 10h ago
v1.0.0
MIT-0

🏥 Healthie

Healthie — manage patients, appointments, goals, and documents via GraphQL API

Requirements

VariableRequiredDescription
HEALTHIE_API_KEYAPI key from Healthie developer settings

Quick Start

# 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

CommandDescription
patientsList patients
patient-getGet patient
patient-createCreate patient
appointmentsList appointments
appointment-getGet appointment
appointment-createCreate appointment
appointment-deleteDelete appointment
appointment-typesList appointment types
providersList providers
goalsList goals
goal-createCreate goal
documentsList documents
formsList forms
tagsList tags

Output Format

All commands output JSON by default. Add --human for readable formatted output.

python3 {{baseDir}}/scripts/healthie.py <command> --human

Script Reference

ScriptDescription
{{baseDir}}/scripts/healthie.pyMain CLI — all commands in one tool

Credits

Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

Comments

Loading comments...