Getting Started
Choose your path:
- I Want to Explore - Learn what healing applications look like
- I Want to Add Healing to My Existing Project - Analyze and enhance your app, game, or website
- I Want to Build - Set up your environment and create new healing tools
I Want to Explore
What Healing Applications Look Like
The Healing Swarm creates applications that combine:
Traditional Wisdom
- Practices documented across cultures and centuries
- Proper attribution to source traditions
- Context preserved, not stripped
Clinical Evidence
- Research summaries with appropriate confidence levels
- "May help" language, never "will cure"
- Limitations acknowledged
Ethical Guardrails
- Medical disclaimers where needed
- Psychological safety (grounding techniques, exit ramps)
- Accessibility for all users
Example: 5-Minute Breathing Meditation
Here's what the swarm produces—a complete meditation script:
# 5-Minute Calm Breath
Type: Guided Breathing Meditation
Duration: 5 minutes
Tradition: Adapted from yogic pranayama principles
Evidence Level: Moderate
---
## Before You Begin
Find a comfortable position. This practice is gentle
and you can stop at any time.
Note: If you have respiratory conditions, consult
your healthcare provider before practicing.
---
## The Practice
### Settling In (30 seconds)
Let your eyes close gently. Take a moment to arrive.
There's nothing to do right now except be here.
### Natural Breath (1 minute)
Simply notice your natural breath. You don't need
to change anything. Just observe.
### Extending the Exhale (2.5 minutes)
Inhale through your nose for a count of 4.
Hold gently for a count of 7.
Exhale slowly through your mouth for a count of 8.
Repeat 3-4 times.
### Returning (1 minute)
Let your breath return to its natural rhythm.
When ready, let your eyes open gently.
---
## Disclaimer
This practice is for informational purposes only and
does not replace professional medical or psychological care.
Notice the elements:
- Medical disclaimer at start and end
- Permission to stop built in
- Tradition named with era
- Evidence language appropriate to confidence level
- Grounding technique (lightheadedness guidance)
See the full example with research and quality review
I Want to Add Healing to My Existing Project
Have an app, website, game, or narrative that could be more healing? The HEAL Assessment analyzes your codebase and recommends where to add wellness properties.
The HEAL Framework
| Letter | Looks For | Examples |
|---|---|---|
| H | Harsh Interactions | Cold error messages, abrupt rejections, punishing feedback |
| E | Emotional Blind Spots | Missing acknowledgments, no celebration, cold confirmations |
| A | Accessibility Gaps | Keyboard traps, missing labels, poor contrast, no screen reader support |
| L | Lost Opportunities | Places where breathing space, pacing, or encouragement could exist |
Quick Start
Step 1: Run the Analysis
In your project directory:
claude -p "Using the healing-swarm project analysis skill, perform a
HEAL assessment of this codebase. Focus on error handling, user
feedback, loading states, forms, and accessibility. Provide a
prioritized report with specific files and recommendations."
Step 2: Review Recommendations
The analysis returns:
- Severity levels (Critical, High, Medium, Low)
- Specific file locations and line numbers
- Current problematic patterns
- Recommended healing integrations
- Implementation difficulty estimates
Step 3: Implement High-Impact Changes
Start with critical and high-severity findings:
| Finding | Solution |
|---|---|
| Harsh error messages | Use Gentle Errors pattern |
| Missing breathing room | Add Breathing Spaces |
| Cold confirmations | Use Mindful Interactions |
| Accessibility issues | Apply Accessibility Healing |
By Project Type
| Project Type | Start With | Key Patterns |
|---|---|---|
| Web Apps | Gentle Errors | UI Wellness, Ethical Data |
| Mobile Apps | Project Analysis | Breathing Spaces, Accessibility |
| Video Games | Game Healing | Adaptive difficulty, restorative spaces |
| Interactive Stories | Narrative Healing | Safe spaces, emotional pacing |
| Apps with Engagement | Healing Gamification | Compassionate streaks, meaningful progress |
Example: Transforming an Error State
Before:
{error && <p className="error">{error}</p>}
After:
import { GentleError } from '@/components/integration';
{error && (
<GentleError
message="Something unexpected happened"
explanation={error}
suggestions={['Try again', 'Contact support']}
tone="apologetic"
/>
)}
Next Steps for Upgrading
- Full Project Analysis Guide - Detailed prompts and templates
- Integration Patterns - All available healing patterns
- Components Reference - Drop-in React components
I Want to Build
Prerequisites
| Requirement | Minimum Version | Check Command |
|---|---|---|
| Node.js | 18.0.0+ | node --version |
| Git | 2.30.0+ | git --version |
| Claude Code | Latest | claude --version |
Installation
Step 1: Clone the Repository
git clone https://github.com/realsammyt/healing-swarm-skills.git
cd healing-swarm-skills
Step 2: Install Dependencies
npm install
Step 3: Validate Installation
npm run validate
You should see:
Validating skill structure...
Checking ethics guardrails...
Verifying workflows...
All 44 skill files validated successfully
Step 4: Copy Skills to Claude Code
macOS/Linux:
cp -r .claude/skills/healing-swarm ~/.claude/skills/
Windows (PowerShell):
Copy-Item -Recurse .claude\skills\healing-swarm $env:USERPROFILE\.claude\skills\
Step 5: Verify Skills
Open Claude Code and type /. You should see:
/healing-research/healing-design/healing-content/healing-build/healing-review/healing-deploy/healing-swarm
Your First Skill
Try the research skill:
claude> /healing-research "breathwork for stress relief"
Watch how it:
- Parses your query
- Coordinates multiple research agents
- Produces a comprehensive research brief
- Applies ethics review
Create Your Own Skill
npm run create-skill
The interactive CLI walks you through:
- Skill name and trigger
- Which template to use
- Agent configuration
- Workflow setup
Validate Your Changes
Before committing:
npm run validate
npm run check:ethics
Next Steps
For Explorers
For Project Upgraders
- Full Project Analysis Guide - HEAL assessment details
- Integration Patterns Reference - All available patterns
- Game Healing - For game projects
- Narrative Healing - For interactive stories
For Builders
- Read the full setup guide (GitHub docs/SETUP.md)
- Creating Skills Guide (GitHub docs/guides/creating-skills.md)
- Architecture Overview
- Contributing Guide
Getting Help
- Questions: Open a Discussion on GitHub
- Bugs: Open an Issue on GitHub
- Security: Email maintainers directly
- Ethics Questions: Contact the ethics-guardian team
"The setup is the first step on the healing path. Welcome to the swarm."