registry.json 24 KB

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