skills/hive_mind/SKILL.md
# Hive Mind — Shared Memory System The Hive Mind is the team's shared knowledge base stored in Redis. All agents can read from it. All agents can submit lessons to it. Only the Lexi curates and distributes knowledge. ## How to Use ### Reading Knowledge (All Agents) Search the hive mind for lessons relevant to your current task: ```bash python3 /app/skills/hive_mind/hive_search.py --query "your search terms" --agent "your_name" ``` This searches across all categories using keyword matching
npx skillsauth add garrettroi/open-manus skills/hive_mindInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The Hive Mind is the team's shared knowledge base stored in Redis. All agents can read from it. All agents can submit lessons to it. Only the Lexi curates and distributes knowledge.
Search the hive mind for lessons relevant to your current task:
python3 /app/skills/hive_mind/hive_search.py --query "your search terms" --agent "your_name"
This searches across all categories using keyword matching and returns the most relevant lessons. Always do this before starting a new task (see Boot Instructions in your SOUL.md).
Check your personal knowledge feed for lessons the Lexi has routed to you:
python3 /app/skills/hive_mind/hive_feed.py --agent "your_name"
When you discover something useful during a task, submit it to the Lexi for review:
python3 /app/skills/hive_mind/hive_submit.py --agent "your_name" --title "Short descriptive title" --content "The full lesson content" --tags "tag1,tag2,tag3"
Tags should include relevant categories like: sales, real_estate, dj, photo_booth, cana, marketing, social_media, ads, automation, finance, client_relations, content, research.
Review the intake queue:
python3 /app/skills/hive_mind/hive_review.py --action list
Approve and distribute a lesson (after Garrett's approval in Discord):
python3 /app/skills/hive_mind/hive_review.py --action approve --lesson-id "LESSON_ID" --targets "agent1,agent2" --adapted-content "Optional reframed content for specific agents"
Update an existing lesson instead of creating a new one:
python3 /app/skills/hive_mind/hive_review.py --action update --lesson-id "EXISTING_LESSON_ID" --content "Updated content that merges old and new information"
Archive a lesson (remove from active distribution):
python3 /app/skills/hive_mind/hive_review.py --action archive --lesson-id "LESSON_ID"
Reject a submission with feedback:
python3 /app/skills/hive_mind/hive_review.py --action reject --lesson-id "LESSON_ID" --reason "Why it was rejected"
See what skills are available to a specific agent:
python3 /app/skills/hive_mind/skill_registry.py --action list --agent "agent_name"
See all skills across all agents:
python3 /app/skills/hive_mind/skill_registry.py --action list-all
| Key Pattern | Purpose |
|---|---|
| hive:inbox:librarian | Lexi's intake queue (new submissions) |
| hive:lessons:{lesson_id} | Individual lesson entries |
| hive:feed:{agent_name} | Per-agent knowledge feed (approved lessons) |
| hive:goals:{agent_name} | Agent's organizational goals (for matching) |
| hive:skills:{agent_name} | Skills assigned to this agent |
| hive:skills:registry | Master skill registry |
| hive:archive | Archived/retired lessons |
This tool allows Valentina to push new skills and tools to a centralized Redis Skill Store, which are then automatically pulled by all other agents on startup.
When you create a new tool or skill in a directory, push it to the shared store:
python3 /app/skills/hive_mind/skill_sync.py --action push --path /path/to/your/skill_dir
If you want to sync your own local skill directory with the latest from the store:
python3 /app/skills/hive_mind/skill_sync.py --action pull --target /root/.hermes/skills
/root/.hermes/skills/my_new_tool).This tool allows Valentina, Victoria, and Vivian to stay "joined at the hip" by sharing real-time technical context without redeploys.
When you make a significant change or reach a milestone, log it:
python3 /app/skills/hive_mind/project_memory.py --action log --agent "your_name" --content "Implemented the new Redis sync layer."
Before starting your work, pull the latest updates from your cluster:
python3 /app/skills/hive_mind/project_memory.py --action get --limit 10
skill_sync.py to push it to the store.development
# Voice Sanitizer This skill cleans up text before it is sent to the Text-to-Speech (TTS) engine. It removes technical jargon, code blocks, and long URLs to ensure the agent sounds natural and conversational in voice chat. ## Usage To sanitize text for speech, run the following command in the terminal: ```bash python3 /app/skills/voice_sanitizer/sanitizer.py "Your long, technical text with `code` and https://links.com/long-url" ``` ### Example Output ```text Your long, technical text with a
tools
Professional AI video production workflow. Use when creating videos, short films, commercials, or any video content using AI generation tools.
tools
Secure API key access from the centralized vault. Fetch keys on-demand without storing them in environment variables.
testing
# Task Board — Persistent Task Tracking for Open Manus This skill provides a shared task board backed by Redis. Harmony uses it to track delegated work across all agents, and agents use it to report progress and completion. ## When to Use - **Harmony**: Use this whenever you delegate a task to an agent. Add the task to the board, then check the board periodically to follow up. - **Worker Agents**: Use this to update your task status or mark tasks as complete. ## Commands ### Add a new task