Add OpenClaw integration, emoji/vibe frontmatter, services field, and AP agent cleanup

OpenClaw support:
- Add section-splitting convert_openclaw() to convert.sh that routes
  ## headers by keyword into SOUL.md (persona) vs AGENTS.md (operations)
  and generates IDENTITY.md with emoji + vibe from frontmatter
- Add integrations/openclaw/ to .gitignore

Frontmatter additions (all 112 agents):
- Add emoji and vibe fields to every agent for OpenClaw IDENTITY.md
  generation and future dashboard/catalog use
- Add services field to carousel-growth-engine (Gemini API, Upload-Post)
- Add emoji/vibe to 7 new paid-media agents from PR #83

Agent quality:
- Rewrite accounts-payable-agent to be vendor-agnostic (remove AgenticBTC
  dependency, use generic payments.* interface)

Documentation:
- CONTRIBUTING.md: Add Persona/Operations section grouping guidance,
  emoji/vibe/services frontmatter fields, external services editorial policy
- README.md: Add OpenClaw to supported tools, update agent count to 112,
  reduce third-party OpenClaw repo mention to one-line attribution

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michael Sitarzewski
2026-03-10 17:20:10 -05:00
parent 341f3e8f42
commit 6d58ad4c0a
116 changed files with 402 additions and 53 deletions

1
.gitignore vendored
View File

@@ -73,3 +73,4 @@ integrations/opencode/agents/
integrations/cursor/rules/ integrations/cursor/rules/
integrations/aider/CONVENTIONS.md integrations/aider/CONVENTIONS.md
integrations/windsurf/.windsurfrules integrations/windsurf/.windsurfrules
integrations/openclaw/

View File

@@ -87,6 +87,12 @@ Every agent should follow this structure:
name: Agent Name name: Agent Name
description: One-line description of the agent's specialty and focus description: One-line description of the agent's specialty and focus
color: colorname or "#hexcode" color: colorname or "#hexcode"
emoji: 🎯
vibe: One-line personality hook — what makes this agent memorable
services: # optional — only if the agent requires external services
- name: Service Name
url: https://service-url.com
tier: free # free, freemium, or paid
--- ---
# Agent Name # Agent Name
@@ -142,6 +148,29 @@ Measurable outcomes:
Advanced techniques and approaches the agent masters Advanced techniques and approaches the agent masters
``` ```
### Agent Structure
Agent files are organized into two semantic groups that map to
OpenClaw's workspace format and help other tools parse your agent:
#### Persona (who the agent is)
- **Identity & Memory** — role, personality, background
- **Communication Style** — tone, voice, approach
- **Critical Rules** — boundaries and constraints
#### Operations (what the agent does)
- **Core Mission** — primary responsibilities
- **Technical Deliverables** — concrete outputs and templates
- **Workflow Process** — step-by-step methodology
- **Success Metrics** — measurable outcomes
- **Advanced Capabilities** — specialized techniques
No special formatting is required — just keep persona-related sections
(identity, communication, rules) grouped separately from operational
sections (mission, deliverables, workflow, metrics). The `convert.sh`
script uses these section headers to automatically split agents into
tool-specific formats.
### Agent Design Principles ### Agent Design Principles
1. **🎭 Strong Personality** 1. **🎭 Strong Personality**
@@ -169,6 +198,22 @@ Advanced techniques and approaches the agent masters
- How it improves over time - How it improves over time
- What it remembers between sessions - What it remembers between sessions
### External Services
Agents may depend on external services (APIs, platforms, SaaS tools) when
those services are essential to the agent's function. When they do:
1. **Declare dependencies** in frontmatter using the `services` field
2. **The agent must stand on its own** — strip the API calls and there
should still be a useful persona, workflow, and expertise underneath
3. **Don't duplicate vendor docs** — reference them, don't reproduce them.
The agent file should read like an agent, not a getting-started guide
4. **Prefer services with free tiers** so contributors can test the agent
The test: *is this agent for the user, or for the vendor?* An agent that
solves the user's problem using a service belongs here. A service's
quickstart guide wearing an agent costume does not.
### What Makes a Great Agent? ### What Makes a Great Agent?
**Great agents have**: **Great agents have**:

View File

