# ๐Ÿ›ฃ๏ธ GreenLight Quick Reference for Claude Agents **One-page cheat sheet for using GreenLight in BlackRoad memory system** --- ## ๐Ÿš€ Quick Start ```bash # Load GreenLight templates source ~/memory-greenlight-templates.sh # Announce work gl_announce "claude-yourname" "Project Name" "1) Task 2) Task 3) Task" "Big Goal" "๐ŸŽข" "๐Ÿ”ง" "โญ" # Update progress gl_progress "claude-yourname" "What you finished" "What's next" "๐Ÿ‘‰" "๐Ÿ”ง" # Log deployment gl_deploy "service-name.blackroad.io" "https://url" "Details" "๐Ÿ‘‰" "๐Ÿ”ง" ``` --- ## ๐Ÿ“Š Common GreenLight Patterns ### For Announcements ``` ๐ŸŽฏ๐ŸŽข๐Ÿ›ฃ๏ธ๐Ÿ”ฅ = Targeted macro platform project, fire priority ๐ŸŽฏ๐Ÿ‘‰๐ŸŒ€โญ = Targeted micro AI task, high priority ๐ŸŽฏ๐ŸŽข๐Ÿ”ง๐Ÿ“Œ = Targeted macro infra project, medium priority ``` ### For Progress ``` โœ…๐Ÿ‘‰๐Ÿ›ฃ๏ธ = Done micro platform task โœ…๐ŸŽข๐Ÿ”ง = Done macro infra project ๐Ÿšง๐Ÿ‘‰๐ŸŒ€ = WIP micro AI task ``` ### For Coordination ``` ๐Ÿคโญ๐Ÿ’ฌ = Coordinate high priority ๐Ÿค๐Ÿ“Œ๐Ÿ’ฌ = Coordinate medium priority ``` ### For Blocking ``` ๐Ÿ”’๐Ÿ”ฅโ›” = Blocked fire priority ๐Ÿ”’โญโ›” = Blocked high priority ``` ### For Deployment ``` ๐Ÿš€๐Ÿ‘‰๐Ÿ”งโœ… = Deployed micro infra, done ๐Ÿš€๐ŸŽข๐Ÿ›ฃ๏ธโœ… = Deployed macro platform, done ``` --- ## ๐ŸŽฏ Phase Markers Use these for project phases: | Emoji | Phase | When to Use | |-------|-------|-------------| | ๐ŸŒฑ | DISCOVERY | Researching, exploring, learning | | ๐Ÿ“ | PLANNING | Designing, architecting, strategy | | ๐Ÿ”จ | IMPLEMENTATION | Building, coding, executing | | ๐Ÿงช | TESTING | QA, validation, verification | | ๐Ÿš€ | DEPLOYMENT | Shipping, launching, releasing | | ๐Ÿ“Š | MONITORING | Observing, measuring, optimizing | | ๐Ÿ”„ | ITERATION | Improving, refining, evolving | **Examples:** ```bash gl_phase_start "planning" "API Service" "Designing endpoints" "๐ŸŽข" gl_phase_done "implementation" "Frontend" "All components built" "๐ŸŽข" ``` --- ## ๐ŸŽจ Scale Indicators | Emoji | Scale | Use For | |-------|-------|---------| | ๐Ÿ‘‰ | MICRO | Single task, commit, bug fix | | ๐ŸŽข | MACRO | Project, sprint, feature | | ๐ŸŒ | PLANETARY | System, infrastructure, org-wide | | ๐ŸŒŒ | UNIVERSAL | Cross-org, federation, external | --- ## ๐Ÿท๏ธ Domain Tags **Most Common:** | Emoji | Domain | Use For | |-------|--------|---------| | ๐Ÿ›ฃ๏ธ | PLATFORM | Core BlackRoad OS | | ๐ŸŒ€ | AI | Lucidia, agents, ML | | โ›“๏ธ | CHAIN | RoadChain, blockchain | | ๐Ÿ’Ž | COIN | RoadCoin, tokens | | ๐Ÿ”ง | INFRA | Infrastructure, DevOps | | ๐ŸŽจ | CREATIVE | Design, art | | ๐Ÿ“Š | DATA | Analytics, BI | | ๐Ÿ”’ | SECURITY | Auth, encryption | --- ## โšก Priority Levels | Emoji | Priority | When | |-------|----------|------| | ๐Ÿ”ฅ | FIRE (P0) | DROP EVERYTHING | | ๐Ÿšจ | URGENT (P1) | Today | | โญ | HIGH (P2) | This week | | ๐Ÿ“Œ | MEDIUM (P3) | This sprint | | ๐Ÿ’ค | LOW (P4) | Someday | | ๐ŸงŠ | ICE (P5) | Frozen | --- ## ๐Ÿค– Agent Identities | Emoji | Agent | Role | |-------|-------|------| | ๐ŸŒธ | CECE | Primary reasoning (Claude) | | ๐Ÿ”ฎ | LUCIDIA | Recursive AI | | ๐Ÿ‡ | ALICE | Edge agent (Pi) | | ๐ŸŽธ | SILAS | Creative (Grok) | | ๐ŸŒ™ | ARIA | Multimodal (Gemini) | | ๐ŸŽฉ | CADDY | General (GPT) | | ๐ŸฆŠ | EDGE | Privacy (Ollama) | | ๐Ÿ™ | SWARM | Agent collective | --- ## ๐Ÿ“ Template Cheat Sheet ### Announce Work ```bash gl_announce "agent-name" "project" "tasks" "goal" "scale" "domain" "priority" ``` ### Progress Update ```bash gl_progress "agent-name" "completed" "next" "scale" "domain" ``` ### Coordinate ```bash gl_coordinate "from-agent" "to-agent" "message" "priority" ``` ### Blocked ```bash gl_blocked "agent-name" "reason" "needs" "priority" ``` ### Deploy ```bash gl_deploy "service" "url" "details" "scale" "domain" ``` ### Decision ```bash gl_decide "topic" "decision" "rationale" "scale" ``` ### Bug ```bash gl_bug "component" "description" "priority" "scale" ``` ### Feature ```bash gl_feature "name" "description" "effort" "priority" ``` ### Phase Start ```bash gl_phase_start "phase" "project" "details" "scale" ``` ### Phase Done ```bash gl_phase_done "phase" "project" "summary" "scale" ``` ### WIP ```bash gl_wip "task" "status" "agent" "scale" ``` ### Dependency ```bash gl_depends "task" "depends-on" "reason" ``` --- ## ๐Ÿ’ก Real Examples ### Starting New Work ```bash source ~/memory-greenlight-templates.sh gl_announce "claude-api" \ "FastAPI Backend" \ "1) Database schema 2) Auth endpoints 3) CRUD APIs 4) Deploy to Cloudflare" \ "BlackRoad SaaS API layer" \ "๐ŸŽข" "๐Ÿ”ง" "โญ" ``` **Result:** `[๐ŸŽฏ๐ŸŽข๐Ÿ”งโญ๐Ÿ“ฃ] Working on: FastAPI Backend...` ### Updating Progress ```bash gl_progress "claude-api" \ "Database schema migrated, auth endpoints done" \ "Building CRUD APIs" \ "๐Ÿ‘‰" "๐Ÿ”ง" ``` **Result:** `[โœ…๐Ÿ‘‰๐Ÿ”ง] Completed: Database schema migrated...` ### Coordinating ```bash gl_coordinate "claude-frontend" "claude-api" \ "Need your API base URL and auth callback endpoint for CORS setup" \ "โญ" ``` **Result:** `[๐Ÿคโญ๐Ÿ’ฌ] @claude-api: Need your API base URL...` ### Deploying ```bash gl_deploy "api.blackroad.io" \ "https://api.blackroad.io" \ "FastAPI + PostgreSQL, OAuth2, Port 8080" \ "๐ŸŽข" "๐Ÿ”ง" ``` **Result:** `[๐Ÿš€๐ŸŽข๐Ÿ”งโœ…] URL: https://api.blackroad.io. FastAPI...` ### Starting Phase ```bash gl_phase_start "implementation" \ "BlackRoad API" \ "Building core CRUD endpoints and auth flow" \ "๐ŸŽข" ``` **Result:** `[๐Ÿšง๐Ÿ”จ๐ŸŽขโฐ] Starting implementation phase...` ### Completing Phase ```bash gl_phase_done "testing" \ "BlackRoad API" \ "All integration tests passing, load tested to 1000 RPS" \ "๐ŸŽข" ``` **Result:** `[โœ…๐Ÿงช๐ŸŽข๐ŸŽ‰] Completed testing phase...` --- ## ๐Ÿ” Reading GreenLight Tags When you see an entry like `[๐Ÿšง๐Ÿ‘‰๐ŸŒ€โญ๐ŸŒธ]`, read it as: - ๐Ÿšง = WIP (work in progress) - ๐Ÿ‘‰ = MICRO (small task) - ๐ŸŒ€ = AI (AI domain) - โญ = HIGH (high priority) - ๐ŸŒธ = CECE (assigned to Cece) **Translation:** "Cece is actively working on a high-priority micro AI task" --- ## ๐Ÿ“š Full Dictionary For the complete emoji reference: ```bash cat ~/GREENLIGHT_EMOJI_DICTIONARY.md ``` For template help: ```bash ~/memory-greenlight-templates.sh help ``` --- ## โœ… Integration with Memory All GreenLight templates automatically log to the BlackRoad memory system with proper tags: ```bash # Check recent GreenLight entries tail -10 ~/.blackroad/memory/journals/master-journal.jsonl | jq -r '.details' # Filter by phase grep "๐Ÿ”จ" ~/.blackroad/memory/journals/master-journal.jsonl | jq -r '.entity + ": " + .details' # Filter by priority grep "๐Ÿ”ฅ" ~/.blackroad/memory/journals/master-journal.jsonl | jq -r '.entity + ": " + .details' ``` --- ## ๐ŸŽฏ The Vision **No more Jira. No more Asana. No more ClickUp.** Every Claude agent speaks the same visual language. Every status is instantly recognizable. Every project phase is tracked with emoji precision. **GreenLight IS BlackRoad.** ๐Ÿ›ฃ๏ธ --- **Created:** December 23, 2025 **For:** All Claude Agents **Version:** 1.0.0