| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900 |
- {
- "version": "1.0.0",
- "repository": "https://github.com/darrenhinde/OpenAgents",
- "categories": {
- "essential": "Minimal components for basic functionality",
- "standard": "Standard components for typical use",
- "extended": "Extended components for advanced features",
- "specialized": "Specialized components for specific domains",
- "meta": "Meta-level components for system generation"
- },
- "components": {
- "agents": [
- {
- "id": "opencoder",
- "name": "OpenCoder",
- "type": "agent",
- "path": ".opencode/agent/opencoder.md",
- "description": "Specialized development agent for complex coding, architecture, and multi-file refactoring",
- "tags": [
- "development",
- "architecture",
- "coding",
- "refactoring"
- ],
- "dependencies": [
- "subagent:task-manager",
- "subagent:documentation",
- "subagent:coder-agent",
- "subagent:tester",
- "subagent:reviewer",
- "subagent:build-agent"
- ],
- "category": "standard"
- },
- {
- "id": "openagent",
- "name": "OpenAgent",
- "type": "agent",
- "path": ".opencode/agent/openagent.md",
- "description": "Universal agent for answering queries, executing tasks, and coordinating workflows across any domain",
- "tags": [
- "universal",
- "flexible",
- "coordination"
- ],
- "dependencies": [
- "subagent:task-manager",
- "subagent:documentation"
- ],
- "category": "essential"
- },
- {
- "id": "system-builder",
- "name": "System Builder",
- "type": "agent",
- "path": ".opencode/agent/system-builder.md",
- "description": "Generates complete context-aware AI systems from user requirements",
- "tags": [
- "system-generation",
- "architecture",
- "orchestration",
- "meta"
- ],
- "dependencies": [
- "subagent:domain-analyzer",
- "subagent:agent-generator",
- "subagent:context-organizer",
- "subagent:workflow-designer",
- "subagent:command-creator"
- ],
- "category": "meta"
- },
- {
- "id": "codebase-agent",
- "name": "Codebase Agent",
- "type": "agent",
- "path": ".opencode/agent/codebase-agent.md",
- "description": "Multi-language implementation agent for modular and functional development\\\"",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- }
- ],
- "subagents": [
- {
- "id": "task-manager",
- "name": "Task Manager",
- "type": "subagent",
- "path": ".opencode/agent/subagents/core/task-manager.md",
- "description": "Breaks down complex features into small, verifiable subtasks",
- "tags": [
- "planning",
- "organization",
- "task-management"
- ],
- "dependencies": [],
- "category": "essential"
- },
- {
- "id": "image-specialist",
- "name": "Image Specialist",
- "type": "subagent",
- "path": ".opencode/agent/subagents/utils/image-specialist.md",
- "description": "Generates and edits images using Gemini AI",
- "tags": [
- "images",
- "ai",
- "generation"
- ],
- "dependencies": [
- "tool:gemini"
- ],
- "category": "utils"
- },
- {
- "id": "reviewer",
- "name": "Reviewer",
- "type": "subagent",
- "path": ".opencode/agent/subagents/code/reviewer.md",
- "description": "Performs code review with security and quality checks",
- "tags": [
- "review",
- "security",
- "quality"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "tester",
- "name": "Tester",
- "type": "subagent",
- "path": ".opencode/agent/subagents/code/tester.md",
- "description": "Writes unit and integration tests",
- "tags": [
- "testing",
- "tdd",
- "quality"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "documentation",
- "name": "Documentation Writer",
- "type": "subagent",
- "path": ".opencode/agent/subagents/core/documentation.md",
- "description": "Creates and updates documentation",
- "tags": [
- "docs",
- "documentation",
- "writing"
- ],
- "dependencies": [],
- "category": "essential"
- },
- {
- "id": "coder-agent",
- "name": "Coder Agent",
- "type": "subagent",
- "path": ".opencode/agent/subagents/code/coder-agent.md",
- "description": "Executes coding subtasks in sequence",
- "tags": [
- "coding",
- "implementation",
- "execution"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "build-agent",
- "name": "Build Agent",
- "type": "subagent",
- "path": ".opencode/agent/subagents/code/build-agent.md",
- "description": "Type checks and validates builds",
- "tags": [
- "build",
- "validation",
- "type-checking"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "codebase-pattern-analyst",
- "name": "Codebase Pattern Analyst",
- "type": "subagent",
- "path": ".opencode/agent/subagents/code/codebase-pattern-analyst.md",
- "description": "Analyzes and implements codebase patterns",
- "tags": [
- "patterns",
- "analysis",
- "architecture"
- ],
- "dependencies": [],
- "category": "specialized"
- },
- {
- "id": "domain-analyzer",
- "name": "Domain Analyzer",
- "type": "subagent",
- "path": ".opencode/agent/subagents/system-builder/domain-analyzer.md",
- "description": "Analyzes user domains and recommends agent architectures",
- "tags": [
- "analysis",
- "domain-modeling",
- "architecture"
- ],
- "dependencies": [],
- "category": "meta"
- },
- {
- "id": "agent-generator",
- "name": "Agent Generator",
- "type": "subagent",
- "path": ".opencode/agent/subagents/system-builder/agent-generator.md",
- "description": "Generates XML-optimized agent files following research-backed patterns",
- "tags": [
- "generation",
- "xml-optimization",
- "agents"
- ],
- "dependencies": [],
- "category": "meta"
- },
- {
- "id": "context-organizer",
- "name": "Context Organizer",
- "type": "subagent",
- "path": ".opencode/agent/subagents/system-builder/context-organizer.md",
- "description": "Organizes and generates modular context files",
- "tags": [
- "context",
- "organization",
- "knowledge-management"
- ],
- "dependencies": [],
- "category": "meta"
- },
- {
- "id": "workflow-designer",
- "name": "Workflow Designer",
- "type": "subagent",
- "path": ".opencode/agent/subagents/system-builder/workflow-designer.md",
- "description": "Designs complete workflow definitions with context dependencies",
- "tags": [
- "workflows",
- "design",
- "orchestration"
- ],
- "dependencies": [],
- "category": "meta"
- },
- {
- "id": "command-creator",
- "name": "Command Creator",
- "type": "subagent",
- "path": ".opencode/agent/subagents/system-builder/command-creator.md",
- "description": "Creates custom slash commands with clear syntax and examples",
- "tags": [
- "commands",
- "generation",
- "cli"
- ],
- "dependencies": [],
- "category": "meta"
- }
- ],
- "commands": [
- {
- "id": "test",
- "name": "Test Pipeline",
- "type": "command",
- "path": ".opencode/command/test.md",
- "description": "Run the complete testing pipeline",
- "tags": [
- "testing",
- "ci",
- "validation"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "commit",
- "name": "Smart Commit",
- "type": "command",
- "path": ".opencode/command/commit.md",
- "description": "Create intelligent git commits with context",
- "tags": [
- "git",
- "commit",
- "version-control"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "context",
- "name": "Context Manager",
- "type": "command",
- "path": ".opencode/command/context.md",
- "description": "Manage project context and documentation",
- "tags": [
- "context",
- "documentation",
- "management"
- ],
- "dependencies": [],
- "category": "essential"
- },
- {
- "id": "clean",
- "name": "Clean Project",
- "type": "command",
- "path": ".opencode/command/clean.md",
- "description": "Clean build artifacts and temporary files",
- "tags": [
- "cleanup",
- "maintenance",
- "build"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "optimize",
- "name": "Code Optimizer",
- "type": "command",
- "path": ".opencode/command/optimize.md",
- "description": "Optimize code performance and bundle size",
- "tags": [
- "optimization",
- "performance",
- "build"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "prompt-enhancer",
- "name": "Prompt Enhancer",
- "type": "command",
- "path": ".opencode/command/prompt-engineering/prompt-enhancer.md",
- "description": "Enhance and improve AI prompts",
- "tags": [
- "prompts",
- "ai",
- "enhancement"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "worktrees",
- "name": "Git Worktrees Manager",
- "type": "command",
- "path": ".opencode/command/worktrees.md",
- "description": "Manage git worktrees for parallel development",
- "tags": [
- "git",
- "worktrees",
- "workflow"
- ],
- "dependencies": [],
- "category": "specialized"
- },
- {
- "id": "build-context-system",
- "name": "Build Context System",
- "type": "command",
- "path": ".opencode/command/build-context-system.md",
- "description": "Interactive system builder for creating complete context-aware AI architectures",
- "tags": [
- "system-generation",
- "interactive",
- "architecture",
- "meta"
- ],
- "dependencies": [
- "agent:system-builder"
- ],
- "category": "meta"
- },
- {
- "id": "validate-repo",
- "name": "Validate Repository",
- "type": "command",
- "path": ".opencode/command/validate-repo.md",
- "description": "Comprehensive validation of repository consistency between CLI, docs, registry, and components",
- "tags": [
- "validation",
- "quality",
- "consistency",
- "maintenance"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "test-new-command",
- "name": "Test New Command",
- "type": "command",
- "path": ".opencode/command/test-new-command.md",
- "description": "Test command to verify auto-detection and registry updates work correctly\\\"",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "commit-openagents",
- "name": "Commit Openagents",
- "type": "command",
- "path": ".opencode/command/commit-openagents.md",
- "description": "Smart commit command for opencode-agents repository with automatic validation and conventional commits",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "prompt-optimizer",
- "name": "Prompt Optimizer",
- "type": "command",
- "path": ".opencode/command/prompt-engineering/prompt-optimizer.md",
- "description": "Advanced prompt optimizer: Research patterns + token efficiency + semantic preservation. Achieves 30-50% token reduction with 100% meaning preserved.\\\"",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- }
- ],
- "tools": [
- {
- "id": "gemini",
- "name": "Gemini AI Tool",
- "type": "tool",
- "path": ".opencode/tool/gemini/index.ts",
- "description": "Image generation, editing, and analysis using Gemini AI",
- "tags": [
- "ai",
- "images",
- "gemini"
- ],
- "dependencies": [
- "tool:env"
- ],
- "category": "specialized"
- },
- {
- "id": "env",
- "name": "Environment Manager",
- "type": "tool",
- "path": ".opencode/tool/env/index.ts",
- "description": "Load and manage environment variables securely",
- "tags": [
- "environment",
- "config",
- "security"
- ],
- "dependencies": [],
- "category": "essential"
- }
- ],
- "plugins": [
- {
- "id": "telegram-notify",
- "name": "Telegram Notifications",
- "type": "plugin",
- "path": ".opencode/plugin/telegram-notify.ts",
- "description": "Send notifications via Telegram bot",
- "tags": [
- "notifications",
- "telegram",
- "integration"
- ],
- "dependencies": [
- "tool:env"
- ],
- "category": "specialized"
- },
- {
- "id": "notify",
- "name": "Generic Notifier",
- "type": "plugin",
- "path": ".opencode/plugin/notify.ts",
- "description": "Generic notification system",
- "tags": [
- "notifications",
- "alerts"
- ],
- "dependencies": [],
- "category": "specialized"
- }
- ],
- "contexts": [
- {
- "id": "essential-patterns",
- "name": "Essential Patterns",
- "type": "context",
- "path": ".opencode/context/core/essential-patterns.md",
- "description": "Core development patterns and best practices",
- "tags": [
- "patterns",
- "best-practices",
- "guidelines"
- ],
- "dependencies": [],
- "category": "essential"
- },
- {
- "id": "project-context",
- "name": "Project Context",
- "type": "context",
- "path": ".opencode/context/project/project-context.md",
- "description": "Project-specific context and configuration",
- "tags": [
- "context",
- "project",
- "configuration"
- ],
- "dependencies": [],
- "category": "essential"
- },
- {
- "id": "standards-code",
- "name": "Code Standards",
- "type": "context",
- "path": ".opencode/context/core/standards/code.md",
- "description": "Modular, functional code standards",
- "tags": [
- "standards",
- "code",
- "quality"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "standards-patterns",
- "name": "Pattern Standards",
- "type": "context",
- "path": ".opencode/context/core/standards/patterns.md",
- "description": "Language-agnostic pattern catalog",
- "tags": [
- "standards",
- "patterns",
- "architecture"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "standards-tests",
- "name": "Testing Standards",
- "type": "context",
- "path": ".opencode/context/core/standards/tests.md",
- "description": "Testing best practices and guidelines",
- "tags": [
- "standards",
- "testing",
- "quality"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "standards-docs",
- "name": "Documentation Standards",
- "type": "context",
- "path": ".opencode/context/core/standards/docs.md",
- "description": "Documentation guidelines and templates",
- "tags": [
- "standards",
- "documentation",
- "writing"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "standards-analysis",
- "name": "Analysis Standards",
- "type": "context",
- "path": ".opencode/context/core/standards/analysis.md",
- "description": "Code analysis framework and guidelines",
- "tags": [
- "standards",
- "analysis",
- "quality"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "workflows-delegation",
- "name": "Delegation Workflow",
- "type": "context",
- "path": ".opencode/context/core/workflows/delegation.md",
- "description": "Delegation template and process",
- "tags": [
- "workflows",
- "delegation",
- "coordination"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "workflows-sessions",
- "name": "Session Management Workflow",
- "type": "context",
- "path": ".opencode/context/core/workflows/sessions.md",
- "description": "Session lifecycle and management",
- "tags": [
- "workflows",
- "sessions",
- "management"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "workflows-task-breakdown",
- "name": "Task Breakdown Workflow",
- "type": "context",
- "path": ".opencode/context/core/workflows/task-breakdown.md",
- "description": "Task breakdown methodology",
- "tags": [
- "workflows",
- "tasks",
- "planning"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "workflows-review",
- "name": "Code Review Workflow",
- "type": "context",
- "path": ".opencode/context/core/workflows/review.md",
- "description": "Code review process and guidelines",
- "tags": [
- "workflows",
- "review",
- "quality"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "system-context-guide",
- "name": "Context System Guide",
- "type": "context",
- "path": ".opencode/context/core/system/context-guide.md",
- "description": "Guide to the context system and file organization",
- "tags": [
- "system",
- "guide",
- "context"
- ],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "system-builder-guide",
- "name": "System Builder Guide",
- "type": "context",
- "path": ".opencode/context/system-builder-templates/SYSTEM-BUILDER-GUIDE.md",
- "description": "System Builder Guide",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "orchestrator-template",
- "name": "Orchestrator Template",
- "type": "context",
- "path": ".opencode/context/system-builder-templates/orchestrator-template.md",
- "description": "{domain} orchestrator for {primary_purpose}\\\"",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- },
- {
- "id": "subagent-template",
- "name": "Subagent Template",
- "type": "context",
- "path": ".opencode/context/system-builder-templates/subagent-template.md",
- "description": "{specific_task_description}\\\"",
- "tags": [],
- "dependencies": [],
- "category": "standard"
- }
- ],
- "config": [
- {
- "id": "env-example",
- "name": "Environment Template",
- "type": "config",
- "path": "env.example",
- "description": "Example environment configuration file",
- "tags": [
- "config",
- "environment",
- "template"
- ],
- "dependencies": [],
- "category": "essential"
- },
- {
- "id": "readme",
- "name": "README",
- "type": "config",
- "path": "README.md",
- "description": "Project documentation and setup guide",
- "tags": [
- "documentation",
- "readme",
- "guide"
- ],
- "dependencies": [],
- "category": "essential"
- }
- ]
- },
- "profiles": {
- "essential": {
- "name": "Essential (Minimal)",
- "description": "Minimal starter kit - universal agent with core subagents. Great for learning the system or lightweight tasks. Upgrade to Developer or Business for full features.",
- "components": [
- "agent:openagent",
- "subagent:task-manager",
- "subagent:documentation",
- "command:context",
- "command:clean",
- "tool:env",
- "context:essential-patterns",
- "context:project-context",
- "config:env-example"
- ]
- },
- "developer": {
- "name": "Developer",
- "description": "Complete software development environment with code generation, testing, review, and build tools. Recommended for most developers.",
- "badge": "RECOMMENDED",
- "components": [
- "agent:openagent",
- "agent:opencoder",
- "subagent:task-manager",
- "subagent:documentation",
- "subagent:coder-agent",
- "subagent:reviewer",
- "subagent:tester",
- "subagent:build-agent",
- "subagent:codebase-pattern-analyst",
- "command:commit",
- "command:test",
- "command:context",
- "command:clean",
- "command:optimize",
- "command:validate-repo",
- "tool:env",
- "context:essential-patterns",
- "context:project-context",
- "context:standards-code",
- "context:standards-patterns",
- "context:standards-tests",
- "context:standards-docs",
- "context:standards-analysis",
- "context:workflows-delegation",
- "context:workflows-sessions",
- "context:workflows-task-breakdown",
- "context:workflows-review",
- "context:system-context-guide",
- "config:env-example",
- "config:readme"
- ]
- },
- "business": {
- "name": "Business",
- "description": "Business process automation, content creation, and visual workflows. Includes image generation, notifications, and documentation tools.",
- "components": [
- "agent:openagent",
- "subagent:task-manager",
- "subagent:documentation",
- "subagent:image-specialist",
- "command:context",
- "command:clean",
- "command:prompt-enhancer",
- "tool:env",
- "tool:gemini",
- "plugin:notify",
- "plugin:telegram-notify",
- "context:essential-patterns",
- "context:project-context",
- "config:env-example",
- "config:readme"
- ]
- },
- "full": {
- "name": "Full",
- "description": "Everything included - all agents, subagents, tools, and plugins for maximum functionality.",
- "components": [
- "agent:openagent",
- "agent:opencoder",
- "subagent:task-manager",
- "subagent:documentation",
- "subagent:coder-agent",
- "subagent:reviewer",
- "subagent:tester",
- "subagent:build-agent",
- "subagent:codebase-pattern-analyst",
- "subagent:image-specialist",
- "command:test",
- "command:commit",
- "command:context",
- "command:clean",
- "command:optimize",
- "command:prompt-enhancer",
- "command:worktrees",
- "command:validate-repo",
- "tool:env",
- "tool:gemini",
- "plugin:notify",
- "plugin:telegram-notify",
- "context:essential-patterns",
- "context:project-context",
- "context:standards-code",
- "context:standards-patterns",
- "context:standards-tests",
- "context:standards-docs",
- "context:standards-analysis",
- "context:workflows-delegation",
- "context:workflows-sessions",
- "context:workflows-task-breakdown",
- "context:workflows-review",
- "context:system-context-guide",
- "config:env-example",
- "config:readme"
- ]
- },
- "advanced": {
- "name": "Advanced (Meta-Level)",
- "description": "Full installation plus System Builder for creating custom AI architectures. For power users and contributors.",
- "components": [
- "agent:openagent",
- "agent:opencoder",
- "agent:system-builder",
- "subagent:task-manager",
- "subagent:documentation",
- "subagent:coder-agent",
- "subagent:reviewer",
- "subagent:tester",
- "subagent:build-agent",
- "subagent:codebase-pattern-analyst",
- "subagent:image-specialist",
- "subagent:domain-analyzer",
- "subagent:agent-generator",
- "subagent:context-organizer",
- "subagent:workflow-designer",
- "subagent:command-creator",
- "command:test",
- "command:commit",
- "command:context",
- "command:clean",
- "command:optimize",
- "command:prompt-enhancer",
- "command:worktrees",
- "command:build-context-system",
- "command:validate-repo",
- "tool:env",
- "tool:gemini",
- "plugin:notify",
- "plugin:telegram-notify",
- "context:essential-patterns",
- "context:project-context",
- "context:standards-code",
- "context:standards-patterns",
- "context:standards-tests",
- "context:standards-docs",
- "context:standards-analysis",
- "context:workflows-delegation",
- "context:workflows-sessions",
- "context:workflows-task-breakdown",
- "context:workflows-review",
- "context:system-context-guide",
- "config:env-example",
- "config:readme"
- ],
- "additionalPaths": [
- ".Building/",
- ".github/workflows/"
- ]
- }
- },
- "metadata": {
- "lastUpdated": "2025-11-28",
- "schemaVersion": "1.0.0"
- }
- }
|