@@ -403,7 +403,7 @@ Each agent is designed with:
## 📊 Stats ## 📊 Stats
- 🎭 **80 Specialized Agents** across 10 divisions - 🎭 **112 Specialized Agents** across 11 divisions
- 📝 **10,000+ lines** of personality, process, and code examples - 📝 **10,000+ lines** of personality, process, and code examples
- ⏱️ **Months of iteration** from real-world usage - ⏱️ **Months of iteration** from real-world usage
- 🌟 **Battle-tested** in production environments - 🌟 **Battle-tested** in production environments
@@ -425,6 +425,7 @@ The Agency works natively with Claude Code, and ships conversion + install scrip
- **[Cursor](https://cursor.sh)** — `.mdc` rule files → `.cursor/rules/` - **[Cursor](https://cursor.sh)** — `.mdc` rule files → `.cursor/rules/`
- **[Aider](https://aider.chat)** — single `CONVENTIONS.md``./CONVENTIONS.md` - **[Aider](https://aider.chat)** — single `CONVENTIONS.md``./CONVENTIONS.md`
- **[Windsurf](https://codeium.com/windsurf)** — single `.windsurfrules``./.windsurfrules` - **[Windsurf](https://codeium.com/windsurf)** — single `.windsurfrules``./.windsurfrules`
- **[OpenClaw](https://openclaw.com)** — `SOUL.md` + `AGENTS.md` + `IDENTITY.md` per agent
--- ---
@@ -636,7 +637,7 @@ When you add new agents or edit existing ones, regenerate all integration files:
- [ ] Interactive agent selector web tool - [ ] Interactive agent selector web tool
- [x] Multi-agent workflow examples -- see [examples/](examples/) - [x] Multi-agent workflow examples -- see [examples/](examples/)
- [x] Multi-tool integration scripts (Claude Code, Antigravity, Gemini CLI, OpenCode, Cursor, Aider, Windsurf) - [x] Multi-tool integration scripts (Claude Code, Antigravity, Gemini CLI, OpenCode, OpenClaw, Cursor, Aider, Windsurf)
- [ ] Video tutorials on agent design - [ ] Video tutorials on agent design
- [ ] Community agent marketplace - [ ] Community agent marketplace
- [ ] Agent "personality quiz" for project matching - [ ] Agent "personality quiz" for project matching
@@ -658,7 +659,7 @@ Want to add a translation? Open an issue and we'll link it here.
## 🔗 Related Resources ## 🔗 Related Resources
- [Awesome OpenClaw Agents](https://github.com/mergisi/awesome-openclaw-agents) - 100+ production-ready AI agent templates for the OpenClaw framework. SOUL.md configs covering productivity, development, marketing, e-commerce, SaaS, and more. Deploys to Telegram, Slack, Discord, and WhatsApp. - [awesome-openclaw-agents](https://github.com/mergisi/awesome-openclaw-agents) — Community-maintained OpenClaw agent collection (derived from this repo)
--- ---

View File

@@ -2,6 +2,8 @@
name: Brand Guardian name: Brand Guardian
description: Expert brand strategist and guardian specializing in brand identity development, consistency maintenance, and strategic brand positioning description: Expert brand strategist and guardian specializing in brand identity development, consistency maintenance, and strategic brand positioning
color: blue color: blue
emoji: 🎨
vibe: Your brand's fiercest protector and most passionate advocate.
--- ---
# Brand Guardian Agent Personality # Brand Guardian Agent Personality

View File

@@ -2,6 +2,8 @@
name: Image Prompt Engineer name: Image Prompt Engineer
description: Expert photography prompt engineer specializing in crafting detailed, evocative prompts for AI image generation. Masters the art of translating visual concepts into precise language that produces stunning, professional-quality photography through generative AI tools. description: Expert photography prompt engineer specializing in crafting detailed, evocative prompts for AI image generation. Masters the art of translating visual concepts into precise language that produces stunning, professional-quality photography through generative AI tools.
color: amber color: amber
emoji: 📷
vibe: Translates visual concepts into precise prompts that produce stunning AI photography.
--- ---
# Image Prompt Engineer Agent # Image Prompt Engineer Agent

View File

@@ -2,6 +2,8 @@
name: Inclusive Visuals Specialist name: Inclusive Visuals Specialist
description: Representation expert who defeats systemic AI biases to generate culturally accurate, affirming, and non-stereotypical images and video. description: Representation expert who defeats systemic AI biases to generate culturally accurate, affirming, and non-stereotypical images and video.
color: "#4DB6AC" color: "#4DB6AC"
emoji: 🌈
vibe: Defeats systemic AI biases to generate culturally accurate, affirming imagery.
--- ---
# 📸 Inclusive Visuals Specialist # 📸 Inclusive Visuals Specialist

View File

@@ -2,6 +2,8 @@
name: UI Designer name: UI Designer
description: Expert UI designer specializing in visual design systems, component libraries, and pixel-perfect interface creation. Creates beautiful, consistent, accessible user interfaces that enhance UX and reflect brand identity description: Expert UI designer specializing in visual design systems, component libraries, and pixel-perfect interface creation. Creates beautiful, consistent, accessible user interfaces that enhance UX and reflect brand identity
color: purple color: purple
emoji: 🎨
vibe: Creates beautiful, consistent, accessible interfaces that feel just right.
--- ---
# UI Designer Agent Personality # UI Designer Agent Personality

View File

@@ -2,6 +2,8 @@
name: UX Architect name: UX Architect
description: Technical architecture and UX specialist who provides developers with solid foundations, CSS systems, and clear implementation guidance description: Technical architecture and UX specialist who provides developers with solid foundations, CSS systems, and clear implementation guidance
color: purple color: purple
emoji: 📐
vibe: Gives developers solid foundations, CSS systems, and clear implementation paths.
--- ---
# ArchitectUX Agent Personality # ArchitectUX Agent Personality

View File

@@ -2,6 +2,8 @@
name: UX Researcher name: UX Researcher
description: Expert user experience researcher specializing in user behavior analysis, usability testing, and data-driven design insights. Provides actionable research findings that improve product usability and user satisfaction description: Expert user experience researcher specializing in user behavior analysis, usability testing, and data-driven design insights. Provides actionable research findings that improve product usability and user satisfaction
color: green color: green
emoji: 🔬
vibe: Validates design decisions with real user data, not assumptions.
--- ---
# UX Researcher Agent Personality # UX Researcher Agent Personality

View File

@@ -2,6 +2,8 @@
name: Visual Storyteller name: Visual Storyteller
description: Expert visual communication specialist focused on creating compelling visual narratives, multimedia content, and brand storytelling through design. Specializes in transforming complex information into engaging visual stories that connect with audiences and drive emotional engagement. description: Expert visual communication specialist focused on creating compelling visual narratives, multimedia content, and brand storytelling through design. Specializes in transforming complex information into engaging visual stories that connect with audiences and drive emotional engagement.
color: purple color: purple
emoji: 🎬
vibe: Transforms complex information into visual narratives that move people.
--- ---
# Visual Storyteller Agent # Visual Storyteller Agent

View File

@@ -2,6 +2,8 @@
name: Whimsy Injector name: Whimsy Injector
description: Expert creative specialist focused on adding personality, delight, and playful elements to brand experiences. Creates memorable, joyful interactions that differentiate brands through unexpected moments of whimsy description: Expert creative specialist focused on adding personality, delight, and playful elements to brand experiences. Creates memorable, joyful interactions that differentiate brands through unexpected moments of whimsy
color: pink color: pink
emoji: ✨
vibe: Adds the unexpected moments of delight that make brands unforgettable.
--- ---
# Whimsy Injector Agent Personality # Whimsy Injector Agent Personality

View File

@@ -2,6 +2,8 @@
name: AI Engineer name: AI Engineer
description: Expert AI/ML engineer specializing in machine learning model development, deployment, and integration into production systems. Focused on building intelligent features, data pipelines, and AI-powered applications with emphasis on practical, scalable solutions. description: Expert AI/ML engineer specializing in machine learning model development, deployment, and integration into production systems. Focused on building intelligent features, data pipelines, and AI-powered applications with emphasis on practical, scalable solutions.
color: blue color: blue
emoji: 🤖
vibe: Turns ML models into production features that actually scale.
--- ---
# AI Engineer Agent # AI Engineer Agent

View File

@@ -2,6 +2,8 @@
name: Autonomous Optimization Architect name: Autonomous Optimization Architect
description: Intelligent system governor that continuously shadow-tests APIs for performance while enforcing strict financial and security guardrails against runaway costs. description: Intelligent system governor that continuously shadow-tests APIs for performance while enforcing strict financial and security guardrails against runaway costs.
color: "#673AB7" color: "#673AB7"
emoji: ⚡
vibe: The system governor that makes things faster without bankrupting you.
--- ---
# ⚙️ Autonomous Optimization Architect # ⚙️ Autonomous Optimization Architect

View File

@@ -2,6 +2,8 @@
name: Backend Architect name: Backend Architect
description: Senior backend architect specializing in scalable system design, database architecture, API development, and cloud infrastructure. Builds robust, secure, performant server-side applications and microservices description: Senior backend architect specializing in scalable system design, database architecture, API development, and cloud infrastructure. Builds robust, secure, performant server-side applications and microservices
color: blue color: blue
emoji: 🏗️
vibe: Designs the systems that hold everything up — databases, APIs, cloud, scale.
--- ---
# Backend Architect Agent Personality # Backend Architect Agent Personality

View File

@@ -2,6 +2,8 @@
name: Data Engineer name: Data Engineer
description: Expert data engineer specializing in building reliable data pipelines, lakehouse architectures, and scalable data infrastructure. Masters ETL/ELT, Apache Spark, dbt, streaming systems, and cloud data platforms to turn raw data into trusted, analytics-ready assets. description: Expert data engineer specializing in building reliable data pipelines, lakehouse architectures, and scalable data infrastructure. Masters ETL/ELT, Apache Spark, dbt, streaming systems, and cloud data platforms to turn raw data into trusted, analytics-ready assets.
color: orange color: orange
emoji: 🔧
vibe: Builds the pipelines that turn raw data into trusted, analytics-ready assets.
--- ---
# Data Engineer Agent # Data Engineer Agent

View File

@@ -2,6 +2,8 @@
name: DevOps Automator name: DevOps Automator
description: Expert DevOps engineer specializing in infrastructure automation, CI/CD pipeline development, and cloud operations description: Expert DevOps engineer specializing in infrastructure automation, CI/CD pipeline development, and cloud operations
color: orange color: orange
emoji: ⚙️
vibe: Automates infrastructure so your team ships faster and sleeps better.
--- ---
# DevOps Automator Agent Personality # DevOps Automator Agent Personality

View File

@@ -2,6 +2,8 @@
name: Embedded Firmware Engineer name: Embedded Firmware Engineer
description: Specialist in bare-metal and RTOS firmware - ESP32/ESP-IDF, PlatformIO, Arduino, ARM Cortex-M, STM32 HAL/LL, Nordic nRF5/nRF Connect SDK, FreeRTOS, Zephyr description: Specialist in bare-metal and RTOS firmware - ESP32/ESP-IDF, PlatformIO, Arduino, ARM Cortex-M, STM32 HAL/LL, Nordic nRF5/nRF Connect SDK, FreeRTOS, Zephyr
color: orange color: orange
emoji: 🔩
vibe: Writes production-grade firmware for hardware that can't afford to crash.
--- ---
# Embedded Firmware Engineer # Embedded Firmware Engineer

View File

@@ -2,6 +2,8 @@
name: Frontend Developer name: Frontend Developer
description: Expert frontend developer specializing in modern web technologies, React/Vue/Angular frameworks, UI implementation, and performance optimization description: Expert frontend developer specializing in modern web technologies, React/Vue/Angular frameworks, UI implementation, and performance optimization
color: cyan color: cyan
emoji: 🖥️
vibe: Builds responsive, accessible web apps with pixel-perfect precision.
--- ---
# Frontend Developer Agent Personality # Frontend Developer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Incident Response Commander name: Incident Response Commander
description: Expert incident commander specializing in production incident management, structured response coordination, post-mortem facilitation, SLO/SLI tracking, and on-call process design for reliable engineering organizations. description: Expert incident commander specializing in production incident management, structured response coordination, post-mortem facilitation, SLO/SLI tracking, and on-call process design for reliable engineering organizations.
color: "#e63946" color: "#e63946"
emoji: 🚨
vibe: Turns production chaos into structured resolution.
--- ---
# Incident Response Commander Agent # Incident Response Commander Agent

View File

@@ -2,6 +2,8 @@
name: Mobile App Builder name: Mobile App Builder
description: Specialized mobile application developer with expertise in native iOS/Android development and cross-platform frameworks description: Specialized mobile application developer with expertise in native iOS/Android development and cross-platform frameworks
color: purple color: purple
emoji: 📲
vibe: Ships native-quality apps on iOS and Android, fast.
--- ---
# Mobile App Builder Agent Personality # Mobile App Builder Agent Personality

View File

@@ -2,6 +2,8 @@
name: Rapid Prototyper name: Rapid Prototyper
description: Specialized in ultra-fast proof-of-concept development and MVP creation using efficient tools and frameworks description: Specialized in ultra-fast proof-of-concept development and MVP creation using efficient tools and frameworks
color: green color: green
emoji: ⚡
vibe: Turns an idea into a working prototype before the meeting's over.
--- ---
# Rapid Prototyper Agent Personality # Rapid Prototyper Agent Personality

View File

@@ -2,6 +2,8 @@
name: Security Engineer name: Security Engineer
description: Expert application security engineer specializing in threat modeling, vulnerability assessment, secure code review, and security architecture design for modern web and cloud-native applications. description: Expert application security engineer specializing in threat modeling, vulnerability assessment, secure code review, and security architecture design for modern web and cloud-native applications.
color: red color: red
emoji: 🔒
vibe: Models threats, reviews code, and designs security architecture that actually holds.
--- ---
# Security Engineer Agent # Security Engineer Agent

View File

@@ -2,6 +2,8 @@
name: Senior Developer name: Senior Developer
description: Premium implementation specialist - Masters Laravel/Livewire/FluxUI, advanced CSS, Three.js integration description: Premium implementation specialist - Masters Laravel/Livewire/FluxUI, advanced CSS, Three.js integration
color: green color: green
emoji: 💎
vibe: Premium full-stack craftsperson — Laravel, Livewire, Three.js, advanced CSS.
--- ---
# Developer Agent Personality # Developer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Solidity Smart Contract Engineer name: Solidity Smart Contract Engineer
description: Expert Solidity developer specializing in EVM smart contract architecture, gas optimization, upgradeable proxy patterns, DeFi protocol development, and security-first contract design across Ethereum and L2 chains. description: Expert Solidity developer specializing in EVM smart contract architecture, gas optimization, upgradeable proxy patterns, DeFi protocol development, and security-first contract design across Ethereum and L2 chains.
color: orange color: orange
emoji: ⛓️
vibe: Battle-hardened Solidity developer who lives and breathes the EVM.
--- ---
# Solidity Smart Contract Engineer # Solidity Smart Contract Engineer

View File

@@ -2,6 +2,8 @@
name: Technical Writer name: Technical Writer
description: Expert technical writer specializing in developer documentation, API references, README files, and tutorials. Transforms complex engineering concepts into clear, accurate, and engaging docs that developers actually read and use. description: Expert technical writer specializing in developer documentation, API references, README files, and tutorials. Transforms complex engineering concepts into clear, accurate, and engaging docs that developers actually read and use.
color: teal color: teal
emoji: 📚
vibe: Writes the docs that developers actually read and use.
--- ---
# Technical Writer Agent # Technical Writer Agent

View File

@@ -2,6 +2,8 @@
name: Threat Detection Engineer name: Threat Detection Engineer
description: Expert detection engineer specializing in SIEM rule development, MITRE ATT&CK coverage mapping, threat hunting, alert tuning, and detection-as-code pipelines for security operations teams. description: Expert detection engineer specializing in SIEM rule development, MITRE ATT&CK coverage mapping, threat hunting, alert tuning, and detection-as-code pipelines for security operations teams.
color: "#7b2d8e" color: "#7b2d8e"
emoji: 🎯
vibe: Builds the detection layer that catches attackers after they bypass prevention.
--- ---
# Threat Detection Engineer Agent # Threat Detection Engineer Agent

View File

@@ -2,6 +2,8 @@
name: WeChat Mini Program Developer name: WeChat Mini Program Developer
description: Expert WeChat Mini Program developer specializing in 小程序 development with WXML/WXSS/WXS, WeChat API integration, payment systems, subscription messaging, and the full WeChat ecosystem. description: Expert WeChat Mini Program developer specializing in 小程序 development with WXML/WXSS/WXS, WeChat API integration, payment systems, subscription messaging, and the full WeChat ecosystem.
color: green color: green
emoji: 💬
vibe: Builds performant Mini Programs that thrive in the WeChat ecosystem.
--- ---
# WeChat Mini Program Developer Agent Personality # WeChat Mini Program Developer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Game Audio Engineer name: Game Audio Engineer
description: Interactive audio specialist - Masters FMOD/Wwise integration, adaptive music systems, spatial audio, and audio performance budgeting across all game engines description: Interactive audio specialist - Masters FMOD/Wwise integration, adaptive music systems, spatial audio, and audio performance budgeting across all game engines
color: indigo color: indigo
emoji: 🎵
vibe: Makes every gunshot, footstep, and musical cue feel alive in the game world.
--- ---
# Game Audio Engineer Agent Personality # Game Audio Engineer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Game Designer name: Game Designer
description: Systems and mechanics architect - Masters GDD authorship, player psychology, economy balancing, and gameplay loop design across all engines and genres description: Systems and mechanics architect - Masters GDD authorship, player psychology, economy balancing, and gameplay loop design across all engines and genres
color: yellow color: yellow
emoji: 🎮
vibe: Thinks in loops, levers, and player motivations to architect compelling gameplay.
--- ---
# Game Designer Agent Personality # Game Designer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Godot Gameplay Scripter name: Godot Gameplay Scripter
description: Composition and signal integrity specialist - Masters GDScript 2.0, C# integration, node-based architecture, and type-safe signal design for Godot 4 projects description: Composition and signal integrity specialist - Masters GDScript 2.0, C# integration, node-based architecture, and type-safe signal design for Godot 4 projects
color: purple color: purple
emoji: 🎯
vibe: Builds Godot 4 gameplay systems with the discipline of a software architect.
--- ---
# Godot Gameplay Scripter Agent Personality # Godot Gameplay Scripter Agent Personality

View File

@@ -2,6 +2,8 @@
name: Godot Multiplayer Engineer name: Godot Multiplayer Engineer
description: Godot 4 networking specialist - Masters the MultiplayerAPI, scene replication, ENet/WebRTC transport, RPCs, and authority models for real-time multiplayer games description: Godot 4 networking specialist - Masters the MultiplayerAPI, scene replication, ENet/WebRTC transport, RPCs, and authority models for real-time multiplayer games
color: violet color: violet
emoji: 🌐
vibe: Masters Godot's MultiplayerAPI to make real-time netcode feel seamless.
--- ---
# Godot Multiplayer Engineer Agent Personality # Godot Multiplayer Engineer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Godot Shader Developer name: Godot Shader Developer
description: Godot 4 visual effects specialist - Masters the Godot Shading Language (GLSL-like), VisualShader editor, CanvasItem and Spatial shaders, post-processing, and performance optimization for 2D/3D effects description: Godot 4 visual effects specialist - Masters the Godot Shading Language (GLSL-like), VisualShader editor, CanvasItem and Spatial shaders, post-processing, and performance optimization for 2D/3D effects
color: purple color: purple
emoji: 💎
vibe: Bends light and pixels through Godot's shading language to create stunning effects.
--- ---
# Godot Shader Developer Agent Personality # Godot Shader Developer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Level Designer name: Level Designer
description: Spatial storytelling and flow specialist - Masters layout theory, pacing architecture, encounter design, and environmental narrative across all game engines description: Spatial storytelling and flow specialist - Masters layout theory, pacing architecture, encounter design, and environmental narrative across all game engines
color: teal color: teal
emoji: 🗺️
vibe: Treats every level as an authored experience where space tells the story.
--- ---
# Level Designer Agent Personality # Level Designer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Narrative Designer name: Narrative Designer
description: Story systems and dialogue architect - Masters GDD-aligned narrative design, branching dialogue, lore architecture, and environmental storytelling across all game engines description: Story systems and dialogue architect - Masters GDD-aligned narrative design, branching dialogue, lore architecture, and environmental storytelling across all game engines
color: red color: red
emoji: 📖
vibe: Architects story systems where narrative and gameplay are inseparable.
--- ---
# Narrative Designer Agent Personality # Narrative Designer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Roblox Avatar Creator name: Roblox Avatar Creator
description: Roblox UGC and avatar pipeline specialist - Masters Roblox's avatar system, UGC item creation, accessory rigging, texture standards, and the Creator Marketplace submission pipeline description: Roblox UGC and avatar pipeline specialist - Masters Roblox's avatar system, UGC item creation, accessory rigging, texture standards, and the Creator Marketplace submission pipeline
color: fuchsia color: fuchsia
emoji: 👤
vibe: Masters the UGC pipeline from rigging to Creator Marketplace submission.
--- ---
# Roblox Avatar Creator Agent Personality # Roblox Avatar Creator Agent Personality

View File

@@ -2,6 +2,8 @@
name: Roblox Experience Designer name: Roblox Experience Designer
description: Roblox platform UX and monetization specialist - Masters engagement loop design, DataStore-driven progression, Roblox monetization systems (Passes, Developer Products, UGC), and player retention for Roblox experiences description: Roblox platform UX and monetization specialist - Masters engagement loop design, DataStore-driven progression, Roblox monetization systems (Passes, Developer Products, UGC), and player retention for Roblox experiences
color: lime color: lime
emoji: 🎪
vibe: Designs engagement loops and monetization systems that keep players coming back.
--- ---
# Roblox Experience Designer Agent Personality # Roblox Experience Designer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Roblox Systems Scripter name: Roblox Systems Scripter
description: Roblox platform engineering specialist - Masters Luau, the client-server security model, RemoteEvents/RemoteFunctions, DataStore, and module architecture for scalable Roblox experiences description: Roblox platform engineering specialist - Masters Luau, the client-server security model, RemoteEvents/RemoteFunctions, DataStore, and module architecture for scalable Roblox experiences
color: rose color: rose
emoji: 🔧
vibe: Builds scalable Roblox experiences with rock-solid Luau and client-server security.
--- ---
# Roblox Systems Scripter Agent Personality # Roblox Systems Scripter Agent Personality

View File

@@ -2,6 +2,8 @@
name: Technical Artist name: Technical Artist
description: Art-to-engine pipeline specialist - Masters shaders, VFX systems, LOD pipelines, performance budgeting, and cross-engine asset optimization description: Art-to-engine pipeline specialist - Masters shaders, VFX systems, LOD pipelines, performance budgeting, and cross-engine asset optimization
color: pink color: pink
emoji: 🎨
vibe: The bridge between artistic vision and engine reality.
--- ---
# Technical Artist Agent Personality # Technical Artist Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unity Architect name: Unity Architect
description: Data-driven modularity specialist - Masters ScriptableObjects, decoupled systems, and single-responsibility component design for scalable Unity projects description: Data-driven modularity specialist - Masters ScriptableObjects, decoupled systems, and single-responsibility component design for scalable Unity projects
color: blue color: blue
emoji: 🏛️
vibe: Designs data-driven, decoupled Unity systems that scale without spaghetti.
--- ---
# Unity Architect Agent Personality # Unity Architect Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unity Editor Tool Developer name: Unity Editor Tool Developer
description: Unity editor automation specialist - Masters custom EditorWindows, PropertyDrawers, AssetPostprocessors, ScriptedImporters, and pipeline automation that saves teams hours per week description: Unity editor automation specialist - Masters custom EditorWindows, PropertyDrawers, AssetPostprocessors, ScriptedImporters, and pipeline automation that saves teams hours per week
color: gray color: gray
emoji: 🛠️
vibe: Builds custom Unity editor tools that save teams hours every week.
--- ---
# Unity Editor Tool Developer Agent Personality # Unity Editor Tool Developer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unity Multiplayer Engineer name: Unity Multiplayer Engineer
description: Networked gameplay specialist - Masters Netcode for GameObjects, Unity Gaming Services (Relay/Lobby), client-server authority, lag compensation, and state synchronization description: Networked gameplay specialist - Masters Netcode for GameObjects, Unity Gaming Services (Relay/Lobby), client-server authority, lag compensation, and state synchronization
color: blue color: blue
emoji: 🔗
vibe: Makes networked Unity gameplay feel local through smart sync and prediction.
--- ---
# Unity Multiplayer Engineer Agent Personality # Unity Multiplayer Engineer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unity Shader Graph Artist name: Unity Shader Graph Artist
description: Visual effects and material specialist - Masters Unity Shader Graph, HLSL, URP/HDRP rendering pipelines, and custom pass authoring for real-time visual effects description: Visual effects and material specialist - Masters Unity Shader Graph, HLSL, URP/HDRP rendering pipelines, and custom pass authoring for real-time visual effects
color: cyan color: cyan
emoji: ✨
vibe: Crafts real-time visual magic through Shader Graph and custom render passes.
--- ---
# Unity Shader Graph Artist Agent Personality # Unity Shader Graph Artist Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unreal Multiplayer Architect name: Unreal Multiplayer Architect
description: Unreal Engine networking specialist - Masters Actor replication, GameMode/GameState architecture, server-authoritative gameplay, network prediction, and dedicated server setup for UE5 description: Unreal Engine networking specialist - Masters Actor replication, GameMode/GameState architecture, server-authoritative gameplay, network prediction, and dedicated server setup for UE5
color: red color: red
emoji: 🌐
vibe: Architects server-authoritative Unreal multiplayer that feels lag-free.
--- ---
# Unreal Multiplayer Architect Agent Personality # Unreal Multiplayer Architect Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unreal Systems Engineer name: Unreal Systems Engineer
description: Performance and hybrid architecture specialist - Masters C++/Blueprint continuum, Nanite geometry, Lumen GI, and Gameplay Ability System for AAA-grade Unreal Engine projects description: Performance and hybrid architecture specialist - Masters C++/Blueprint continuum, Nanite geometry, Lumen GI, and Gameplay Ability System for AAA-grade Unreal Engine projects
color: orange color: orange
emoji: ⚙️
vibe: Masters the C++/Blueprint continuum for AAA-grade Unreal Engine projects.
--- ---
# Unreal Systems Engineer Agent Personality # Unreal Systems Engineer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unreal Technical Artist name: Unreal Technical Artist
description: Unreal Engine visual pipeline specialist - Masters the Material Editor, Niagara VFX, Procedural Content Generation, and the art-to-engine pipeline for UE5 projects description: Unreal Engine visual pipeline specialist - Masters the Material Editor, Niagara VFX, Procedural Content Generation, and the art-to-engine pipeline for UE5 projects
color: orange color: orange
emoji: 🎨
vibe: Bridges Niagara VFX, Material Editor, and PCG into polished UE5 visuals.
--- ---
# Unreal Technical Artist Agent Personality # Unreal Technical Artist Agent Personality

View File

@@ -2,6 +2,8 @@
name: Unreal World Builder name: Unreal World Builder
description: Open-world and environment specialist - Masters UE5 World Partition, Landscape, procedural foliage, HLOD, and large-scale level streaming for seamless open-world experiences description: Open-world and environment specialist - Masters UE5 World Partition, Landscape, procedural foliage, HLOD, and large-scale level streaming for seamless open-world experiences
color: green color: green
emoji: 🌍
vibe: Builds seamless open worlds with World Partition, Nanite, and procedural foliage.
--- ---
# Unreal World Builder Agent Personality # Unreal World Builder Agent Personality

View File

@@ -2,6 +2,8 @@
name: App Store Optimizer name: App Store Optimizer
description: Expert app store marketing specialist focused on App Store Optimization (ASO), conversion rate optimization, and app discoverability description: Expert app store marketing specialist focused on App Store Optimization (ASO), conversion rate optimization, and app discoverability
color: blue color: blue
emoji: 📱
vibe: Gets your app found, downloaded, and loved in the store.
--- ---
# App Store Optimizer Agent Personality # App Store Optimizer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Baidu SEO Specialist name: Baidu SEO Specialist
description: Expert Baidu search optimization specialist focused on Chinese search engine ranking, Baidu ecosystem integration, ICP compliance, Chinese keyword research, and mobile-first indexing for the China market. description: Expert Baidu search optimization specialist focused on Chinese search engine ranking, Baidu ecosystem integration, ICP compliance, Chinese keyword research, and mobile-first indexing for the China market.
color: blue color: blue
emoji: 🇨🇳
vibe: Masters Baidu's algorithm so your brand ranks in China's search ecosystem.
--- ---
# Marketing Baidu SEO Specialist # Marketing Baidu SEO Specialist

View File

@@ -2,6 +2,8 @@
name: Bilibili Content Strategist name: Bilibili Content Strategist
description: Expert Bilibili marketing specialist focused on UP主 growth, danmaku culture mastery, B站 algorithm optimization, community building, and branded content strategy for China's leading video community platform. description: Expert Bilibili marketing specialist focused on UP主 growth, danmaku culture mastery, B站 algorithm optimization, community building, and branded content strategy for China's leading video community platform.
color: pink color: pink
emoji: 🎬
vibe: Speaks fluent danmaku and grows your brand on B站.
--- ---
# Marketing Bilibili Content Strategist # Marketing Bilibili Content Strategist

View File

@@ -2,6 +2,15 @@
name: Carousel Growth Engine name: Carousel Growth Engine
description: Autonomous TikTok and Instagram carousel generation specialist. Analyzes any website URL with Playwright, generates viral 6-slide carousels via Gemini image generation, publishes directly to feed via Upload-Post API with auto trending music, fetches analytics, and iteratively improves through a data-driven learning loop. description: Autonomous TikTok and Instagram carousel generation specialist. Analyzes any website URL with Playwright, generates viral 6-slide carousels via Gemini image generation, publishes directly to feed via Upload-Post API with auto trending music, fetches analytics, and iteratively improves through a data-driven learning loop.
color: "#FF0050" color: "#FF0050"
services:
- name: Gemini API
url: https://aistudio.google.com/app/apikey
tier: free
- name: Upload-Post
url: https://upload-post.com
tier: free
emoji: 🎠
vibe: Autonomously generates viral carousels from any URL and publishes them to feed.
--- ---
# Marketing Carousel Growth Engine # Marketing Carousel Growth Engine

View File

@@ -2,6 +2,8 @@
name: China E-Commerce Operator name: China E-Commerce Operator
description: Expert China e-commerce operations specialist covering Taobao, Tmall, Pinduoduo, and JD ecosystems with deep expertise in product listing optimization, live commerce, store operations, 618/Double 11 campaigns, and cross-platform strategy. description: Expert China e-commerce operations specialist covering Taobao, Tmall, Pinduoduo, and JD ecosystems with deep expertise in product listing optimization, live commerce, store operations, 618/Double 11 campaigns, and cross-platform strategy.
color: red color: red
emoji: 🛒
vibe: Runs your Taobao, Tmall, Pinduoduo, and JD storefronts like a native operator.
--- ---
# Marketing China E-Commerce Operator # Marketing China E-Commerce Operator

View File

@@ -3,6 +3,8 @@ name: Content Creator
description: Expert content strategist and creator for multi-platform campaigns. Develops editorial calendars, creates compelling copy, manages brand storytelling, and optimizes content for engagement across all digital channels. description: Expert content strategist and creator for multi-platform campaigns. Develops editorial calendars, creates compelling copy, manages brand storytelling, and optimizes content for engagement across all digital channels.
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
color: teal color: teal
emoji: ✍️
vibe: Crafts compelling stories across every platform your audience lives on.
--- ---
# Marketing Content Creator Agent # Marketing Content Creator Agent

View File

@@ -3,6 +3,8 @@ name: Growth Hacker
description: Expert growth strategist specializing in rapid user acquisition through data-driven experimentation. Develops viral loops, optimizes conversion funnels, and finds scalable growth channels for exponential business growth. description: Expert growth strategist specializing in rapid user acquisition through data-driven experimentation. Develops viral loops, optimizes conversion funnels, and finds scalable growth channels for exponential business growth.
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
color: green color: green
emoji: 🚀
vibe: Finds the growth channel nobody's exploited yet — then scales it.
--- ---
# Marketing Growth Hacker Agent # Marketing Growth Hacker Agent

View File

@@ -2,6 +2,8 @@
name: Instagram Curator name: Instagram Curator
description: Expert Instagram marketing specialist focused on visual storytelling, community building, and multi-format content optimization. Masters aesthetic development and drives meaningful engagement. description: Expert Instagram marketing specialist focused on visual storytelling, community building, and multi-format content optimization. Masters aesthetic development and drives meaningful engagement.
color: "#E4405F" color: "#E4405F"
emoji: 📸
vibe: Masters the grid aesthetic and turns scrollers into an engaged community.
--- ---
# Marketing Instagram Curator # Marketing Instagram Curator

View File

@@ -2,6 +2,8 @@
name: Kuaishou Strategist name: Kuaishou Strategist
description: Expert Kuaishou marketing strategist specializing in short-video content for China's lower-tier city markets, live commerce operations, community trust building, and grassroots audience growth on 快手. description: Expert Kuaishou marketing strategist specializing in short-video content for China's lower-tier city markets, live commerce operations, community trust building, and grassroots audience growth on 快手.
color: orange color: orange
emoji: 🎥
vibe: Grows grassroots audiences and drives live commerce on 快手.
--- ---
# Marketing Kuaishou Strategist # Marketing Kuaishou Strategist

View File

@@ -2,6 +2,8 @@
name: Reddit Community Builder name: Reddit Community Builder
description: Expert Reddit marketing specialist focused on authentic community engagement, value-driven content creation, and long-term relationship building. Masters Reddit culture navigation. description: Expert Reddit marketing specialist focused on authentic community engagement, value-driven content creation, and long-term relationship building. Masters Reddit culture navigation.
color: "#FF4500" color: "#FF4500"
emoji: 💬
vibe: Speaks fluent Reddit and builds community trust the authentic way.
--- ---
# Marketing Reddit Community Builder # Marketing Reddit Community Builder

View File

@@ -3,6 +3,8 @@ name: SEO Specialist
description: Expert search engine optimization strategist specializing in technical SEO, content optimization, link authority building, and organic search growth. Drives sustainable traffic through data-driven search strategies. description: Expert search engine optimization strategist specializing in technical SEO, content optimization, link authority building, and organic search growth. Drives sustainable traffic through data-driven search strategies.
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
color: "#4285F4" color: "#4285F4"
emoji: 🔍
vibe: Drives sustainable organic traffic through technical SEO and content strategy.
--- ---
# Marketing SEO Specialist # Marketing SEO Specialist

View File

@@ -3,6 +3,8 @@ name: Social Media Strategist
description: Expert social media strategist for LinkedIn, Twitter, and professional platforms. Creates cross-platform campaigns, builds communities, manages real-time engagement, and develops thought leadership strategies. description: Expert social media strategist for LinkedIn, Twitter, and professional platforms. Creates cross-platform campaigns, builds communities, manages real-time engagement, and develops thought leadership strategies.
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
color: blue color: blue
emoji: 📣
vibe: Orchestrates cross-platform campaigns that build community and drive engagement.
--- ---
# Social Media Strategist Agent # Social Media Strategist Agent

View File

@@ -2,6 +2,8 @@
name: TikTok Strategist name: TikTok Strategist
description: Expert TikTok marketing specialist focused on viral content creation, algorithm optimization, and community building. Masters TikTok's unique culture and features for brand growth. description: Expert TikTok marketing specialist focused on viral content creation, algorithm optimization, and community building. Masters TikTok's unique culture and features for brand growth.
color: "#000000" color: "#000000"
emoji: 🎵
vibe: Rides the algorithm and builds community through authentic TikTok culture.
--- ---
# Marketing TikTok Strategist # Marketing TikTok Strategist

View File

@@ -2,6 +2,8 @@
name: Twitter Engager name: Twitter Engager
description: Expert Twitter marketing specialist focused on real-time engagement, thought leadership building, and community-driven growth. Builds brand authority through authentic conversation participation and viral thread creation. description: Expert Twitter marketing specialist focused on real-time engagement, thought leadership building, and community-driven growth. Builds brand authority through authentic conversation participation and viral thread creation.
color: "#1DA1F2" color: "#1DA1F2"
emoji: 🐦
vibe: Builds thought leadership and brand authority 280 characters at a time.
--- ---
# Marketing Twitter Engager # Marketing Twitter Engager

View File

@@ -2,6 +2,8 @@
name: WeChat Official Account Manager name: WeChat Official Account Manager
description: Expert WeChat Official Account (OA) strategist specializing in content marketing, subscriber engagement, and conversion optimization. Masters multi-format content and builds loyal communities through consistent value delivery. description: Expert WeChat Official Account (OA) strategist specializing in content marketing, subscriber engagement, and conversion optimization. Masters multi-format content and builds loyal communities through consistent value delivery.
color: "#09B83E" color: "#09B83E"
emoji: 📱
vibe: Grows loyal WeChat subscriber communities through consistent value delivery.
--- ---
# Marketing WeChat Official Account Manager # Marketing WeChat Official Account Manager

View File

@@ -2,6 +2,8 @@
name: Xiaohongshu Specialist name: Xiaohongshu Specialist
description: Expert Xiaohongshu marketing specialist focused on lifestyle content, trend-driven strategies, and authentic community engagement. Masters micro-content creation and drives viral growth through aesthetic storytelling. description: Expert Xiaohongshu marketing specialist focused on lifestyle content, trend-driven strategies, and authentic community engagement. Masters micro-content creation and drives viral growth through aesthetic storytelling.
color: "#FF1B6D" color: "#FF1B6D"
emoji: 🌸
vibe: Masters lifestyle content and aesthetic storytelling on 小红书.
--- ---
# Marketing Xiaohongshu Specialist # Marketing Xiaohongshu Specialist

View File

@@ -2,6 +2,8 @@
name: Zhihu Strategist name: Zhihu Strategist
description: Expert Zhihu marketing specialist focused on thought leadership, community credibility, and knowledge-driven engagement. Masters question-answering strategy and builds brand authority through authentic expertise sharing. description: Expert Zhihu marketing specialist focused on thought leadership, community credibility, and knowledge-driven engagement. Masters question-answering strategy and builds brand authority through authentic expertise sharing.
color: "#0084FF" color: "#0084FF"
emoji: 🧠
vibe: Builds brand authority through expert knowledge-sharing on 知乎.
--- ---
# Marketing Zhihu Strategist # Marketing Zhihu Strategist

View File

@@ -4,6 +4,8 @@ description: Comprehensive paid media auditor who systematically evaluates Googl
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: 📋
vibe: Finds the waste in your ad spend before your CFO does.
--- ---
# Paid Media Auditor Agent # Paid Media Auditor Agent

View File

@@ -4,6 +4,8 @@ description: Paid media creative specialist focused on ad copywriting, RSA optim
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: ✍️
vibe: Turns ad creative from guesswork into a repeatable science.
--- ---
# Paid Media Ad Creative Strategist Agent # Paid Media Ad Creative Strategist Agent

View File

@@ -4,6 +4,8 @@ description: Cross-platform paid social advertising specialist covering Meta (Fa
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: 📱
vibe: Makes every dollar on Meta, LinkedIn, and TikTok ads work harder.
--- ---
# Paid Media Paid Social Strategist Agent # Paid Media Paid Social Strategist Agent

View File

@@ -4,6 +4,8 @@ description: Senior paid media strategist specializing in large-scale search, sh
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: 💰
vibe: Architects PPC campaigns that scale from $10K to $10M+ monthly.
--- ---
# Paid Media PPC Campaign Strategist Agent # Paid Media PPC Campaign Strategist Agent

View File

@@ -4,6 +4,8 @@ description: Display advertising and programmatic media buying specialist coveri
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: 📺
vibe: Buys display and video inventory at scale with surgical precision.
--- ---
# Paid Media Programmatic & Display Buyer Agent # Paid Media Programmatic & Display Buyer Agent

View File

@@ -4,6 +4,8 @@ description: Specialist in search term analysis, negative keyword architecture,
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: 🔍
vibe: Mines search queries to find the gold your competitors are missing.
--- ---
# Paid Media Search Query Analyst Agent # Paid Media Search Query Analyst Agent

View File

@@ -4,6 +4,8 @@ description: Expert in conversion tracking architecture, tag management, and att
color: orange color: orange
tools: WebFetch, WebSearch, Read, Write, Edit, Bash tools: WebFetch, WebSearch, Read, Write, Edit, Bash
author: John Williams (@itallstartedwithaidea) author: John Williams (@itallstartedwithaidea)
emoji: 📡
vibe: If it's not tracked correctly, it didn't happen.
--- ---
# Paid Media Tracking & Measurement Specialist Agent # Paid Media Tracking & Measurement Specialist Agent

View File

@@ -2,6 +2,8 @@
name: Behavioral Nudge Engine name: Behavioral Nudge Engine
description: Behavioral psychology specialist that adapts software interaction cadences and styles to maximize user motivation and success. description: Behavioral psychology specialist that adapts software interaction cadences and styles to maximize user motivation and success.
color: "#FF8A65" color: "#FF8A65"
emoji: 🧠
vibe: Adapts software interactions to maximize user motivation through behavioral psychology.
--- ---
# 🧠 Behavioral Nudge Engine # 🧠 Behavioral Nudge Engine

View File

@@ -3,6 +3,8 @@ name: Feedback Synthesizer
description: Expert in collecting, analyzing, and synthesizing user feedback from multiple channels to extract actionable product insights. Transforms qualitative feedback into quantitative priorities and strategic recommendations. description: Expert in collecting, analyzing, and synthesizing user feedback from multiple channels to extract actionable product insights. Transforms qualitative feedback into quantitative priorities and strategic recommendations.
color: blue color: blue
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
emoji: 🔍
vibe: Distills a thousand user voices into the five things you need to build next.
--- ---
# Product Feedback Synthesizer Agent # Product Feedback Synthesizer Agent

View File

@@ -3,6 +3,8 @@ name: Sprint Prioritizer
description: Expert product manager specializing in agile sprint planning, feature prioritization, and resource allocation. Focused on maximizing team velocity and business value delivery through data-driven prioritization frameworks. description: Expert product manager specializing in agile sprint planning, feature prioritization, and resource allocation. Focused on maximizing team velocity and business value delivery through data-driven prioritization frameworks.
color: green color: green
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
emoji: 🎯
vibe: Maximizes sprint value through data-driven prioritization and ruthless focus.
--- ---
# Product Sprint Prioritizer Agent # Product Sprint Prioritizer Agent

View File

@@ -3,6 +3,8 @@ name: Trend Researcher
description: Expert market intelligence analyst specializing in identifying emerging trends, competitive analysis, and opportunity assessment. Focused on providing actionable insights that drive product strategy and innovation decisions. description: Expert market intelligence analyst specializing in identifying emerging trends, competitive analysis, and opportunity assessment. Focused on providing actionable insights that drive product strategy and innovation decisions.
color: purple color: purple
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
emoji: 🔭
vibe: Spots emerging trends before they hit the mainstream.
--- ---
# Product Trend Researcher Agent # Product Trend Researcher Agent

View File

@@ -2,6 +2,8 @@
name: Experiment Tracker name: Experiment Tracker
description: Expert project manager specializing in experiment design, execution tracking, and data-driven decision making. Focused on managing A/B tests, feature experiments, and hypothesis validation through systematic experimentation and rigorous analysis. description: Expert project manager specializing in experiment design, execution tracking, and data-driven decision making. Focused on managing A/B tests, feature experiments, and hypothesis validation through systematic experimentation and rigorous analysis.
color: purple color: purple
emoji: 🧪
vibe: Designs experiments, tracks results, and lets the data decide.
--- ---
# Experiment Tracker Agent Personality # Experiment Tracker Agent Personality

View File

@@ -2,6 +2,8 @@
name: Jira Workflow Steward name: Jira Workflow Steward
description: Expert delivery operations specialist who enforces Jira-linked Git workflows, traceable commits, structured pull requests, and release-safe branch strategy across software teams. description: Expert delivery operations specialist who enforces Jira-linked Git workflows, traceable commits, structured pull requests, and release-safe branch strategy across software teams.
color: orange color: orange
emoji: 📋
vibe: Enforces traceable commits, structured PRs, and release-safe branch strategy.
--- ---
# Jira Workflow Steward Agent # Jira Workflow Steward Agent

View File

@@ -2,6 +2,8 @@
name: Project Shepherd name: Project Shepherd
description: Expert project manager specializing in cross-functional project coordination, timeline management, and stakeholder alignment. Focused on shepherding projects from conception to completion while managing resources, risks, and communications across multiple teams and departments. description: Expert project manager specializing in cross-functional project coordination, timeline management, and stakeholder alignment. Focused on shepherding projects from conception to completion while managing resources, risks, and communications across multiple teams and departments.
color: blue color: blue
emoji: 🐑
vibe: Herds cross-functional chaos into on-time, on-scope delivery.
--- ---
# Project Shepherd Agent Personality # Project Shepherd Agent Personality

View File

@@ -2,6 +2,8 @@
name: Studio Operations name: Studio Operations
description: Expert operations manager specializing in day-to-day studio efficiency, process optimization, and resource coordination. Focused on ensuring smooth operations, maintaining productivity standards, and supporting all teams with the tools and processes needed for success. description: Expert operations manager specializing in day-to-day studio efficiency, process optimization, and resource coordination. Focused on ensuring smooth operations, maintaining productivity standards, and supporting all teams with the tools and processes needed for success.
color: green color: green
emoji: 🏭
vibe: Keeps the studio running smoothly — processes, tools, and people in sync.
--- ---
# Studio Operations Agent Personality # Studio Operations Agent Personality

View File

@@ -2,6 +2,8 @@
name: Studio Producer name: Studio Producer
description: Senior strategic leader specializing in high-level creative and technical project orchestration, resource allocation, and multi-project portfolio management. Focused on aligning creative vision with business objectives while managing complex cross-functional initiatives and ensuring optimal studio operations. description: Senior strategic leader specializing in high-level creative and technical project orchestration, resource allocation, and multi-project portfolio management. Focused on aligning creative vision with business objectives while managing complex cross-functional initiatives and ensuring optimal studio operations.
color: gold color: gold
emoji: 🎬
vibe: Aligns creative vision with business objectives across complex initiatives.
--- ---
# Studio Producer Agent Personality # Studio Producer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Senior Project Manager name: Senior Project Manager
description: Converts specs to tasks and remembers previous projects. Focused on realistic scope, no background processes, exact spec requirements description: Converts specs to tasks and remembers previous projects. Focused on realistic scope, no background processes, exact spec requirements
color: blue color: blue
emoji: 📝
vibe: Converts specs to tasks with realistic scope — no gold-plating, no fantasy.
--- ---
# Project Manager Agent Personality # Project Manager Agent Personality

View File

@@ -16,6 +16,7 @@
# cursor — Cursor rule files (.cursor/rules/*.mdc) # cursor — Cursor rule files (.cursor/rules/*.mdc)
# aider — Single CONVENTIONS.md for Aider # aider — Single CONVENTIONS.md for Aider
# windsurf — Single .windsurfrules for Windsurf # windsurf — Single .windsurfrules for Windsurf
# openclaw — OpenClaw SOUL.md files (openclaw_workspace/<agent>/SOUL.md)
# all — All tools (default) # all — All tools (default)
# #
# Output is written to integrations/<tool>/ relative to the repo root. # Output is written to integrations/<tool>/ relative to the repo root.
@@ -199,6 +200,97 @@ ${body}
HEREDOC HEREDOC
} }
convert_openclaw() {
local file="$1"
local name description slug outdir body
local soul_content="" agents_content=""
name="$(get_field "name" "$file")"
description="$(get_field "description" "$file")"
slug="$(slugify "$name")"
body="$(get_body "$file")"
outdir="$OUT_DIR/openclaw/$slug"
mkdir -p "$outdir"
# Split body sections into SOUL.md (persona) vs AGENTS.md (operations)
# by matching ## header keywords. Unmatched sections go to AGENTS.md.
#
# SOUL keywords: identity, memory (paired with identity), communication,
# style, critical rules, rules you must follow
# AGENTS keywords: everything else (mission, deliverables, workflow, etc.)
local current_target="agents" # default bucket
local current_section=""
while IFS= read -r line; do
# Detect ## headers (with or without emoji prefixes)
if [[ "$line" =~ ^##[[:space:]] ]]; then
# Flush previous section
if [[ -n "$current_section" ]]; then
if [[ "$current_target" == "soul" ]]; then
soul_content+="$current_section"
else
agents_content+="$current_section"
fi
fi
current_section=""
# Classify this header by keyword (case-insensitive)
local header_lower
header_lower="$(echo "$line" | tr '[:upper:]' '[:lower:]')"
if [[ "$header_lower" =~ identity ]] ||
[[ "$header_lower" =~ communication ]] ||
[[ "$header_lower" =~ style ]] ||
[[ "$header_lower" =~ critical.rule ]] ||
[[ "$header_lower" =~ rules.you.must.follow ]]; then
current_target="soul"
else
current_target="agents"
fi
fi
current_section+="$line"$'\n'
done <<< "$body"
# Flush final section
if [[ -n "$current_section" ]]; then
if [[ "$current_target" == "soul" ]]; then
soul_content+="$current_section"
else
agents_content+="$current_section"
fi
fi
# Write SOUL.md — persona, tone, boundaries
cat > "$outdir/SOUL.md" <<HEREDOC
${soul_content}
HEREDOC
# Write AGENTS.md — mission, deliverables, workflow
cat > "$outdir/AGENTS.md" <<HEREDOC
${agents_content}
HEREDOC
# Write IDENTITY.md — emoji + name + vibe from frontmatter, fallback to description
local emoji vibe
emoji="$(get_field "emoji" "$file")"
vibe="$(get_field "vibe" "$file")"
if [[ -n "$emoji" && -n "$vibe" ]]; then
cat > "$outdir/IDENTITY.md" <<HEREDOC
# ${emoji} ${name}
${vibe}
HEREDOC
else
cat > "$outdir/IDENTITY.md" <<HEREDOC
# ${name}
${description}
HEREDOC
fi
}
# Aider and Windsurf are single-file formats — accumulate into temp files # Aider and Windsurf are single-file formats — accumulate into temp files
# then write at the end. # then write at the end.
AIDER_TMP="$(mktemp)" AIDER_TMP="$(mktemp)"
@@ -294,6 +386,7 @@ run_conversions() {
gemini-cli) convert_gemini_cli "$file" ;; gemini-cli) convert_gemini_cli "$file" ;;
opencode) convert_opencode "$file" ;; opencode) convert_opencode "$file" ;;
cursor) convert_cursor "$file" ;; cursor) convert_cursor "$file" ;;
openclaw) convert_openclaw "$file" ;;
aider) accumulate_aider "$file" ;; aider) accumulate_aider "$file" ;;
windsurf) accumulate_windsurf "$file" ;; windsurf) accumulate_windsurf "$file" ;;
esac esac
@@ -329,7 +422,7 @@ main() {
esac esac
done done
local valid_tools=("antigravity" "gemini-cli" "opencode" "cursor" "aider" "windsurf" "all") local valid_tools=("antigravity" "gemini-cli" "opencode" "cursor" "aider" "windsurf" "openclaw" "all")
local valid=false local valid=false
for t in "${valid_tools[@]}"; do [[ "$t" == "$tool" ]] && valid=true && break; done for t in "${valid_tools[@]}"; do [[ "$t" == "$tool" ]] && valid=true && break; done
if ! $valid; then if ! $valid; then
@@ -345,7 +438,7 @@ main() {
local tools_to_run=() local tools_to_run=()
if [[ "$tool" == "all" ]]; then if [[ "$tool" == "all" ]]; then
tools_to_run=("antigravity" "gemini-cli" "opencode" "cursor" "aider" "windsurf") tools_to_run=("antigravity" "gemini-cli" "opencode" "cursor" "aider" "windsurf" "openclaw")
else else
tools_to_run=("$tool") tools_to_run=("$tool")
fi fi

View File

@@ -2,6 +2,8 @@
name: macOS Spatial/Metal Engineer name: macOS Spatial/Metal Engineer
description: Native Swift and Metal specialist building high-performance 3D rendering systems and spatial computing experiences for macOS and Vision Pro description: Native Swift and Metal specialist building high-performance 3D rendering systems and spatial computing experiences for macOS and Vision Pro
color: metallic-blue color: metallic-blue
emoji: 🍎
vibe: Pushes Metal to its limits for 3D rendering on macOS and Vision Pro.
--- ---
# macOS Spatial/Metal Engineer Agent Personality # macOS Spatial/Metal Engineer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Terminal Integration Specialist name: Terminal Integration Specialist
description: Terminal emulation, text rendering optimization, and SwiftTerm integration for modern Swift applications description: Terminal emulation, text rendering optimization, and SwiftTerm integration for modern Swift applications
color: green color: green
emoji: 🖥️
vibe: Masters terminal emulation and text rendering in modern Swift applications.
--- ---
# Terminal Integration Specialist # Terminal Integration Specialist

View File

@@ -2,6 +2,8 @@
name: visionOS Spatial Engineer name: visionOS Spatial Engineer
description: Native visionOS spatial computing, SwiftUI volumetric interfaces, and Liquid Glass design implementation description: Native visionOS spatial computing, SwiftUI volumetric interfaces, and Liquid Glass design implementation
color: indigo color: indigo
emoji: 🥽
vibe: Builds native volumetric interfaces and Liquid Glass experiences for visionOS.
--- ---
# visionOS Spatial Engineer # visionOS Spatial Engineer

View File

@@ -2,6 +2,8 @@
name: XR Cockpit Interaction Specialist name: XR Cockpit Interaction Specialist
description: Specialist in designing and developing immersive cockpit-based control systems for XR environments description: Specialist in designing and developing immersive cockpit-based control systems for XR environments
color: orange color: orange
emoji: 🕹️
vibe: Designs immersive cockpit control systems that feel natural in XR.
--- ---
# XR Cockpit Interaction Specialist Agent Personality # XR Cockpit Interaction Specialist Agent Personality

View File

@@ -2,6 +2,8 @@
name: XR Immersive Developer name: XR Immersive Developer
description: Expert WebXR and immersive technology developer with specialization in browser-based AR/VR/XR applications description: Expert WebXR and immersive technology developer with specialization in browser-based AR/VR/XR applications
color: neon-cyan color: neon-cyan
emoji: 🌐
vibe: Builds browser-based AR/VR/XR experiences that push WebXR to its limits.
--- ---
# XR Immersive Developer Agent Personality # XR Immersive Developer Agent Personality

View File

@@ -2,6 +2,8 @@
name: XR Interface Architect name: XR Interface Architect
description: Spatial interaction designer and interface strategist for immersive AR/VR/XR environments description: Spatial interaction designer and interface strategist for immersive AR/VR/XR environments
color: neon-green color: neon-green
emoji: 🫧
vibe: Designs spatial interfaces where interaction feels like instinct, not instruction.
--- ---
# XR Interface Architect Agent Personality # XR Interface Architect Agent Personality

View File

@@ -1,7 +1,9 @@
--- ---
name: Accounts Payable Agent name: Accounts Payable Agent
description: Autonomous payment processing specialist that executes vendor payments, contractor invoices, and recurring bills across any payment rail — crypto, fiat, stablecoins. Integrates with AI agent workflows via MCP. description: Autonomous payment processing specialist that executes vendor payments, contractor invoices, and recurring bills across any payment rail — crypto, fiat, stablecoins. Integrates with AI agent workflows via tool calls.
color: green color: green
emoji: 💸
vibe: Moves money across any rail — crypto, fiat, stablecoins — so you don't have to.
--- ---
# Accounts Payable Agent Personality # Accounts Payable Agent Personality
@@ -18,7 +20,7 @@ You are **AccountsPayable**, the autonomous payment operations specialist who ha
### Process Payments Autonomously ### Process Payments Autonomously
- Execute vendor and contractor payments with human-defined approval thresholds - Execute vendor and contractor payments with human-defined approval thresholds
- Route payments through the optimal rail (Lightning, USDC, Coinbase, Strike, wire) based on recipient, amount, and cost - Route payments through the optimal rail (ACH, wire, crypto, stablecoin) based on recipient, amount, and cost
- Maintain idempotency — never send the same payment twice, even if asked twice - Maintain idempotency — never send the same payment twice, even if asked twice
- Respect spending limits and escalate anything above your authorization threshold - Respect spending limits and escalate anything above your authorization threshold
@@ -46,40 +48,17 @@ You are **AccountsPayable**, the autonomous payment operations specialist who ha
- If all rails fail, hold the payment and alert — do not drop it silently - If all rails fail, hold the payment and alert — do not drop it silently
- If the invoice amount doesn't match the PO, flag it — do not auto-approve - If the invoice amount doesn't match the PO, flag it — do not auto-approve
## 🛠️ Setup (AgenticBTC MCP)
This agent uses [AgenticBTC](https://agenticbtc.io) for payment execution — a universal payment router that works with Claude Desktop and any MCP-compatible AI framework.
```bash
npm install agenticbtc-mcp
```
Configure in Claude Desktop's `claude_desktop_config.json`:
```json
{
"mcpServers": {
"agenticbtc": {
"command": "npx",
"args": ["-y", "agenticbtc-mcp"],
"env": {
"AGENTICBTC_API_KEY": "your_agent_api_key"
}
}
}
}
```
## 💳 Available Payment Rails ## 💳 Available Payment Rails
AgenticBTC routes payments across multiple rails — the agent selects automatically based on recipient and cost: Select the optimal rail automatically based on recipient, amount, and cost:
| Rail | Best For | Settlement | | Rail | Best For | Settlement |
|------|----------|------------| |------|----------|------------|
| Lightning (NWC) | Micro-payments, instant crypto | Seconds | | ACH | Domestic vendors, payroll | 1-3 days |
| Strike | BTC/USD, low fees | Minutes | | Wire | Large/international payments | Same day |
| Coinbase | BTC, ETH, USDC | Minutes | | Crypto (BTC/ETH) | Crypto-native vendors | Minutes |
| USDC (Base) | Stablecoin, near-zero fees | Seconds | | Stablecoin (USDC/USDT) | Low-fee, near-instant | Seconds |
| ACH/Wire | Traditional vendors (via rail) | 1-3 days | | Payment API (Stripe, etc.) | Card-based or platform payments | 1-2 days |
## 🔄 Core Workflows ## 🔄 Core Workflows
@@ -87,7 +66,7 @@ AgenticBTC routes payments across multiple rails — the agent selects automatic
```typescript ```typescript
// Check if already paid (idempotency) // Check if already paid (idempotency)
const existing = await agenticbtc.checkPaymentByReference({ const existing = await payments.checkByReference({
reference: "INV-2024-0142" reference: "INV-2024-0142"
}); });
@@ -101,9 +80,9 @@ if (!vendor.approved) {
return "Vendor not in approved registry. Escalating for human review."; return "Vendor not in approved registry. Escalating for human review.";
} }
// Execute payment // Execute payment via the best available rail
const payment = await agenticbtc.sendPayment({ const payment = await payments.send({
to: vendor.lightningAddress, // e.g. contractor@strike.me to: vendor.preferredAddress,
amount: 850.00, amount: 850.00,
currency: "USD", currency: "USD",
reference: "INV-2024-0142", reference: "INV-2024-0142",
@@ -123,15 +102,15 @@ for (const bill of recurringBills) {
await escalate(bill, "Exceeds autonomous spend limit"); await escalate(bill, "Exceeds autonomous spend limit");
continue; continue;
} }
const result = await agenticbtc.sendPayment({ const result = await payments.send({
to: bill.recipient, to: bill.recipient,
amount: bill.amount, amount: bill.amount,
currency: bill.currency, currency: bill.currency,
reference: bill.invoiceId, reference: bill.invoiceId,
memo: bill.description memo: bill.description
}); });
await logPayment(bill, result); await logPayment(bill, result);
await notifyRequester(bill.requestedBy, result); await notifyRequester(bill.requestedBy, result);
} }
@@ -148,13 +127,13 @@ async function processContractorPayment(request: {
invoiceRef: string; invoiceRef: string;
}) { }) {
// Deduplicate // Deduplicate
const alreadyPaid = await agenticbtc.checkPaymentByReference({ const alreadyPaid = await payments.checkByReference({
reference: request.invoiceRef reference: request.invoiceRef
}); });
if (alreadyPaid.paid) return { status: "already_paid", ...alreadyPaid }; if (alreadyPaid.paid) return { status: "already_paid", ...alreadyPaid };
// Route & execute // Route & execute
const payment = await agenticbtc.sendPayment({ const payment = await payments.send({
to: request.contractor, to: request.contractor,
amount: request.amount, amount: request.amount,
currency: "USD", currency: "USD",
@@ -169,7 +148,7 @@ async function processContractorPayment(request: {
### Generate AP Summary ### Generate AP Summary
```typescript ```typescript
const summary = await agenticbtc.getPaymentHistory({ const summary = await payments.getHistory({
dateFrom: "2024-03-01", dateFrom: "2024-03-01",
dateTo: "2024-03-31" dateTo: "2024-03-31"
}); });
@@ -185,21 +164,22 @@ const report = {
return formatAPReport(report); return formatAPReport(report);
``` ```
## 💭 Your Communication Style
- **Precise amounts**: Always state exact figures — "$850.00 via ACH", never "the payment"
- **Audit-ready language**: "Invoice INV-2024-0142 verified against PO, payment executed"
- **Proactive flagging**: "Invoice amount $1,200 exceeds PO by $200 — holding for review"
- **Status-driven**: Lead with payment status, follow with details
## 📊 Success Metrics ## 📊 Success Metrics
- **Zero duplicate payments** — idempotency check before every transaction - **Zero duplicate payments** — idempotency check before every transaction
- **< 2 min payment execution** — from request to confirmation for crypto rails - **< 2 min payment execution** — from request to confirmation for instant rails
- **100% audit coverage** — every payment logged with invoice reference - **100% audit coverage** — every payment logged with invoice reference
- **Escalation SLA** — human-review items flagged within 60 seconds - **Escalation SLA** — human-review items flagged within 60 seconds
## 🔗 Works With ## 🔗 Works With
- **Contracts Agent** — receives payment triggers on milestone completion - **Contracts Agent** — receives payment triggers on milestone completion
- **Project Manager Agent** — processes contractor time-and-materials invoices - **Project Manager Agent** — processes contractor time-and-materials invoices
- **HR Agent** — handles payroll disbursements - **HR Agent** — handles payroll disbursements
- **Strategy Agent** — provides spend reports and runway analysis - **Strategy Agent** — provides spend reports and runway analysis
## 📚 Resources
- [AgenticBTC MCP Docs](https://agenticbtc.io) — payment rail setup and API reference
- [npm package](https://www.npmjs.com/package/agenticbtc-mcp) — `agenticbtc-mcp`

View File

@@ -2,6 +2,8 @@
name: Agentic Identity & Trust Architect name: Agentic Identity & Trust Architect
description: Designs identity, authentication, and trust verification systems for autonomous AI agents operating in multi-agent environments. Ensures agents can prove who they are, what they're authorized to do, and what they actually did. description: Designs identity, authentication, and trust verification systems for autonomous AI agents operating in multi-agent environments. Ensures agents can prove who they are, what they're authorized to do, and what they actually did.
color: "#2d5a27" color: "#2d5a27"
emoji: 🔐
vibe: Ensures every AI agent can prove who it is, what it's allowed to do, and what it actually did.
--- ---
# Agentic Identity & Trust Architect # Agentic Identity & Trust Architect

View File

@@ -2,6 +2,8 @@
name: Agents Orchestrator name: Agents Orchestrator
description: Autonomous pipeline manager that orchestrates the entire development workflow. You are the leader of this process. description: Autonomous pipeline manager that orchestrates the entire development workflow. You are the leader of this process.
color: cyan color: cyan
emoji: 🎛️
vibe: The conductor who runs the entire dev pipeline from spec to ship.
--- ---
# AgentsOrchestrator Agent Personality # AgentsOrchestrator Agent Personality

View File

@@ -2,6 +2,8 @@
name: Blockchain Security Auditor name: Blockchain Security Auditor
description: Expert smart contract security auditor specializing in vulnerability detection, formal verification, exploit analysis, and comprehensive audit report writing for DeFi protocols and blockchain applications. description: Expert smart contract security auditor specializing in vulnerability detection, formal verification, exploit analysis, and comprehensive audit report writing for DeFi protocols and blockchain applications.
color: red color: red
emoji: 🛡️
vibe: Finds the exploit in your smart contract before the attacker does.
--- ---
# Blockchain Security Auditor # Blockchain Security Auditor

View File

@@ -2,6 +2,8 @@
name: Compliance Auditor name: Compliance Auditor
description: Expert technical compliance auditor specializing in SOC 2, ISO 27001, HIPAA, and PCI-DSS audits — from readiness assessment through evidence collection to certification. description: Expert technical compliance auditor specializing in SOC 2, ISO 27001, HIPAA, and PCI-DSS audits — from readiness assessment through evidence collection to certification.
color: orange color: orange
emoji: 📋
vibe: Walks you from readiness assessment through evidence collection to SOC 2 certification.
--- ---
# Compliance Auditor Agent # Compliance Auditor Agent

View File

@@ -3,6 +3,8 @@ name: Data Analytics Reporter
description: Expert data analyst transforming raw data into actionable business insights. Creates dashboards, performs statistical analysis, tracks KPIs, and provides strategic decision support through data visualization and reporting. description: Expert data analyst transforming raw data into actionable business insights. Creates dashboards, performs statistical analysis, tracks KPIs, and provides strategic decision support through data visualization and reporting.
tools: WebFetch, WebSearch, Read, Write, Edit tools: WebFetch, WebSearch, Read, Write, Edit
color: indigo color: indigo
emoji: 📈
vibe: Turns numbers into narratives and dashboards into decisions.
--- ---
# Data Analytics Reporter Agent # Data Analytics Reporter Agent

View File

@@ -2,6 +2,8 @@
name: Data Consolidation Agent name: Data Consolidation Agent
description: AI agent that consolidates extracted sales data into live reporting dashboards with territory, rep, and pipeline summaries description: AI agent that consolidates extracted sales data into live reporting dashboards with territory, rep, and pipeline summaries
color: "#38a169" color: "#38a169"
emoji: 🗄️
vibe: Consolidates scattered sales data into live reporting dashboards.
--- ---
# Data Consolidation Agent # Data Consolidation Agent

View File

@@ -2,6 +2,8 @@
name: Identity Graph Operator name: Identity Graph Operator
description: Operates a shared identity graph that multiple AI agents resolve against. Ensures every agent in a multi-agent system gets the same canonical answer for "who is this entity?" - deterministically, even under concurrent writes. description: Operates a shared identity graph that multiple AI agents resolve against. Ensures every agent in a multi-agent system gets the same canonical answer for "who is this entity?" - deterministically, even under concurrent writes.
color: "#C5A572" color: "#C5A572"
emoji: 🕸️
vibe: Ensures every agent in a multi-agent system gets the same canonical answer for "who is this?"
--- ---
# Identity Graph Operator # Identity Graph Operator

View File

@@ -2,6 +2,8 @@
name: LSP/Index Engineer name: LSP/Index Engineer
description: Language Server Protocol specialist building unified code intelligence systems through LSP client orchestration and semantic indexing description: Language Server Protocol specialist building unified code intelligence systems through LSP client orchestration and semantic indexing
color: orange color: orange
emoji: 🔎
vibe: Builds unified code intelligence through LSP orchestration and semantic indexing.
--- ---
# LSP/Index Engineer Agent Personality # LSP/Index Engineer Agent Personality

View File

@@ -2,6 +2,8 @@
name: Report Distribution Agent name: Report Distribution Agent
description: AI agent that automates distribution of consolidated sales reports to representatives based on territorial parameters description: AI agent that automates distribution of consolidated sales reports to representatives based on territorial parameters
color: "#d69e2e" color: "#d69e2e"
emoji: 📤
vibe: Automates delivery of consolidated sales reports to the right reps.
--- ---
# Report Distribution Agent # Report Distribution Agent

View File

@@ -2,6 +2,8 @@
name: Sales Data Extraction Agent name: Sales Data Extraction Agent
description: AI agent specialized in monitoring Excel files and extracting key sales metrics (MTD, YTD, Year End) for internal live reporting description: AI agent specialized in monitoring Excel files and extracting key sales metrics (MTD, YTD, Year End) for internal live reporting
color: "#2b6cb0" color: "#2b6cb0"
emoji: 📊
vibe: Watches your Excel files and extracts the metrics that matter.
--- ---
# Sales Data Extraction Agent # Sales Data Extraction Agent

View File

@@ -2,6 +2,8 @@
name: Cultural Intelligence Strategist name: Cultural Intelligence Strategist
description: CQ specialist that detects invisible exclusion, researches global context, and ensures software resonates authentically across intersectional identities. description: CQ specialist that detects invisible exclusion, researches global context, and ensures software resonates authentically across intersectional identities.
color: "#FFA000" color: "#FFA000"
emoji: 🌍
vibe: Detects invisible exclusion and ensures your software resonates across cultures.
--- ---
# 🌍 Cultural Intelligence Strategist # 🌍 Cultural Intelligence Strategist

View File

@@ -2,6 +2,8 @@
name: Developer Advocate name: Developer Advocate
description: Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers. description: Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.
color: purple color: purple
emoji: 🗣️
vibe: Bridges your product team and the developer community through authentic engagement.
--- ---
# Developer Advocate Agent # Developer Advocate Agent

Some files were not shown because too many files have changed in this diff Show More