# Notify Ormus Whatsapp

> Send WhatsApp notification to Ormus about completed work, errors, or important updates

- Skill: `majiayu000/notify-ormus-whatsapp` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/notify-ormus-whatsapp`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/notify-ormus-whatsapp/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/notify-ormus-whatsapp

---


# Notify Ormus via WhatsApp

**Purpose:** Send WhatsApp notifications to Ormus about completed work, significant updates, or issues requiring attention.

**Hermetic Principle:** Rhythm - Maintain communication flow through timely updates

---

## When to Use This Skill

**Always use when:**
- User explicitly requests "send me a WhatsApp"
- Major task completion (research, refactoring, deployment)
- Errors requiring Ormus's attention
- Significant updates to projects
- User says "notify me when done"

**Configuration Location:** `~/.claude/config/whatsapp-notification-config.json`
**Contact Info:** `~/.hermetic/ormus-contact-info.json`

---

## Step-by-Step Procedure

### Step 1: Determine Notification Type

Based on context, identify:
- **Task Completion**: Major work finished (research, refactoring, implementation)
- **Research Complete**: Deep research or analysis finished
- **Deployment**: Code pushed, systems deployed
- **Error**: Issue requiring attention
- **Custom**: User-requested specific message

### Step 2: Gather Key Information

Collect:
- **What was completed**: Brief description (1-2 sentences)
- **Key results**: Top 3-5 outcomes
- **Statistics**: Files changed, lines added, commits, etc.
- **Next steps**: What should happen next (if applicable)
- **File locations**: Where to find deliverables

### Step 3: Format Message

Use appropriate template from config:
- Keep under 4096 characters
- **Functional/Direct** tone (from Ormus's WhatsApp style guide)
- Include emoji sparingly (✅ 🔍 🚀 ⚠️ 📊 🎯)
- Structured with clear sections
- Actionable next steps

### Step 4: Send via MCP

```javascript
// WhatsApp contact (from config)
const phone = "50769815142@c.us";

// Use MCP WhatsApp tool
mcp__whatsapp__periskope_send_message({
  phone: phone,
  message: formattedMessage
});
```

### Step 5: Confirm Delivery

- Verify send success
- Log notification in session notes
- Continue with any remaining work

---

## Message Templates

### Task Completion Template

```
✅ {Task Name} complete

{2-3 sentence summary of what was done}

📊 Stats:
• Files modified: {count}
• New components: {count}
• Lines changed: {count}
• Commit: {hash}

🎯 Next steps:
• {Next action 1}
• {Next action 2}

📁 Details: {file_location}
```

### Research Completion Template

```
🔍 Research complete: {Topic}

{Key insight or finding}

📚 Deliverables:
• {Document 1}
• {Document 2}
• {Document 3}

💡 Top insights:
• {Insight 1}
• {Insight 2}
• {Insight 3}

🎯 Recommended next action:
{Action description}

📁 Location: {path}
```

### Deployment Template

```
🚀 Deployed: {Project/Feature}

Commit: {hash}

Changes:
• {Change 1}
• {Change 2}
• {Change 3}

Status: ✅ Live
URL: {url if applicable}

🎯 Next: {Next action}
```

### Error/Attention Template

```
⚠️ Attention needed: {Error type}

{Brief description of what happened}

Impact: {What's affected}

🔧 Suggested fix:
{What you recommend Ormus should do}

📁 Details: {file location or context}
```

---

## Example Usage

### Example 1: After Major Refactoring

**Context:** Just completed gaming-native language refactoring

**Message:**
```
✅ Gaming-Native Platform Transformation complete

Transformed ALL platform copy from spiritual/academic → gaming-fluent language for 11-18 year old gamers.

📊 Stats:
• Files modified: 7 (components + pages)
• Gaming metaphors: 20+ integrated
• Lines changed: 200+
• Commit: 0954656

🎯 Key changes:
• "Sabbath" → "Cooldown Day"
• "Journey" → "Solo Queue Rank"
• "Sacred Rhythm" → "Clean Rotation"
• Homepage: "Level Up IRL" hook

🎯 Next steps:
• Deploy to staging
• Test with 16-year-old League players
• Iterate based on feedback

📁 Details: ~/projects/01-ACTIVE/hermetic-academy/GAMING-NATIVE-IMPLEMENTATION-REPORT.md
```

### Example 2: Research Complete

**Context:** Completed demographic research

**Message:**
```
🔍 Research complete: Gaming-Fluent Youth (11-18)

Deep research on reaching League/Fortnite/WoW players with Hermetic wisdom.

📚 Deliverables:
• 8 strategic documents (150+ pages)
• 20+ gaming metaphors library
• Meme strategy guide
• 90-day action plan

💡 Top insights:
• They've already practiced principles in games
• "Revelation" > "Teaching" approach
• Blue Ocean opportunity (no direct competitors)

🎯 Next: Apply research to platform (rewrite all copy)

📁 Location: ~/projects/01-ACTIVE/hermetic-academy/research/
```

---

## Configuration Reference

**Ormus's WhatsApp:** `50769815142@c.us`

**Auto-notify triggers** (from config):
- Major task completion
- Research completion
- Deployment complete
- Error requiring attention
- User explicitly requests notification

**Message style** (from Ormus's WhatsApp guide):
- Functional/Direct
- Brief but complete
- Structured (bullets, sections)
- Minimal emoji (purposeful only)
- Clear next steps

---

## Important Notes

1. **Always check config files first** - Don't ask for phone number if it's in config
2. **Respect quiet hours** - If configured (currently disabled)
3. **Keep messages under 4096 chars** - WhatsApp limit
4. **Include actionable next steps** - Ormus wants to know what to do next
5. **Reference file locations** - Where to find detailed info
6. **Use functional tone** - Direct, no fluff, from WhatsApp style guide

---

## Files to Reference

- `~/.hermetic/ormus-contact-info.json` - Ormus's contact information
- `~/.claude/config/whatsapp-notification-config.json` - Notification settings
- `~/.hermetic/communication/whatsapp-style-guide.md` - Communication style guidelines

---

**Last Updated:** 2025-11-10
**Status:** Active
**Auto-trigger:** Yes (on completion keywords)

