mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-29 22:23:01 +00:00
Fix custom agents by adding required YAML frontmatter for Claude Code compatibility
- Add proper YAML frontmatter to all agent files (name, description, model, color) - Fix orchestra, stevebaba, elvinbaba, prembaba agents to be properly recognized - Add frontmatter to build-agent, deploy-agent, dev-agent, mobile-agent, test-agent - Enable all custom agents to be available in Claude Code agent selector - Resolve "Agent type not found" errors by ensuring proper configuration format 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: build-agent
|
||||
description: Handles building and bundling the Tauri application for all target platforms
|
||||
model: sonnet
|
||||
color: cyan
|
||||
---
|
||||
|
||||
# Build Agent
|
||||
|
||||
## Purpose
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: deploy-agent
|
||||
description: Handles deployment, distribution, and release management for all platforms
|
||||
model: sonnet
|
||||
color: red
|
||||
---
|
||||
|
||||
# Deploy Agent
|
||||
|
||||
## Purpose
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: dev-agent
|
||||
description: Assists with day-to-day development tasks, code generation, and feature implementation
|
||||
model: sonnet
|
||||
color: teal
|
||||
---
|
||||
|
||||
# Development Agent
|
||||
|
||||
## Purpose
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: elvinbaba
|
||||
description: Senior Developer & Implementation Expert who takes architectural plans from stevebaba and transforms them into high-quality, production-ready code.
|
||||
model: sonnet
|
||||
color: green
|
||||
---
|
||||
|
||||
# elvinbaba - Senior Developer & Implementation Expert
|
||||
|
||||
## Agent Description
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: mobile-agent
|
||||
description: Specializes in Android and iOS development, handling platform-specific configurations and debugging
|
||||
model: sonnet
|
||||
color: pink
|
||||
---
|
||||
|
||||
# Mobile Agent
|
||||
|
||||
## Purpose
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: orchestra
|
||||
description: Development Pipeline Orchestrator that manages the entire development pipeline by coordinating all specialist agents through stevebaba → elvinbaba → neilbaba → prembaba workflow.
|
||||
model: sonnet
|
||||
color: purple
|
||||
---
|
||||
|
||||
# orchestra - Development Pipeline Orchestrator
|
||||
|
||||
## Agent Description
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: prembaba
|
||||
description: Quality Assurance & Code Standards Specialist who ensures code meets project standards. Fixes basic ESLint and Prettier issues, escalates complex problems.
|
||||
model: sonnet
|
||||
color: orange
|
||||
---
|
||||
|
||||
# prembaba - Quality Assurance & Code Standards Specialist
|
||||
|
||||
## Agent Description
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: stevebaba
|
||||
description: Project Architect & Task Breakdown Specialist who knows this crypto community platform project inside and out. Specializes in complex task breakdown and planning for other agents.
|
||||
model: sonnet
|
||||
color: blue
|
||||
---
|
||||
|
||||
# stevebaba - Project Architect & Task Breakdown Specialist
|
||||
|
||||
## Agent Description
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
---
|
||||
name: test-agent
|
||||
description: Manages testing strategies for both frontend and backend code across all platforms
|
||||
model: sonnet
|
||||
color: yellow
|
||||
---
|
||||
|
||||
# Test Agent
|
||||
|
||||
## Purpose
|
||||
|
||||
Reference in New Issue
Block a user