registry.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  1. {
  2. "version": "1.0.0",
  3. "repository": "https://github.com/darrenhinde/OpenAgents",
  4. "categories": {
  5. "essential": "Minimal components for basic functionality",
  6. "standard": "Standard components for typical use",
  7. "extended": "Extended components for advanced features",
  8. "specialized": "Specialized components for specific domains",
  9. "meta": "Meta-level components for system generation"
  10. },
  11. "components": {
  12. "agents": [
  13. {
  14. "id": "opencoder",
  15. "name": "OpenCoder",
  16. "type": "agent",
  17. "path": ".opencode/agent/opencoder.md",
  18. "description": "Specialized development agent for complex coding, architecture, and multi-file refactoring",
  19. "tags": [
  20. "development",
  21. "architecture",
  22. "coding",
  23. "refactoring"
  24. ],
  25. "dependencies": [
  26. "subagent:task-manager",
  27. "subagent:documentation",
  28. "subagent:coder-agent",
  29. "subagent:tester",
  30. "subagent:reviewer",
  31. "subagent:build-agent"
  32. ],
  33. "category": "standard"
  34. },
  35. {
  36. "id": "openagent",
  37. "name": "OpenAgent",
  38. "type": "agent",
  39. "path": ".opencode/agent/openagent.md",
  40. "description": "Universal agent for answering queries, executing tasks, and coordinating workflows across any domain",
  41. "tags": [
  42. "universal",
  43. "flexible",
  44. "coordination"
  45. ],
  46. "dependencies": [
  47. "subagent:task-manager",
  48. "subagent:documentation"
  49. ],
  50. "category": "essential"
  51. },
  52. {
  53. "id": "system-builder",
  54. "name": "System Builder",
  55. "type": "agent",
  56. "path": ".opencode/agent/system-builder.md",
  57. "description": "Generates complete context-aware AI systems from user requirements",
  58. "tags": [
  59. "system-generation",
  60. "architecture",
  61. "orchestration",
  62. "meta"
  63. ],
  64. "dependencies": [
  65. "subagent:domain-analyzer",
  66. "subagent:agent-generator",
  67. "subagent:context-organizer",
  68. "subagent:workflow-designer",
  69. "subagent:command-creator"
  70. ],
  71. "category": "meta"
  72. },
  73. {
  74. "id": "codebase-agent",
  75. "name": "Codebase Agent",
  76. "type": "agent",
  77. "path": ".opencode/agent/codebase-agent.md",
  78. "description": "Multi-language implementation agent for modular and functional development\\\"",
  79. "tags": [],
  80. "dependencies": [],
  81. "category": "standard"
  82. }
  83. ],
  84. "subagents": [
  85. {
  86. "id": "task-manager",
  87. "name": "Task Manager",
  88. "type": "subagent",
  89. "path": ".opencode/agent/subagents/core/task-manager.md",
  90. "description": "Breaks down complex features into small, verifiable subtasks",
  91. "tags": [
  92. "planning",
  93. "organization",
  94. "task-management"
  95. ],
  96. "dependencies": [],
  97. "category": "essential"
  98. },
  99. {
  100. "id": "image-specialist",
  101. "name": "Image Specialist",
  102. "type": "subagent",
  103. "path": ".opencode/agent/subagents/utils/image-specialist.md",
  104. "description": "Generates and edits images using Gemini AI",
  105. "tags": [
  106. "images",
  107. "ai",
  108. "generation"
  109. ],
  110. "dependencies": [
  111. "tool:gemini"
  112. ],
  113. "category": "utils"
  114. },
  115. {
  116. "id": "reviewer",
  117. "name": "Reviewer",
  118. "type": "subagent",
  119. "path": ".opencode/agent/subagents/code/reviewer.md",
  120. "description": "Performs code review with security and quality checks",
  121. "tags": [
  122. "review",
  123. "security",
  124. "quality"
  125. ],
  126. "dependencies": [],
  127. "category": "standard"
  128. },
  129. {
  130. "id": "tester",
  131. "name": "Tester",
  132. "type": "subagent",
  133. "path": ".opencode/agent/subagents/code/tester.md",
  134. "description": "Writes unit and integration tests",
  135. "tags": [
  136. "testing",
  137. "tdd",
  138. "quality"
  139. ],
  140. "dependencies": [],
  141. "category": "standard"
  142. },
  143. {
  144. "id": "documentation",
  145. "name": "Documentation Writer",
  146. "type": "subagent",
  147. "path": ".opencode/agent/subagents/core/documentation.md",
  148. "description": "Creates and updates documentation",
  149. "tags": [
  150. "docs",
  151. "documentation",
  152. "writing"
  153. ],
  154. "dependencies": [],
  155. "category": "essential"
  156. },
  157. {
  158. "id": "coder-agent",
  159. "name": "Coder Agent",
  160. "type": "subagent",
  161. "path": ".opencode/agent/subagents/code/coder-agent.md",
  162. "description": "Executes coding subtasks in sequence",
  163. "tags": [
  164. "coding",
  165. "implementation",
  166. "execution"
  167. ],
  168. "dependencies": [],
  169. "category": "standard"
  170. },
  171. {
  172. "id": "build-agent",
  173. "name": "Build Agent",
  174. "type": "subagent",
  175. "path": ".opencode/agent/subagents/code/build-agent.md",
  176. "description": "Type checks and validates builds",
  177. "tags": [
  178. "build",
  179. "validation",
  180. "type-checking"
  181. ],
  182. "dependencies": [],
  183. "category": "standard"
  184. },
  185. {
  186. "id": "codebase-pattern-analyst",
  187. "name": "Codebase Pattern Analyst",
  188. "type": "subagent",
  189. "path": ".opencode/agent/subagents/code/codebase-pattern-analyst.md",
  190. "description": "Analyzes and implements codebase patterns",
  191. "tags": [
  192. "patterns",
  193. "analysis",
  194. "architecture"
  195. ],
  196. "dependencies": [],
  197. "category": "specialized"
  198. },
  199. {
  200. "id": "domain-analyzer",
  201. "name": "Domain Analyzer",
  202. "type": "subagent",
  203. "path": ".opencode/agent/subagents/system-builder/domain-analyzer.md",
  204. "description": "Analyzes user domains and recommends agent architectures",
  205. "tags": [
  206. "analysis",
  207. "domain-modeling",
  208. "architecture"
  209. ],
  210. "dependencies": [],
  211. "category": "meta"
  212. },
  213. {
  214. "id": "agent-generator",
  215. "name": "Agent Generator",
  216. "type": "subagent",
  217. "path": ".opencode/agent/subagents/system-builder/agent-generator.md",
  218. "description": "Generates XML-optimized agent files following research-backed patterns",
  219. "tags": [
  220. "generation",
  221. "xml-optimization",
  222. "agents"
  223. ],
  224. "dependencies": [],
  225. "category": "meta"
  226. },
  227. {
  228. "id": "context-organizer",
  229. "name": "Context Organizer",
  230. "type": "subagent",
  231. "path": ".opencode/agent/subagents/system-builder/context-organizer.md",
  232. "description": "Organizes and generates modular context files",
  233. "tags": [
  234. "context",
  235. "organization",
  236. "knowledge-management"
  237. ],
  238. "dependencies": [],
  239. "category": "meta"
  240. },
  241. {
  242. "id": "workflow-designer",
  243. "name": "Workflow Designer",
  244. "type": "subagent",
  245. "path": ".opencode/agent/subagents/system-builder/workflow-designer.md",
  246. "description": "Designs complete workflow definitions with context dependencies",
  247. "tags": [
  248. "workflows",
  249. "design",
  250. "orchestration"
  251. ],
  252. "dependencies": [],
  253. "category": "meta"
  254. },
  255. {
  256. "id": "command-creator",
  257. "name": "Command Creator",
  258. "type": "subagent",
  259. "path": ".opencode/agent/subagents/system-builder/command-creator.md",
  260. "description": "Creates custom slash commands with clear syntax and examples",
  261. "tags": [
  262. "commands",
  263. "generation",
  264. "cli"
  265. ],
  266. "dependencies": [],
  267. "category": "meta"
  268. }
  269. ],
  270. "commands": [
  271. {
  272. "id": "test",
  273. "name": "Test Pipeline",
  274. "type": "command",
  275. "path": ".opencode/command/test.md",
  276. "description": "Run the complete testing pipeline",
  277. "tags": [
  278. "testing",
  279. "ci",
  280. "validation"
  281. ],
  282. "dependencies": [],
  283. "category": "standard"
  284. },
  285. {
  286. "id": "commit",
  287. "name": "Smart Commit",
  288. "type": "command",
  289. "path": ".opencode/command/commit.md",
  290. "description": "Create intelligent git commits with context",
  291. "tags": [
  292. "git",
  293. "commit",
  294. "version-control"
  295. ],
  296. "dependencies": [],
  297. "category": "standard"
  298. },
  299. {
  300. "id": "context",
  301. "name": "Context Manager",
  302. "type": "command",
  303. "path": ".opencode/command/context.md",
  304. "description": "Manage project context and documentation",
  305. "tags": [
  306. "context",
  307. "documentation",
  308. "management"
  309. ],
  310. "dependencies": [],
  311. "category": "essential"
  312. },
  313. {
  314. "id": "clean",
  315. "name": "Clean Project",
  316. "type": "command",
  317. "path": ".opencode/command/clean.md",
  318. "description": "Clean build artifacts and temporary files",
  319. "tags": [
  320. "cleanup",
  321. "maintenance",
  322. "build"
  323. ],
  324. "dependencies": [],
  325. "category": "standard"
  326. },
  327. {
  328. "id": "optimize",
  329. "name": "Code Optimizer",
  330. "type": "command",
  331. "path": ".opencode/command/optimize.md",
  332. "description": "Optimize code performance and bundle size",
  333. "tags": [
  334. "optimization",
  335. "performance",
  336. "build"
  337. ],
  338. "dependencies": [],
  339. "category": "standard"
  340. },
  341. {
  342. "id": "prompt-enhancer",
  343. "name": "Prompt Enhancer",
  344. "type": "command",
  345. "path": ".opencode/command/prompt-engineering/prompt-enhancer.md",
  346. "description": "Enhance and improve AI prompts",
  347. "tags": [
  348. "prompts",
  349. "ai",
  350. "enhancement"
  351. ],
  352. "dependencies": [],
  353. "category": "standard"
  354. },
  355. {
  356. "id": "worktrees",
  357. "name": "Git Worktrees Manager",
  358. "type": "command",
  359. "path": ".opencode/command/worktrees.md",
  360. "description": "Manage git worktrees for parallel development",
  361. "tags": [
  362. "git",
  363. "worktrees",
  364. "workflow"
  365. ],
  366. "dependencies": [],
  367. "category": "specialized"
  368. },
  369. {
  370. "id": "build-context-system",
  371. "name": "Build Context System",
  372. "type": "command",
  373. "path": ".opencode/command/build-context-system.md",
  374. "description": "Interactive system builder for creating complete context-aware AI architectures",
  375. "tags": [
  376. "system-generation",
  377. "interactive",
  378. "architecture",
  379. "meta"
  380. ],
  381. "dependencies": [
  382. "agent:system-builder"
  383. ],
  384. "category": "meta"
  385. },
  386. {
  387. "id": "validate-repo",
  388. "name": "Validate Repository",
  389. "type": "command",
  390. "path": ".opencode/command/validate-repo.md",
  391. "description": "Comprehensive validation of repository consistency between CLI, docs, registry, and components",
  392. "tags": [
  393. "validation",
  394. "quality",
  395. "consistency",
  396. "maintenance"
  397. ],
  398. "dependencies": [],
  399. "category": "standard"
  400. },
  401. {
  402. "id": "test-new-command",
  403. "name": "Test New Command",
  404. "type": "command",
  405. "path": ".opencode/command/test-new-command.md",
  406. "description": "Test command to verify auto-detection and registry updates work correctly\\\"",
  407. "tags": [],
  408. "dependencies": [],
  409. "category": "standard"
  410. },
  411. {
  412. "id": "commit-openagents",
  413. "name": "Commit Openagents",
  414. "type": "command",
  415. "path": ".opencode/command/commit-openagents.md",
  416. "description": "Smart commit command for opencode-agents repository with automatic validation and conventional commits",
  417. "tags": [],
  418. "dependencies": [],
  419. "category": "standard"
  420. },
  421. {
  422. "id": "prompt-optimizer",
  423. "name": "Prompt Optimizer",
  424. "type": "command",
  425. "path": ".opencode/command/prompt-engineering/prompt-optimizer.md",
  426. "description": "Advanced prompt optimizer: Research patterns + token efficiency + semantic preservation. Achieves 30-50% token reduction with 100% meaning preserved.\\\"",
  427. "tags": [],
  428. "dependencies": [],
  429. "category": "standard"
  430. }
  431. ],
  432. "tools": [
  433. {
  434. "id": "gemini",
  435. "name": "Gemini AI Tool",
  436. "type": "tool",
  437. "path": ".opencode/tool/gemini/index.ts",
  438. "description": "Image generation, editing, and analysis using Gemini AI",
  439. "tags": [
  440. "ai",
  441. "images",
  442. "gemini"
  443. ],
  444. "dependencies": [
  445. "tool:env"
  446. ],
  447. "category": "specialized"
  448. },
  449. {
  450. "id": "env",
  451. "name": "Environment Manager",
  452. "type": "tool",
  453. "path": ".opencode/tool/env/index.ts",
  454. "description": "Load and manage environment variables securely",
  455. "tags": [
  456. "environment",
  457. "config",
  458. "security"
  459. ],
  460. "dependencies": [],
  461. "category": "essential"
  462. }
  463. ],
  464. "plugins": [
  465. {
  466. "id": "telegram-notify",
  467. "name": "Telegram Notifications",
  468. "type": "plugin",
  469. "path": ".opencode/plugin/telegram-notify.ts",
  470. "description": "Send notifications via Telegram bot",
  471. "tags": [
  472. "notifications",
  473. "telegram",
  474. "integration"
  475. ],
  476. "dependencies": [
  477. "tool:env"
  478. ],
  479. "category": "specialized"
  480. },
  481. {
  482. "id": "notify",
  483. "name": "Generic Notifier",
  484. "type": "plugin",
  485. "path": ".opencode/plugin/notify.ts",
  486. "description": "Generic notification system",
  487. "tags": [
  488. "notifications",
  489. "alerts"
  490. ],
  491. "dependencies": [],
  492. "category": "specialized"
  493. }
  494. ],
  495. "contexts": [
  496. {
  497. "id": "essential-patterns",
  498. "name": "Essential Patterns",
  499. "type": "context",
  500. "path": ".opencode/context/core/essential-patterns.md",
  501. "description": "Core development patterns and best practices",
  502. "tags": [
  503. "patterns",
  504. "best-practices",
  505. "guidelines"
  506. ],
  507. "dependencies": [],
  508. "category": "essential"
  509. },
  510. {
  511. "id": "project-context",
  512. "name": "Project Context",
  513. "type": "context",
  514. "path": ".opencode/context/project/project-context.md",
  515. "description": "Project-specific context and configuration",
  516. "tags": [
  517. "context",
  518. "project",
  519. "configuration"
  520. ],
  521. "dependencies": [],
  522. "category": "essential"
  523. },
  524. {
  525. "id": "standards-code",
  526. "name": "Code Standards",
  527. "type": "context",
  528. "path": ".opencode/context/core/standards/code.md",
  529. "description": "Modular, functional code standards",
  530. "tags": [
  531. "standards",
  532. "code",
  533. "quality"
  534. ],
  535. "dependencies": [],
  536. "category": "standard"
  537. },
  538. {
  539. "id": "standards-patterns",
  540. "name": "Pattern Standards",
  541. "type": "context",
  542. "path": ".opencode/context/core/standards/patterns.md",
  543. "description": "Language-agnostic pattern catalog",
  544. "tags": [
  545. "standards",
  546. "patterns",
  547. "architecture"
  548. ],
  549. "dependencies": [],
  550. "category": "standard"
  551. },
  552. {
  553. "id": "standards-tests",
  554. "name": "Testing Standards",
  555. "type": "context",
  556. "path": ".opencode/context/core/standards/tests.md",
  557. "description": "Testing best practices and guidelines",
  558. "tags": [
  559. "standards",
  560. "testing",
  561. "quality"
  562. ],
  563. "dependencies": [],
  564. "category": "standard"
  565. },
  566. {
  567. "id": "standards-docs",
  568. "name": "Documentation Standards",
  569. "type": "context",
  570. "path": ".opencode/context/core/standards/docs.md",
  571. "description": "Documentation guidelines and templates",
  572. "tags": [
  573. "standards",
  574. "documentation",
  575. "writing"
  576. ],
  577. "dependencies": [],
  578. "category": "standard"
  579. },
  580. {
  581. "id": "standards-analysis",
  582. "name": "Analysis Standards",
  583. "type": "context",
  584. "path": ".opencode/context/core/standards/analysis.md",
  585. "description": "Code analysis framework and guidelines",
  586. "tags": [
  587. "standards",
  588. "analysis",
  589. "quality"
  590. ],
  591. "dependencies": [],
  592. "category": "standard"
  593. },
  594. {
  595. "id": "workflows-delegation",
  596. "name": "Delegation Workflow",
  597. "type": "context",
  598. "path": ".opencode/context/core/workflows/delegation.md",
  599. "description": "Delegation template and process",
  600. "tags": [
  601. "workflows",
  602. "delegation",
  603. "coordination"
  604. ],
  605. "dependencies": [],
  606. "category": "standard"
  607. },
  608. {
  609. "id": "workflows-sessions",
  610. "name": "Session Management Workflow",
  611. "type": "context",
  612. "path": ".opencode/context/core/workflows/sessions.md",
  613. "description": "Session lifecycle and management",
  614. "tags": [
  615. "workflows",
  616. "sessions",
  617. "management"
  618. ],
  619. "dependencies": [],
  620. "category": "standard"
  621. },
  622. {
  623. "id": "workflows-task-breakdown",
  624. "name": "Task Breakdown Workflow",
  625. "type": "context",
  626. "path": ".opencode/context/core/workflows/task-breakdown.md",
  627. "description": "Task breakdown methodology",
  628. "tags": [
  629. "workflows",
  630. "tasks",
  631. "planning"
  632. ],
  633. "dependencies": [],
  634. "category": "standard"
  635. },
  636. {
  637. "id": "workflows-review",
  638. "name": "Code Review Workflow",
  639. "type": "context",
  640. "path": ".opencode/context/core/workflows/review.md",
  641. "description": "Code review process and guidelines",
  642. "tags": [
  643. "workflows",
  644. "review",
  645. "quality"
  646. ],
  647. "dependencies": [],
  648. "category": "standard"
  649. },
  650. {
  651. "id": "system-context-guide",
  652. "name": "Context System Guide",
  653. "type": "context",
  654. "path": ".opencode/context/core/system/context-guide.md",
  655. "description": "Guide to the context system and file organization",
  656. "tags": [
  657. "system",
  658. "guide",
  659. "context"
  660. ],
  661. "dependencies": [],
  662. "category": "standard"
  663. },
  664. {
  665. "id": "system-builder-guide",
  666. "name": "System Builder Guide",
  667. "type": "context",
  668. "path": ".opencode/context/system-builder-templates/SYSTEM-BUILDER-GUIDE.md",
  669. "description": "System Builder Guide",
  670. "tags": [],
  671. "dependencies": [],
  672. "category": "standard"
  673. },
  674. {
  675. "id": "orchestrator-template",
  676. "name": "Orchestrator Template",
  677. "type": "context",
  678. "path": ".opencode/context/system-builder-templates/orchestrator-template.md",
  679. "description": "{domain} orchestrator for {primary_purpose}\\\"",
  680. "tags": [],
  681. "dependencies": [],
  682. "category": "standard"
  683. },
  684. {
  685. "id": "subagent-template",
  686. "name": "Subagent Template",
  687. "type": "context",
  688. "path": ".opencode/context/system-builder-templates/subagent-template.md",
  689. "description": "{specific_task_description}\\\"",
  690. "tags": [],
  691. "dependencies": [],
  692. "category": "standard"
  693. }
  694. ],
  695. "config": [
  696. {
  697. "id": "env-example",
  698. "name": "Environment Template",
  699. "type": "config",
  700. "path": "env.example",
  701. "description": "Example environment configuration file",
  702. "tags": [
  703. "config",
  704. "environment",
  705. "template"
  706. ],
  707. "dependencies": [],
  708. "category": "essential"
  709. },
  710. {
  711. "id": "readme",
  712. "name": "README",
  713. "type": "config",
  714. "path": "README.md",
  715. "description": "Project documentation and setup guide",
  716. "tags": [
  717. "documentation",
  718. "readme",
  719. "guide"
  720. ],
  721. "dependencies": [],
  722. "category": "essential"
  723. }
  724. ]
  725. },
  726. "profiles": {
  727. "essential": {
  728. "name": "Essential (Minimal)",
  729. "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.",
  730. "components": [
  731. "agent:openagent",
  732. "subagent:task-manager",
  733. "subagent:documentation",
  734. "command:context",
  735. "command:clean",
  736. "tool:env",
  737. "context:essential-patterns",
  738. "context:project-context",
  739. "config:env-example"
  740. ]
  741. },
  742. "developer": {
  743. "name": "Developer",
  744. "description": "Complete software development environment with code generation, testing, review, and build tools. Recommended for most developers.",
  745. "badge": "RECOMMENDED",
  746. "components": [
  747. "agent:openagent",
  748. "agent:opencoder",
  749. "subagent:task-manager",
  750. "subagent:documentation",
  751. "subagent:coder-agent",
  752. "subagent:reviewer",
  753. "subagent:tester",
  754. "subagent:build-agent",
  755. "subagent:codebase-pattern-analyst",
  756. "command:commit",
  757. "command:test",
  758. "command:context",
  759. "command:clean",
  760. "command:optimize",
  761. "command:validate-repo",
  762. "tool:env",
  763. "context:essential-patterns",
  764. "context:project-context",
  765. "context:standards-code",
  766. "context:standards-patterns",
  767. "context:standards-tests",
  768. "context:standards-docs",
  769. "context:standards-analysis",
  770. "context:workflows-delegation",
  771. "context:workflows-sessions",
  772. "context:workflows-task-breakdown",
  773. "context:workflows-review",
  774. "context:system-context-guide",
  775. "config:env-example",
  776. "config:readme"
  777. ]
  778. },
  779. "business": {
  780. "name": "Business",
  781. "description": "Business process automation, content creation, and visual workflows. Includes image generation, notifications, and documentation tools.",
  782. "components": [
  783. "agent:openagent",
  784. "subagent:task-manager",
  785. "subagent:documentation",
  786. "subagent:image-specialist",
  787. "command:context",
  788. "command:clean",
  789. "command:prompt-enhancer",
  790. "tool:env",
  791. "tool:gemini",
  792. "plugin:notify",
  793. "plugin:telegram-notify",
  794. "context:essential-patterns",
  795. "context:project-context",
  796. "config:env-example",
  797. "config:readme"
  798. ]
  799. },
  800. "full": {
  801. "name": "Full",
  802. "description": "Everything included - all agents, subagents, tools, and plugins for maximum functionality.",
  803. "components": [
  804. "agent:openagent",
  805. "agent:opencoder",
  806. "subagent:task-manager",
  807. "subagent:documentation",
  808. "subagent:coder-agent",
  809. "subagent:reviewer",
  810. "subagent:tester",
  811. "subagent:build-agent",
  812. "subagent:codebase-pattern-analyst",
  813. "subagent:image-specialist",
  814. "command:test",
  815. "command:commit",
  816. "command:context",
  817. "command:clean",
  818. "command:optimize",
  819. "command:prompt-enhancer",
  820. "command:worktrees",
  821. "command:validate-repo",
  822. "tool:env",
  823. "tool:gemini",
  824. "plugin:notify",
  825. "plugin:telegram-notify",
  826. "context:essential-patterns",
  827. "context:project-context",
  828. "context:standards-code",
  829. "context:standards-patterns",
  830. "context:standards-tests",
  831. "context:standards-docs",
  832. "context:standards-analysis",
  833. "context:workflows-delegation",
  834. "context:workflows-sessions",
  835. "context:workflows-task-breakdown",
  836. "context:workflows-review",
  837. "context:system-context-guide",
  838. "config:env-example",
  839. "config:readme"
  840. ]
  841. },
  842. "advanced": {
  843. "name": "Advanced (Meta-Level)",
  844. "description": "Full installation plus System Builder for creating custom AI architectures. For power users and contributors.",
  845. "components": [
  846. "agent:openagent",
  847. "agent:opencoder",
  848. "agent:system-builder",
  849. "subagent:task-manager",
  850. "subagent:documentation",
  851. "subagent:coder-agent",
  852. "subagent:reviewer",
  853. "subagent:tester",
  854. "subagent:build-agent",
  855. "subagent:codebase-pattern-analyst",
  856. "subagent:image-specialist",
  857. "subagent:domain-analyzer",
  858. "subagent:agent-generator",
  859. "subagent:context-organizer",
  860. "subagent:workflow-designer",
  861. "subagent:command-creator",
  862. "command:test",
  863. "command:commit",
  864. "command:context",
  865. "command:clean",
  866. "command:optimize",
  867. "command:prompt-enhancer",
  868. "command:worktrees",
  869. "command:build-context-system",
  870. "command:validate-repo",
  871. "tool:env",
  872. "tool:gemini",
  873. "plugin:notify",
  874. "plugin:telegram-notify",
  875. "context:essential-patterns",
  876. "context:project-context",
  877. "context:standards-code",
  878. "context:standards-patterns",
  879. "context:standards-tests",
  880. "context:standards-docs",
  881. "context:standards-analysis",
  882. "context:workflows-delegation",
  883. "context:workflows-sessions",
  884. "context:workflows-task-breakdown",
  885. "context:workflows-review",
  886. "context:system-context-guide",
  887. "config:env-example",
  888. "config:readme"
  889. ],
  890. "additionalPaths": [
  891. ".Building/",
  892. ".github/workflows/"
  893. ]
  894. }
  895. },
  896. "metadata": {
  897. "lastUpdated": "2025-11-28",
  898. "schemaVersion": "1.0.0"
  899. }
  900. }