{"id":"f02fca16-00d9-4dc1-b5ea-2126776e7731","shortId":"U2kb5a","kind":"skill","title":"wellally-tech","tagline":"Integrate multiple digital health data sources, connect to [WellAlly.tech](https://www.wellally.tech/) knowledge base, providing data import and knowledge reference for personal health management systems.","description":"# WellAlly Digital Health Integration\n\nIntegrate multiple digital health data sources, connect to [WellAlly.tech](https://www.wellally.tech/) knowledge base, providing data import and knowledge reference for personal health management systems.\n\n## When to Use\n- You need to import or normalize health data from sources like Apple Health, Fitbit, Oura, or CSV/JSON exports.\n- You want to connect personal health data workflows to the WellAlly.tech knowledge base.\n- The task involves data import, health-data management, or article recommendations driven by user health context.\n\n## Core Features\n\n### 1. Digital Health Data Import\n- **Apple Health (HealthKit)**: Export XML/ZIP file parsing\n- **Fitbit**: OAuth2 API integration and CSV import\n- **Oura Ring**: API v2 data synchronization\n- **Generic Import**: CSV/JSON file import with field mapping\n\n### 2. WellAlly.tech Knowledge Base Integration\n- **Categorized Article Index**: Nutrition, fitness, sleep, mental health, chronic disease management\n- **Intelligent Recommendations**: Recommend relevant articles based on user health data\n- **URL References**: Provide direct links to [WellAlly.tech](https://www.wellally.tech/) platform\n\n### 3. Data Standardization\n- **Format Conversion**: Convert external data to local JSON format\n- **Field Mapping**: Intelligently map data fields from different platforms\n- **Data Validation**: Ensure completeness and accuracy of imported data\n\n### 4. Intelligent Article Recommendations\n- **Health Status Analysis**: Based on user health data analysis\n- **Relevance Matching**: Recommend articles most relevant to user health conditions\n- **Category Navigation**: Organize knowledge base articles by health topics\n\n## Usage Instructions\n\n### Trigger Conditions\n\nUse this skill when users mention the following scenarios:\n\n**Data Import**:\n- ✅ \"Import my health data from Apple Health\"\n- ✅ \"Connect my Fitbit device\"\n- ✅ \"Sync my Oura Ring data\"\n- ✅ \"Import CSV health data file\"\n- ✅ \"How to import fitness tracker/smartwatch data\"\n\n**Knowledge Base Query**:\n- ✅ \"Articles about hypertension on WellAlly platform\"\n- ✅ \"Recommend some health management reading materials\"\n- ✅ \"Recommend articles based on my health data\"\n- ✅ \"WellAlly knowledge base articles about sleep\"\n- ✅ \"How to improve my blood pressure (check knowledge base)\"\n\n**Data Management**:\n- ✅ \"What health data sources do I have\"\n- ✅ \"Integrate health data from different platforms\"\n- ✅ \"View imported external data\"\n\n### Execution Steps\n\n#### Step 1: Identify User Intent\n\nDetermine what the user wants:\n1. **Import Data**: Import data from external health platforms\n2. **Query Knowledge Base**: Find [WellAlly.tech](https://www.wellally.tech/) related articles\n3. **Get Recommendations**: Recommend articles based on health data\n4. **Data Management**: View or manage imported external data\n\n#### Step 2: Data Import Workflow\n\nIf user wants to import data:\n\n**2.1 Determine Data Source**\n```javascript\nconst dataSource = identifySource(userInput);\n// Possible returns: \"apple-health\", \"fitbit\", \"oura\", \"generic-csv\", \"generic-json\"\n```\n\n**2.2 Read External Data**\nUse appropriate import script based on data source type:\n\n```javascript\n// Apple Health\nconst appleHealthData = readAppleHealthExport(exportPath);\n\n// Fitbit\nconst fitbitData = fetchFitbitData(dateRange);\n\n// Oura Ring\nconst ouraData = fetchOuraData(dateRange);\n\n// Generic CSV/JSON\nconst genericData = readGenericFile(filePath, mappingConfig);\n```\n\n**2.3 Data Mapping and Conversion**\nMap external data to local format:\n\n```javascript\n// Example: Apple Health steps mapping\nfunction mapAppleHealthSteps(appleRecord) {\n  return {\n    date: formatDateTime(appleRecord.startDate),\n    steps: parseInt(appleRecord.value),\n    source: \"Apple Health\",\n    device: appleRecord.sourceName\n  };\n}\n\n// Save to local file\nsaveToLocalFile(\"data/fitness/activities.json\", mappedData);\n```\n\n**2.4 Data Validation**\n```javascript\nfunction validateImportedData(data) {\n  // Check required fields\n  // Validate data types\n  // Check data ranges\n  // Ensure correct time format\n\n  return {\n    valid: true,\n    errors: [],\n    warnings: []\n  };\n}\n```\n\n**2.5 Generate Import Report**\n```javascript\nconst importReport = {\n  source: dataSource,\n  import_date: new Date().toISOString(),\n  records_imported: {\n    steps: 1234,\n    weight: 30,\n    heart_rate: 1200,\n    sleep: 90\n  },\n  date_range: {\n    start: \"2025-01-01\",\n    end: \"2025-01-22\"\n  },\n  validation: validationResults\n};\n```\n\n#### Step 3: Knowledge Base Query Workflow\n\nIf user wants to query knowledge base:\n\n**3.1 Identify Query Topic**\n```javascript\nconst topic = identifyTopic(userInput);\n// Possible returns: \"nutrition\", \"fitness\", \"sleep\", \"mental-health\", \"chronic-disease\", \"hypertension\", \"diabetes\", etc.\n```\n\n**3.2 Search Relevant Articles**\nFind relevant articles from knowledge base index:\n\n```javascript\nfunction searchKnowledgeBase(topic) {\n  // Read knowledge base index\n  const kbIndex = readFile('.claude/skills/wellally-tech/knowledge-base/index.md');\n\n  // Find matching articles\n  const articles = kbIndex.categories.filter(cat =>\n    cat.tags.includes(topic) || cat.keywords.includes(topic)\n  );\n\n  return articles;\n}\n```\n\n**3.3 Return Article Links**\n```javascript\nconst results = {\n  topic: topic,\n  articles: [\n    {\n      title: \"Hypertension Monitoring and Management\",\n      url: \"https://wellally.tech/knowledge-base/chronic-disease/hypertension-monitoring\",\n      category: \"Chronic Disease Management\",\n      description: \"Learn how to effectively monitor and manage blood pressure\"\n    },\n    {\n      title: \"Blood Pressure Lowering Strategies\",\n      url: \"https://wellally.tech/knowledge-base/chronic-disease/bp-lowering-strategies\",\n      category: \"Chronic Disease Management\",\n      description: \"Improve blood pressure levels through lifestyle changes\"\n    }\n  ],\n  total_found: 2\n};\n```\n\n#### Step 4: Intelligent Recommendation Workflow\n\nIf user wants personalized recommendations:\n\n**4.1 Read User Health Data**\n```javascript\n// Read relevant health data\nconst profile = readFile('data/profile.json');\nconst bloodPressure = glob('data/blood-pressure/**/*.json');\nconst sleepRecords = glob('data/sleep/**/*.json');\nconst weightHistory = profile.weight_history || [];\n```\n\n**4.2 Analyze Health Status**\n```javascript\nfunction analyzeHealthStatus(data) {\n  const status = {\n    concerns: [],\n    good_patterns: []\n  };\n\n  // Analyze blood pressure\n  if (data.blood_pressure?.average > 140/90) {\n    status.concerns.push({\n      area: \"blood_pressure\",\n      severity: \"high\",\n      condition: \"Hypertension\",\n      value: data.blood_pressure.average\n    });\n  }\n\n  // Analyze sleep\n  if (data.sleep?.average_duration < 6) {\n    status.concerns.push({\n      area: \"sleep\",\n      severity: \"medium\",\n      condition: \"Sleep Deprivation\",\n      value: data.sleep.average_duration + \" hours\"\n    });\n  }\n\n  // Analyze weight trend\n  if (data.weight?.trend === \"increasing\") {\n    status.concerns.push({\n      area: \"weight\",\n      severity: \"medium\",\n      condition: \"Weight Gain\",\n      value: data.weight.change + \" kg\"\n    });\n  }\n\n  // Identify good patterns\n  if (data.steps?.average > 8000) {\n    status.good_patterns.push({\n      area: \"activity\",\n      description: \"Daily average steps over 8000\",\n      value: data.steps.average\n    });\n  }\n\n  return status;\n}\n```\n\n**4.3 Recommend Relevant Articles**\n```javascript\nfunction recommendArticles(healthStatus) {\n  const recommendations = [];\n\n  for (const concern of healthStatus.concerns) {\n    const articles = findArticlesForCondition(concern.condition);\n    recommendations.push({\n      condition: concern.condition,\n      severity: concern.severity,\n      articles: articles\n    });\n  }\n\n  return recommendations;\n}\n```\n\n**4.4 Generate Recommendation Report**\n```javascript\nconst recommendationReport = {\n  generated_at: new Date().toISOString(),\n  health_status: healthStatus,\n  recommendations: recommendations,\n  total_articles: recommendations.reduce((sum, r) => sum + r.articles.length, 0)\n};\n```\n\n## Output Format\n\n### Data Import Output\n\n```\n✅ Data Import Successful\n\nData Source: Apple Health\nImport Time: 2025-01-22 14:30:00\n\nImport Records Statistics:\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n📊 Step Records: 1,234 records\n⚖️ Weight Records: 30 records\n❤️ Heart Rate Records: 1,200 records\n😴 Sleep Records: 90 records\n\nData Time Range: 2025-01-01 to 2025-01-22\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n💾 Data Saved To:\n• data/fitness/activities.json (steps)\n• data/profile.json (weight history)\n• data/fitness/heart-rate.json (heart rate)\n• data/sleep/sleep-records.json (sleep)\n\n⚠️  Validation Warnings:\n• 3 step records missing timestamps, used default values\n• 1 weight record abnormal (<20kg), skipped\n\n💡 Next Steps:\n• Use /health-trend to analyze imported data\n• Use /wellally-tech for personalized article recommendations\n```\n\n### Knowledge Base Query Output\n\n```\n📚 WellAlly Knowledge Base Search Results\n\nSearch Topic: Hypertension Management\nArticles Found: 2\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n1. Hypertension Monitoring and Management\n   Category: Chronic Disease Management\n   Link: https://wellally.tech/knowledge-base/chronic-disease/hypertension-monitoring\n   Description: Learn how to effectively monitor and manage blood pressure\n\n2. Blood Pressure Lowering Strategies\n   Category: Chronic Disease Management\n   Link: https://wellally.tech/knowledge-base/chronic-disease/bp-lowering-strategies\n   Description: Improve blood pressure levels through lifestyle modifications\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n🔗 Related Topics:\n• Diabetes Management\n• Cardiovascular Health\n• Medication Adherence\n\n💡 Tips:\nClick links to visit [WellAlly.tech](https://www.wellally.tech/) platform for full articles\n```\n\n### Intelligent Recommendation Output\n\n```\n💡 Article Recommendations Based on Your Health Data\n\nGenerated Time: 2025-01-22 14:30:00\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n🔴 Attention Needed: Blood Pressure Management\n━━━━━━━━━━━━━━━━━━━━━━━━━━\nCurrent Status: Average blood pressure 142/92 mmHg (elevated)\n\nRecommended Articles:\n1. Hypertension Monitoring and Management\n   https://wellally.tech/knowledge-base/chronic-disease/hypertension-monitoring\n\n2. Blood Pressure Lowering Strategies\n   https://wellally.tech/knowledge-base/chronic-disease/bp-lowering-strategies\n\n3. Antihypertensive Medication Adherence Guide\n   https://wellally.tech/knowledge-base/chronic-disease/medication-adherence\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n🟡 Attention Needed: Sleep Improvement\n━━━━━━━━━━━━━━━━━━━━━━━━━━\nCurrent Status: Average sleep duration 5.8 hours (insufficient)\n\nRecommended Articles:\n1. Sleep Hygiene Basics\n   https://wellally.tech/knowledge-base/sleep/sleep-hygiene\n\n2. Improve Sleep Quality\n   https://wellally.tech/knowledge-base/sleep/sleep-quality-improvement\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n🟢 Keep Up: Daily Activity\n━━━━━━━━━━━━━━━━━━━━━━━━━━\nCurrent Status: Daily average steps 9,234 (good)\n\nRelated Reading:\n1. Maintain Active Lifestyle\n   https://wellally.tech/knowledge-base/fitness/active-lifestyle\n\n━━━━━━━━━━━━━━━━━━━━━━━━━━\n\nSummary: 5 related articles recommended\nVisit [WellAlly.tech](https://www.wellally.tech/) Knowledge Base for full content\n```\n\n## Data Sources\n\n### External Data Sources\n\n| Data Source | Type | Import Method | Data Content |\n|-------------|------|---------------|--------------|\n| Apple Health | File Import | XML/ZIP Parsing | Steps, weight, heart rate, sleep, workouts |\n| Fitbit | API/CSV | OAuth2 or CSV | Activities, heart rate, sleep, weight |\n| Oura Ring | API | OAuth2 | Sleep stages, readiness, heart rate variability |\n| Generic CSV | File Import | Field Mapping | Custom health data |\n| Generic JSON | File Import | Field Mapping | Custom health data |\n\n### Local Data Files\n\n| File Path | Data Content | Source Mapping |\n|-----------|--------------|----------------|\n| `data/profile.json` | Profile, weight history | Apple Health, Fitbit, Oura |\n| `data/fitness/activities.json` | Steps, activity data | Apple Health, Fitbit, Oura |\n| `data/fitness/heart-rate.json` | Heart rate records | Apple Health, Fitbit, Oura |\n| `data/sleep/sleep-records.json` | Sleep records | Apple Health, Fitbit, Oura |\n| `data/fitness/recovery.json` | Recovery data | Oura Ring (readiness) |\n\n## WellAlly.tech Knowledge Base\n\n### Knowledge Base Structure\n\n**Nutrition & Diet** (`knowledge-base/nutrition.md`)\n- Dietary management guidelines\n- Food nutrition queries\n- Diet recommendations\n- Special dietary needs\n\n**Fitness & Exercise** (`knowledge-base/fitness.md`)\n- Exercise tracking best practices\n- Activity recommendations\n- Exercise data interpretation\n- Training plans\n\n**Sleep Health** (`knowledge-base/sleep.md`)\n- Sleep quality analysis\n- Sleep improvement strategies\n- Sleep disorders overview\n- Sleep hygiene\n\n**Mental Health** (`knowledge-base/mental-health.md`)\n- Stress management techniques\n- Mood tracking interpretation\n- Mental health resources\n- Mindfulness practice\n\n**Chronic Disease Management** (`knowledge-base/chronic-disease.md`)\n- Hypertension monitoring\n- Diabetes management\n- COPD care\n- Medication adherence\n\n### Article Recommendation Mapping\n\n```javascript\nconst articleMapping = {\n  \"Hypertension\": [\n    \"chronic-disease/hypertension-monitoring\",\n    \"chronic-disease/bp-lowering-strategies\"\n  ],\n  \"Diabetes\": [\n    \"chronic-disease/diabetes-management\",\n    \"nutrition/diabetic-diet\"\n  ],\n  \"Sleep Deprivation\": [\n    \"sleep/sleep-hygiene\",\n    \"sleep/sleep-quality-improvement\"\n  ],\n  \"Weight Gain\": [\n    \"nutrition/healthy-diet\",\n    \"nutrition/calorie-management\"\n  ],\n  \"High Stress\": [\n    \"mental-health/stress-management\",\n    \"mental-health/mindfulness\"\n  ]\n};\n```\n\n## Integration Guides\n\n### Apple Health Import\n\n**Export Steps**:\n1. Open \"Health\" app on iPhone\n2. Tap profile icon in top right corner\n3. Scroll to bottom, tap \"Export All Health Data\"\n4. Wait for export to complete and choose sharing method\n5. Save the exported ZIP file\n\n**Import Steps**:\n```bash\npython scripts/import_apple_health.py ~/Downloads/apple_health_export.zip\n```\n\n### Fitbit Integration\n\n**API Integration**:\n1. Create app on Fitbit Developer Platform\n2. Get CLIENT_ID and CLIENT_SECRET\n3. Run OAuth authentication flow\n4. Store access token\n\n**Import Data**:\n```bash\npython scripts/import_fitbit.py --api --days 30\n```\n\n**CSV Import**:\n```bash\npython scripts/import_fitbit.py --csv fitbit_export.csv\n```\n\n### Oura Ring Integration\n\n**API Integration**:\n1. Create app on Oura Developer Platform\n2. Get Personal Access Token\n3. Configure token in import script\n\n**Import Data**:\n```bash\npython scripts/import_oura.py --date-range 2025-01-01 2025-01-22\n```\n\n### Generic CSV/JSON Import\n\n**CSV Import**:\n```bash\npython scripts/import_generic.py health_data.csv --mapping mapping_config.json\n```\n\n**Mapping Configuration Example** (`mapping_config.json`):\n```json\n{\n  \"date\": \"Date\",\n  \"steps\": \"Step Count\",\n  \"weight\": \"Weight (kg)\",\n  \"heart_rate\": \"Resting Heart Rate\"\n}\n```\n\n## Security & Privacy\n\n### Must Follow\n\n- ❌ Do not upload data to external servers (except API sync)\n- ❌ Do not hardcode API credentials in code\n- ❌ Do not share user access tokens\n- ✅ All imported data stored locally only\n- ✅ OAuth credentials encrypted storage\n- ✅ Import only after explicit user authorization\n\n### Data Validation\n\n- ✅ Validate imported data types and ranges\n- ✅ Filter abnormal values (e.g., negative steps)\n- ✅ Preserve data source information\n- ✅ Handle timezone conversion\n\n### Error Handling\n\n**File Read Failure**:\n- Output \"Unable to read file, please check file path and format\"\n- Provide correct file format examples\n- Suggest re-exporting data\n\n**API Call Failure**:\n- Output \"API call failed, please check network connection and credentials\"\n- Provide OAuth re-authentication guidance\n- Fall back to CSV import method\n\n**Data Validation Failure**:\n- Output \"Incorrect data format, skipped invalid records\"\n- Log number of skipped records\n- Continue processing valid data\n\n## Related Commands\n\n- `/health-trend`: Analyze health trends (using imported data)\n- `/sleep`: Record sleep data\n- `/diet`: Record diet data\n- `/fitness`: Record exercise data\n- `/profile`: Manage personal profile\n\n## Technical Implementation\n\n### Tool Limitations\n\nThis Skill only uses the following tools:\n- **Read**: Read external data files and configurations\n- **Grep**: Search data patterns\n- **Glob**: Find data files\n- **Write**: Save imported data to local JSON files\n\n### Python Dependencies\n\nPython packages potentially needed for import scripts:\n```python\n# Apple Health\nimport xml.etree.ElementTree as ET\nimport zipfile\n\n# Fitbit/Oura\nimport requests\n\n# Generic Import\nimport csv\nimport json\n```\n\n### Performance Optimization\n\n- Incremental reading: Only import data within specified time range\n- Data deduplication: Avoid importing duplicate data for same day\n- Batch writing: Save data in batches for better performance\n- Error recovery: Support resume from breakpoint\n\n## Usage Examples\n\n### Example 1: Import Apple Health Data\n**User**: \"Import fitness tracker data from Apple Health\"\n**Output**: Execute import workflow, generate import report\n\n### Example 2: Query Knowledge Base\n**User**: \"WellAlly platform articles about sleep\"\n**Output**: Return sleep-related knowledge base article links\n\n### Example 3: Get Personalized Recommendations\n**User**: \"Recommend articles based on my health data\"\n**Output**: Analyze health data, recommend relevant articles\n\n### Example 4: Import Generic CSV\n**User**: \"Import this CSV health data file health.csv\"\n**Output**: Parse CSV, map fields, save to local\n\n## Extensibility\n\n### Adding New Data Sources\n\n1. Create new integration guide in `integrations/` directory\n2. Create new import script in `scripts/` directory\n3. Update `data-sources.md` documentation\n4. Add usage instructions in SKILL.md\n\n### Adding New Knowledge Base Categories\n\n1. Create new category file in `knowledge-base/` directory\n2. Add related article links\n3. Update `knowledge-base/index.md`\n4. Update article recommendation mapping\n\n## Reference Resources\n\n- **WellAlly.tech**: https://www.wellally.tech/\n- **WellAlly Knowledge Base**: https://wellally.tech/knowledge-base/\n- **WellAlly Blog**: https://wellally.tech/blog/\n- **Apple HealthKit**: https://developer.apple.com/documentation/healthkit\n- **Fitbit API**: https://dev.fitbit.com/\n- **Oura Ring API**: https://cloud.ouraring.com/api/\n\n## FAQ\n\n**Q: Will imported data overwrite existing data?**\nA: No. Imported data will be appended to existing data, not overwritten. Duplicate data will be automatically deduplicated.\n\n**Q: Can I import data from multiple platforms?**\nA: Yes. You can import data from Apple Health, Fitbit, Oura, and other platforms simultaneously, the system will merge all data.\n\n**Q: Are WellAlly.tech knowledge base articles offline?**\nA: No. Knowledge base articles are referenced via URLs, requiring network connection to access the [WellAlly.tech](https://www.wellally.tech/) platform.\n\n**Q: Where are API credentials stored?**\nA: API credentials are encrypted and stored in local configuration files, not uploaded to any server.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["wellally","tech","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows"],"capabilities":["skill","source-sickn33","skill-wellally-tech","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/wellally-tech","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34404 github stars · SKILL.md body (19,449 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T00:51:58.384Z","embedding":null,"createdAt":"2026-04-18T21:47:29.748Z","updatedAt":"2026-04-22T00:51:58.384Z","lastSeenAt":"2026-04-22T00:51:58.384Z","tsv":"'-01':555,556,559,886,917,918,921,1060,1530,1531,1533 '-22':560,887,922,1061,1534 '/)':15,44,179,370,1042,1162,2074 '/api/':1993 '/blog/':1979 '/bp-lowering-strategies':1379 '/chronic-disease.md':1356 '/diabetes-management':1384 '/diet':1711 '/documentation/healthkit':1984 '/downloads/apple_health_export.zip':1455 '/fitness':1715 '/fitness.md':1304 '/health-trend':955,1700 '/hypertension-monitoring':1375 '/index.md':1959 '/knowledge-base/':1974 '/knowledge-base/chronic-disease/bp-lowering-strategies':676,1017,1095 '/knowledge-base/chronic-disease/hypertension-monitoring':653,994,1087 '/knowledge-base/chronic-disease/medication-adherence':1103 '/knowledge-base/fitness/active-lifestyle':1152 '/knowledge-base/sleep/sleep-hygiene':1124 '/knowledge-base/sleep/sleep-quality-improvement':1131 '/mental-health.md':1338 '/mindfulness':1403 '/nutrition.md':1287 '/profile':1719 '/sleep':1707 '/sleep.md':1321 '/stress-management':1399 '/wellally-tech':961 '0':870 '00':890,1064 '1':111,344,353,896,906,946,982,1080,1118,1146,1411,1460,1503,1822,1908,1939 '1200':548 '1234':543 '14':888,1062 '140/90':750 '142/92':1075 '2':144,362,392,691,981,1005,1088,1125,1417,1467,1510,1843,1916,1949 '2.1':402 '2.2':424 '2.3':462 '2.4':501 '2.5':526 '200':907 '2025':554,558,885,916,920,1059,1529,1532 '20kg':950 '234':897,1142 '3':181,373,564,938,1096,1425,1474,1515,1863,1924,1954 '3.1':576 '3.2':599 '3.3':635 '30':545,889,901,1063,1490 '4':211,382,693,1434,1479,1883,1928,1960 '4.1':702 '4.2':730 '4.3':818 '4.4':846 '5':1154,1444 '5.8':1113 '6':767 '8000':804,813 '9':1141 '90':550,911 'abnorm':949,1616 'access':1481,1513,1589,2069 'accuraci':207 'activ':807,1135,1148,1197,1249,1309 'ad':1904,1934 'add':1929,1950 'adher':1033,1099,1364 'analysi':217,223,1324 'analyz':731,743,761,780,957,1701,1876 'analyzehealthstatus':736 'antihypertens':1097 'api':125,132,1204,1458,1488,1501,1576,1581,1654,1658,1986,1990,2079,2083 'api/csv':1193 'app':1414,1462,1505 'append':2008 'appl':72,116,263,414,438,475,490,881,1180,1243,1251,1259,1266,1406,1767,1824,1833,1980,2035 'apple-health':413 'applehealthdata':441 'applerecord':481 'applerecord.sourcename':493 'applerecord.startdate':485 'applerecord.value':488 'appropri':429 'area':752,769,788,806 'articl':102,150,164,213,227,239,288,301,310,372,377,602,605,624,626,634,637,644,821,834,842,843,864,964,979,1046,1050,1079,1117,1156,1365,1850,1860,1869,1881,1952,1962,2054,2060 'articlemap':1370 'ask':2131 'attent':1065,1104 'authent':1477,1671 'author':1606 'automat':2018 'averag':749,765,803,810,1072,1110,1139 'avoid':1797 'back':1674 'base':17,46,91,147,165,218,238,286,302,309,321,365,378,432,566,575,608,616,967,972,1052,1164,1278,1280,1286,1303,1320,1337,1355,1846,1859,1870,1937,1947,1958,1971,2053,2059 'bash':1452,1485,1493,1523,1540 'basic':1121 'batch':1804,1809 'best':1307 'better':1811 'blog':1976 'blood':317,666,669,683,744,753,1003,1006,1020,1067,1073,1089 'bloodpressur':717 'bottom':1428 'boundari':2139 'breakpoint':1818 'call':1655,1659 'cardiovascular':1030 'care':1362 'cat':628 'cat.keywords.includes':631 'cat.tags.includes':629 'categor':149 'categori':234,654,677,987,1010,1938,1942 'chang':688 'check':319,508,514,1639,1662 'choos':1441 'chronic':157,594,655,678,988,1011,1350,1373,1377,1382 'chronic-diseas':593,1372,1376,1381 'clarif':2133 'claude/skills/wellally-tech/knowledge-base/index.md':621 'clear':2106 'click':1035 'client':1469,1472 'cloud.ouraring.com':1992 'cloud.ouraring.com/api/':1991 'code':1584 'command':1699 'complet':205,1439 'concern':740,830 'concern.condition':836,839 'concern.severity':841 'condit':233,246,757,773,792,838 'configur':1516,1547,1740,2091 'connect':10,39,82,265,1664,2067 'const':407,440,445,451,457,531,581,618,625,640,712,716,721,726,738,826,829,833,851,1369 'content':1167,1179,1236 'context':108 'continu':1694 'convers':185,466,1627 'convert':186 'copd':1361 'core':109 'corner':1424 'correct':518,1645 'count':1555 'creat':1461,1504,1909,1917,1940 'credenti':1582,1598,1666,2080,2084 'criteria':2142 'csv':128,275,420,1196,1213,1491,1496,1538,1676,1781,1886,1890,1897 'csv/json':77,138,456,1536 'current':1070,1108,1136 'custom':1218,1227 'daili':809,1134,1138 'data':8,19,37,48,68,85,95,99,114,134,169,182,188,197,202,210,222,256,261,273,277,284,306,322,326,333,340,355,357,381,383,390,393,401,404,427,434,463,469,502,507,512,515,706,711,737,873,876,879,913,923,959,1056,1168,1171,1173,1178,1220,1229,1231,1235,1250,1272,1312,1433,1484,1522,1571,1593,1607,1611,1622,1653,1679,1684,1697,1706,1710,1714,1718,1737,1743,1747,1752,1790,1795,1800,1807,1826,1831,1874,1878,1892,1906,1998,2001,2005,2011,2015,2024,2033,2048 'data-sources.md':1926 'data.blood':747 'data.blood_pressure.average':760 'data.sleep':764 'data.sleep.average':777 'data.steps':802 'data.steps.average':815 'data.weight':784 'data.weight.change':796 'data/blood-pressure':719 'data/fitness/activities.json':499,926,1247 'data/fitness/heart-rate.json':931,1255 'data/fitness/recovery.json':1270 'data/profile.json':715,928,1239 'data/sleep':724 'data/sleep/sleep-records.json':934,1263 'datasourc':408,534 'date':483,536,538,551,856,1527,1551,1552 'date-rang':1526 'daterang':448,454 'day':1489,1803 'dedupl':1796,2019 'default':944 'depend':1758 'depriv':775,1387 'describ':2110 'descript':658,681,808,995,1018 'determin':348,403 'dev.fitbit.com':1987 'develop':1465,1508 'developer.apple.com':1983 'developer.apple.com/documentation/healthkit':1982 'devic':268,492 'diabet':597,1028,1359,1380 'diet':1283,1294,1713 'dietari':1288,1297 'differ':200,335 'digit':6,30,35,112 'direct':173 'directori':1915,1923,1948 'diseas':158,595,656,679,989,1012,1351,1374,1378,1383 'disord':1329 'document':1927 'driven':104 'duplic':1799,2014 'durat':766,778,1112 'e.g':1618 'effect':662,999 'elev':1077 'encrypt':1599,2086 'end':557 'ensur':204,517 'environ':2122 'environment-specif':2121 'error':524,1628,1813 'et':1772 'etc':598 'exampl':474,1548,1648,1820,1821,1842,1862,1882 'except':1575 'execut':341,1836 'exercis':1300,1305,1311,1717 'exist':2000,2010 'expert':2127 'explicit':1604 'export':78,119,1409,1430,1437,1447,1652 'exportpath':443 'extens':1903 'extern':187,339,359,389,426,468,1170,1573,1736 'fail':1660 'failur':1632,1656,1681 'fall':1673 'faq':1994 'featur':110 'fetchfitbitdata':447 'fetchouradata':453 'field':142,193,198,510,1216,1225,1899 'file':121,139,278,497,1182,1214,1223,1232,1233,1449,1630,1637,1640,1646,1738,1748,1756,1893,1943,2092 'filepath':460 'filter':1615 'find':366,603,622,1746 'findarticlesforcondit':835 'fit':153,282,588,1299,1829 'fitbit':74,123,267,416,444,1192,1245,1253,1261,1268,1456,1464,1985,2037 'fitbit/oura':1775 'fitbit_export.csv':1497 'fitbitdata':446 'flow':1478 'follow':254,1567,1732 'food':1291 'format':184,192,472,520,872,1643,1647,1685 'formatdatetim':484 'found':690,980 'full':1045,1166 'function':479,505,611,735,823 'gain':794,1391 'generat':527,847,853,1057,1839 'generic':136,419,422,455,1212,1221,1535,1778,1885 'generic-csv':418 'generic-json':421 'genericdata':458 'get':374,1468,1511,1864 'glob':718,723,1745 'good':741,799,1143 'grep':1741 'guid':1100,1405,1912 'guidanc':1672 'guidelin':1290 'handl':1625,1629 'hardcod':1580 'health':7,26,31,36,55,67,73,84,98,107,113,117,156,168,215,221,232,241,260,264,276,296,305,325,332,360,380,415,439,476,491,592,705,710,732,858,882,1031,1055,1181,1219,1228,1244,1252,1260,1267,1317,1334,1346,1398,1402,1407,1413,1432,1702,1768,1825,1834,1873,1877,1891,2036 'health-data':97 'health.csv':1894 'health_data.csv':1543 'healthkit':118,1981 'healthstatus':825,860 'healthstatus.concerns':832 'heart':546,903,932,1188,1198,1209,1256,1559,1562 'high':756,1394 'histori':729,930,1242 'hour':779,1114 'hygien':1120,1332 'hypertens':290,596,646,758,977,983,1081,1357,1371 'icon':1420 'id':1470 'identifi':345,577,798 'identifysourc':409 'identifytop':583 'implement':1724 'import':20,49,64,96,115,129,137,140,209,257,258,274,281,338,354,356,388,394,400,430,528,535,541,874,877,883,891,958,1176,1183,1215,1224,1408,1450,1483,1492,1519,1521,1537,1539,1592,1601,1610,1677,1705,1751,1764,1769,1773,1776,1779,1780,1782,1789,1798,1823,1828,1837,1840,1884,1888,1919,1997,2004,2023,2032 'importreport':532 'improv':315,682,1019,1107,1126,1326 'incorrect':1683 'increas':786 'increment':1786 'index':151,609,617 'inform':1624 'input':2136 'instruct':244,1931 'insuffici':1115 'integr':4,32,33,126,148,331,1404,1457,1459,1500,1502,1911,1914 'intellig':160,195,212,694,1047 'intent':347 'interpret':1313,1344 'invalid':1687 'involv':94 'iphon':1416 'javascript':406,437,473,504,530,580,610,639,707,734,822,850,1368 'json':191,423,720,725,1222,1550,1755,1783 'kbindex':619 'kbindex.categories.filter':627 'keep':1132 'kg':797,1558 'knowledg':16,22,45,51,90,146,237,285,308,320,364,565,574,607,615,966,971,1163,1277,1279,1285,1302,1319,1336,1354,1845,1858,1936,1946,1957,1970,2052,2058 'knowledge-bas':1284,1301,1318,1335,1353,1945,1956 'learn':659,996 'level':685,1022 'lifestyl':687,1024,1149 'like':71 'limit':1726,2098 'link':174,638,991,1014,1036,1861,1953 'local':190,471,496,1230,1595,1754,1902,2090 'log':1689 'lower':671,1008,1091 'maintain':1147 'manag':27,56,100,159,297,323,384,387,649,657,665,680,978,986,990,1002,1013,1029,1069,1084,1289,1340,1352,1360,1720 'map':143,194,196,464,467,478,1217,1226,1238,1367,1544,1546,1898,1964 'mapapplehealthstep':480 'mappeddata':500 'mapping_config.json':1545,1549 'mappingconfig':461 'match':225,623,2107 'materi':299 'medic':1032,1098,1363 'medium':772,791 'mental':155,591,1333,1345,1397,1401 'mental-health':590,1396,1400 'mention':252 'merg':2046 'method':1177,1443,1678 'mind':1348 'miss':941,2144 'mmhg':1076 'modif':1025 'monitor':647,663,984,1000,1082,1358 'mood':1342 'multipl':5,34,2026 'must':1566 'navig':235 'need':62,1066,1105,1298,1762 'negat':1619 'network':1663,2066 'new':537,855,1905,1910,1918,1935,1941 'next':952 'normal':66 'number':1690 'nutrit':152,587,1282,1292 'nutrition/calorie-management':1393 'nutrition/diabetic-diet':1385 'nutrition/healthy-diet':1392 'oauth':1476,1597,1668 'oauth2':124,1194,1205 'offlin':2055 'open':1412 'optim':1785 'organ':236 'oura':75,130,271,417,449,1202,1246,1254,1262,1269,1273,1498,1507,1988,2038 'ouradata':452 'output':871,875,969,1049,1633,1657,1682,1835,1853,1875,1895,2116 'overview':1330 'overwrit':1999 'overwritten':2013 'packag':1760 'pars':122,1185,1896 'parseint':487 'path':1234,1641 'pattern':742,800,1744 'perform':1784,1812 'permiss':2137 'person':25,54,83,700,963,1512,1721,1865 'plan':1315 'platform':180,201,293,336,361,1043,1466,1509,1849,2027,2041,2075 'pleas':1638,1661 'possibl':411,585 'potenti':1761 'practic':1308,1349 'preserv':1621 'pressur':318,667,670,684,745,748,754,1004,1007,1021,1068,1074,1090 'privaci':1565 'process':1695 'profil':713,1240,1419,1722 'profile.weight':728 'provid':18,47,172,1644,1667 'python':1453,1486,1494,1524,1541,1757,1759,1766 'q':1995,2020,2049,2076 'qualiti':1128,1323 'queri':287,363,567,573,578,968,1293,1844 'r':867 'r.articles.length':869 'rang':516,552,915,1528,1614,1794 'rate':547,904,933,1189,1199,1210,1257,1560,1563 're':1651,1670 're-authent':1669 're-export':1650 'read':298,425,614,703,708,1145,1631,1636,1734,1735,1787 'readapplehealthexport':442 'readfil':620,714 'readgenericfil':459 'readi':1208,1275 'recommend':103,161,162,214,226,294,300,375,376,695,701,819,827,845,848,861,862,965,1048,1051,1078,1116,1157,1295,1310,1366,1866,1868,1879,1963 'recommendarticl':824 'recommendationreport':852 'recommendations.push':837 'recommendations.reduce':865 'record':540,892,895,898,900,902,905,908,910,912,940,948,1258,1265,1688,1693,1708,1712,1716 'recoveri':1271,1814 'refer':23,52,171,1965 'referenc':2062 'relat':371,1026,1144,1155,1698,1857,1951 'relev':163,224,229,601,604,709,820,1880 'report':529,849,1841 'request':1777 'requir':509,2065,2135 'resourc':1347,1966 'rest':1561 'result':641,974 'resum':1816 'return':412,482,521,586,633,636,816,844,1854 'review':2128 'right':1423 'ring':131,272,450,1203,1274,1499,1989 'run':1475 'safeti':2138 'save':494,924,1445,1750,1806,1900 'savetolocalfil':498 'scenario':255 'scope':2109 'script':431,1520,1765,1920,1922 'scripts/import_apple_health.py':1454 'scripts/import_fitbit.py':1487,1495 'scripts/import_generic.py':1542 'scripts/import_oura.py':1525 'scroll':1426 'search':600,973,975,1742 'searchknowledgebas':612 'secret':1473 'secur':1564 'server':1574,2097 'sever':755,771,790,840 'share':1442,1587 'simultan':2042 'skill':249,1728,2101 'skill-wellally-tech' 'skill.md':1933 'skip':951,1686,1692 'sleep':154,312,549,589,762,770,774,909,935,1106,1111,1119,1127,1190,1200,1206,1264,1316,1322,1325,1328,1331,1386,1709,1852,1856 'sleep-rel':1855 'sleep/sleep-hygiene':1388 'sleep/sleep-quality-improvement':1389 'sleeprecord':722 'sourc':9,38,70,327,405,435,489,533,880,1169,1172,1174,1237,1623,1907 'source-sickn33' 'special':1296 'specif':2123 'specifi':1792 'stage':1207 'standard':183 'start':553 'statist':893 'status':216,733,739,817,859,1071,1109,1137 'status.concerns.push':751,768,787 'status.good_patterns.push':805 'step':342,343,391,477,486,542,563,692,811,894,927,939,953,1140,1186,1248,1410,1451,1553,1554,1620 'stop':2129 'storag':1600 'store':1480,1594,2081,2088 'strategi':672,1009,1092,1327 'stress':1339,1395 'structur':1281 'substitut':2119 'success':878,2141 'suggest':1649 'sum':866,868 'summari':1153 'support':1815 'sync':269,1577 'synchron':135 'system':28,57,2044 'tap':1418,1429 'task':93,2105 'tech':3 'technic':1723 'techniqu':1341 'test':2125 'time':519,884,914,1058,1793 'timestamp':942 'timezon':1626 'tip':1034 'titl':645,668 'toisostr':539,857 'token':1482,1514,1517,1590 'tool':1725,1733 'top':1422 'topic':242,579,582,613,630,632,642,643,976,1027 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'total':689,863 'track':1306,1343 'tracker':1830 'tracker/smartwatch':283 'train':1314 'treat':2114 'trend':782,785,1703 'trigger':245 'true':523 'type':436,513,1175,1612 'unabl':1634 'updat':1925,1955,1961 'upload':1570,2094 'url':170,650,673,2064 'usag':243,1819,1930 'use':60,247,428,943,954,960,1704,1730,2099 'user':106,167,220,231,251,346,351,397,570,698,704,1588,1605,1827,1847,1867,1887 'userinput':410,584 'v2':133 'valid':203,503,511,522,561,936,1608,1609,1680,1696,2124 'validateimporteddata':506 'validationresult':562 'valu':759,776,795,814,945,1617 'variabl':1211 'via':2063 'view':337,385 'visit':1038,1158 'wait':1435 'want':80,352,398,571,699 'warn':525,937 'weight':544,781,789,793,899,929,947,1187,1201,1241,1390,1556,1557 'weighthistori':727 'wellal':2,29,292,307,970,1848,1969,1975 'wellally-tech':1 'wellally.tech':12,41,89,145,176,367,652,675,993,1016,1039,1086,1094,1102,1123,1130,1151,1159,1276,1967,1973,1978,2051,2071 'wellally.tech/blog/':1977 'wellally.tech/knowledge-base/':1972 'wellally.tech/knowledge-base/chronic-disease/bp-lowering-strategies':674,1015,1093 'wellally.tech/knowledge-base/chronic-disease/hypertension-monitoring':651,992,1085 'wellally.tech/knowledge-base/chronic-disease/medication-adherence':1101 'wellally.tech/knowledge-base/fitness/active-lifestyle':1150 'wellally.tech/knowledge-base/sleep/sleep-hygiene':1122 'wellally.tech/knowledge-base/sleep/sleep-quality-improvement':1129 'within':1791 'workflow':86,395,568,696,1838 'workout':1191 'write':1749,1805 'www.wellally.tech':14,43,178,369,1041,1161,1968,2073 'www.wellally.tech/)':13,42,177,368,1040,1160,2072 'xml.etree.elementtree':1770 'xml/zip':120,1184 'yes':2029 'zip':1448 'zipfil':1774","prices":[{"id":"9e4e794e-2b7e-4c2b-af41-4f08801d2f3a","listingId":"f02fca16-00d9-4dc1-b5ea-2126776e7731","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:47:29.748Z"}],"sources":[{"listingId":"f02fca16-00d9-4dc1-b5ea-2126776e7731","source":"github","sourceId":"sickn33/antigravity-awesome-skills/wellally-tech","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/wellally-tech","isPrimary":false,"firstSeenAt":"2026-04-18T21:47:29.748Z","lastSeenAt":"2026-04-22T00:51:58.384Z"}],"details":{"listingId":"f02fca16-00d9-4dc1-b5ea-2126776e7731","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"wellally-tech","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34404,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-21T16:43:40Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"e70dd3ebe838cd7a96f69700bebb3f30293d80ac","skill_md_path":"skills/wellally-tech/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/wellally-tech"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"wellally-tech","description":"Integrate multiple digital health data sources, connect to [WellAlly.tech](https://www.wellally.tech/) knowledge base, providing data import and knowledge reference for personal health management systems."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/wellally-tech"},"updatedAt":"2026-04-22T00:51:58.384Z"}}