registry.json 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. {
  2. "version": "1.0.0",
  3. "repository": "https://github.com/darrenhinde/opencode-agents",
  4. "components": {
  5. "agents": [
  6. {
  7. "id": "task-manager",
  8. "name": "Task Manager",
  9. "type": "agent",
  10. "path": ".opencode/agent/task-manager.md",
  11. "description": "Breaks down complex features into small, verifiable subtasks",
  12. "tags": [
  13. "planning",
  14. "organization",
  15. "task-management"
  16. ],
  17. "dependencies": [],
  18. "category": "core"
  19. },
  20. {
  21. "id": "codebase-agent",
  22. "name": "Codebase Agent",
  23. "type": "agent",
  24. "path": ".opencode/agent/codebase-agent.md",
  25. "description": "Analyzes codebase patterns and architecture",
  26. "tags": [
  27. "analysis",
  28. "architecture",
  29. "patterns"
  30. ],
  31. "dependencies": [],
  32. "category": "core"
  33. },
  34. {
  35. "id": "image-specialist",
  36. "name": "Image Specialist",
  37. "type": "agent",
  38. "path": ".opencode/agent/image-specialist.md",
  39. "description": "Generates and edits images using Gemini AI",
  40. "tags": [
  41. "images",
  42. "ai",
  43. "generation"
  44. ],
  45. "dependencies": [
  46. "tool:gemini"
  47. ],
  48. "category": "extended"
  49. },
  50. {
  51. "id": "workflow-orchestrator",
  52. "name": "Workflow Orchestrator",
  53. "type": "agent",
  54. "path": ".opencode/agent/workflow-orchestrator.md",
  55. "description": "Orchestrates complex multi-agent workflows",
  56. "tags": [
  57. "orchestration",
  58. "workflow",
  59. "automation"
  60. ],
  61. "dependencies": [],
  62. "category": "extended"
  63. },
  64. {
  65. "id": "system-builder",
  66. "name": "System Builder",
  67. "type": "agent",
  68. "path": ".opencode/agent/system-builder.md",
  69. "description": "Generates complete context-aware AI systems from user requirements",
  70. "tags": [
  71. "system-generation",
  72. "architecture",
  73. "orchestration",
  74. "meta"
  75. ],
  76. "dependencies": [
  77. "subagent:domain-analyzer",
  78. "subagent:agent-generator",
  79. "subagent:context-organizer",
  80. "subagent:workflow-designer",
  81. "subagent:command-creator"
  82. ],
  83. "category": "advanced"
  84. }
  85. ],
  86. "subagents": [
  87. {
  88. "id": "reviewer",
  89. "name": "Code Reviewer",
  90. "type": "subagent",
  91. "path": ".opencode/agent/subagents/reviewer.md",
  92. "description": "Performs code review with security and quality checks",
  93. "tags": [
  94. "review",
  95. "security",
  96. "quality"
  97. ],
  98. "dependencies": [],
  99. "category": "core"
  100. },
  101. {
  102. "id": "tester",
  103. "name": "Test Writer",
  104. "type": "subagent",
  105. "path": ".opencode/agent/subagents/tester.md",
  106. "description": "Writes unit and integration tests",
  107. "tags": [
  108. "testing",
  109. "tdd",
  110. "quality"
  111. ],
  112. "dependencies": [],
  113. "category": "core"
  114. },
  115. {
  116. "id": "documentation",
  117. "name": "Documentation Writer",
  118. "type": "subagent",
  119. "path": ".opencode/agent/subagents/documentation.md",
  120. "description": "Creates and updates documentation",
  121. "tags": [
  122. "docs",
  123. "documentation",
  124. "writing"
  125. ],
  126. "dependencies": [],
  127. "category": "core"
  128. },
  129. {
  130. "id": "coder-agent",
  131. "name": "Coder Agent",
  132. "type": "subagent",
  133. "path": ".opencode/agent/subagents/coder-agent.md",
  134. "description": "Executes coding subtasks in sequence",
  135. "tags": [
  136. "coding",
  137. "implementation",
  138. "execution"
  139. ],
  140. "dependencies": [],
  141. "category": "core"
  142. },
  143. {
  144. "id": "build-agent",
  145. "name": "Build Agent",
  146. "type": "subagent",
  147. "path": ".opencode/agent/subagents/build-agent.md",
  148. "description": "Type checks and validates builds",
  149. "tags": [
  150. "build",
  151. "validation",
  152. "type-checking"
  153. ],
  154. "dependencies": [],
  155. "category": "core"
  156. },
  157. {
  158. "id": "codebase-pattern-analyst",
  159. "name": "Codebase Pattern Analyst",
  160. "type": "subagent",
  161. "path": ".opencode/agent/subagents/codebase-pattern-analyst.md",
  162. "description": "Analyzes and implements codebase patterns",
  163. "tags": [
  164. "patterns",
  165. "analysis",
  166. "architecture"
  167. ],
  168. "dependencies": [],
  169. "category": "extended"
  170. },
  171. {
  172. "id": "domain-analyzer",
  173. "name": "Domain Analyzer",
  174. "type": "subagent",
  175. "path": ".opencode/agent/subagents/domain-analyzer.md",
  176. "description": "Analyzes user domains and recommends agent architectures",
  177. "tags": [
  178. "analysis",
  179. "domain-modeling",
  180. "architecture"
  181. ],
  182. "dependencies": [],
  183. "category": "advanced"
  184. },
  185. {
  186. "id": "agent-generator",
  187. "name": "Agent Generator",
  188. "type": "subagent",
  189. "path": ".opencode/agent/subagents/agent-generator.md",
  190. "description": "Generates XML-optimized agent files following research-backed patterns",
  191. "tags": [
  192. "generation",
  193. "xml-optimization",
  194. "agents"
  195. ],
  196. "dependencies": [],
  197. "category": "advanced"
  198. },
  199. {
  200. "id": "context-organizer",
  201. "name": "Context Organizer",
  202. "type": "subagent",
  203. "path": ".opencode/agent/subagents/context-organizer.md",
  204. "description": "Organizes and generates modular context files",
  205. "tags": [
  206. "context",
  207. "organization",
  208. "knowledge-management"
  209. ],
  210. "dependencies": [],
  211. "category": "advanced"
  212. },
  213. {
  214. "id": "workflow-designer",
  215. "name": "Workflow Designer",
  216. "type": "subagent",
  217. "path": ".opencode/agent/subagents/workflow-designer.md",
  218. "description": "Designs complete workflow definitions with context dependencies",
  219. "tags": [
  220. "workflows",
  221. "design",
  222. "orchestration"
  223. ],
  224. "dependencies": [],
  225. "category": "advanced"
  226. },
  227. {
  228. "id": "command-creator",
  229. "name": "Command Creator",
  230. "type": "subagent",
  231. "path": ".opencode/agent/subagents/command-creator.md",
  232. "description": "Creates custom slash commands with clear syntax and examples",
  233. "tags": [
  234. "commands",
  235. "generation",
  236. "cli"
  237. ],
  238. "dependencies": [],
  239. "category": "advanced"
  240. }
  241. ],
  242. "commands": [
  243. {
  244. "id": "test",
  245. "name": "Test Pipeline",
  246. "type": "command",
  247. "path": ".opencode/command/test.md",
  248. "description": "Run the complete testing pipeline",
  249. "tags": [
  250. "testing",
  251. "ci",
  252. "validation"
  253. ],
  254. "dependencies": [],
  255. "category": "core"
  256. },
  257. {
  258. "id": "commit",
  259. "name": "Smart Commit",
  260. "type": "command",
  261. "path": ".opencode/command/commit.md",
  262. "description": "Create intelligent git commits with context",
  263. "tags": [
  264. "git",
  265. "commit",
  266. "version-control"
  267. ],
  268. "dependencies": [],
  269. "category": "core"
  270. },
  271. {
  272. "id": "context",
  273. "name": "Context Manager",
  274. "type": "command",
  275. "path": ".opencode/command/context.md",
  276. "description": "Manage project context and documentation",
  277. "tags": [
  278. "context",
  279. "documentation",
  280. "management"
  281. ],
  282. "dependencies": [],
  283. "category": "core"
  284. },
  285. {
  286. "id": "clean",
  287. "name": "Clean Project",
  288. "type": "command",
  289. "path": ".opencode/command/clean.md",
  290. "description": "Clean build artifacts and temporary files",
  291. "tags": [
  292. "cleanup",
  293. "maintenance",
  294. "build"
  295. ],
  296. "dependencies": [],
  297. "category": "extended"
  298. },
  299. {
  300. "id": "optimize",
  301. "name": "Code Optimizer",
  302. "type": "command",
  303. "path": ".opencode/command/optimize.md",
  304. "description": "Optimize code performance and bundle size",
  305. "tags": [
  306. "optimization",
  307. "performance",
  308. "build"
  309. ],
  310. "dependencies": [],
  311. "category": "extended"
  312. },
  313. {
  314. "id": "prompt-enhancer",
  315. "name": "Prompt Enhancer",
  316. "type": "command",
  317. "path": ".opencode/command/prompt-enchancer.md",
  318. "description": "Enhance and improve AI prompts",
  319. "tags": [
  320. "prompts",
  321. "ai",
  322. "enhancement"
  323. ],
  324. "dependencies": [],
  325. "category": "extended"
  326. },
  327. {
  328. "id": "worktrees",
  329. "name": "Git Worktrees Manager",
  330. "type": "command",
  331. "path": ".opencode/command/worktrees.md",
  332. "description": "Manage git worktrees for parallel development",
  333. "tags": [
  334. "git",
  335. "worktrees",
  336. "workflow"
  337. ],
  338. "dependencies": [],
  339. "category": "advanced"
  340. },
  341. {
  342. "id": "build-context-system",
  343. "name": "Build Context System",
  344. "type": "command",
  345. "path": ".opencode/command/build-context-system.md",
  346. "description": "Interactive system builder for creating complete context-aware AI architectures",
  347. "tags": [
  348. "system-generation",
  349. "interactive",
  350. "architecture",
  351. "meta"
  352. ],
  353. "dependencies": [
  354. "agent:system-builder"
  355. ],
  356. "category": "advanced"
  357. }
  358. ],
  359. "tools": [
  360. {
  361. "id": "gemini",
  362. "name": "Gemini AI Tool",
  363. "type": "tool",
  364. "path": ".opencode/tool/gemini/index.ts",
  365. "description": "Image generation, editing, and analysis using Gemini AI",
  366. "tags": [
  367. "ai",
  368. "images",
  369. "gemini"
  370. ],
  371. "dependencies": [
  372. "tool:env"
  373. ],
  374. "category": "extended"
  375. },
  376. {
  377. "id": "env",
  378. "name": "Environment Manager",
  379. "type": "tool",
  380. "path": ".opencode/tool/env/index.ts",
  381. "description": "Load and manage environment variables securely",
  382. "tags": [
  383. "environment",
  384. "config",
  385. "security"
  386. ],
  387. "dependencies": [],
  388. "category": "core"
  389. }
  390. ],
  391. "plugins": [
  392. {
  393. "id": "telegram-notify",
  394. "name": "Telegram Notifications",
  395. "type": "plugin",
  396. "path": ".opencode/plugin/telegram-notify.ts",
  397. "description": "Send notifications via Telegram bot",
  398. "tags": [
  399. "notifications",
  400. "telegram",
  401. "integration"
  402. ],
  403. "dependencies": [
  404. "tool:env"
  405. ],
  406. "category": "extended"
  407. },
  408. {
  409. "id": "notify",
  410. "name": "Generic Notifier",
  411. "type": "plugin",
  412. "path": ".opencode/plugin/notify.ts",
  413. "description": "Generic notification system",
  414. "tags": [
  415. "notifications",
  416. "alerts"
  417. ],
  418. "dependencies": [],
  419. "category": "extended"
  420. }
  421. ],
  422. "contexts": [
  423. {
  424. "id": "essential-patterns",
  425. "name": "Essential Patterns",
  426. "type": "context",
  427. "path": ".opencode/context/core/essential-patterns.md",
  428. "description": "Core development patterns and best practices",
  429. "tags": [
  430. "patterns",
  431. "best-practices",
  432. "guidelines"
  433. ],
  434. "dependencies": [],
  435. "category": "core"
  436. },
  437. {
  438. "id": "project-context",
  439. "name": "Project Context",
  440. "type": "context",
  441. "path": ".opencode/context/project/project-context.md",
  442. "description": "Project-specific context and configuration",
  443. "tags": [
  444. "context",
  445. "project",
  446. "configuration"
  447. ],
  448. "dependencies": [],
  449. "category": "core"
  450. }
  451. ],
  452. "config": [
  453. {
  454. "id": "env-example",
  455. "name": "Environment Template",
  456. "type": "config",
  457. "path": "env.example",
  458. "description": "Example environment configuration file",
  459. "tags": [
  460. "config",
  461. "environment",
  462. "template"
  463. ],
  464. "dependencies": [],
  465. "category": "core"
  466. },
  467. {
  468. "id": "readme",
  469. "name": "README",
  470. "type": "config",
  471. "path": "README.md",
  472. "description": "Project documentation and setup guide",
  473. "tags": [
  474. "documentation",
  475. "readme",
  476. "guide"
  477. ],
  478. "dependencies": [],
  479. "category": "core"
  480. }
  481. ]
  482. },
  483. "profiles": {
  484. "core": {
  485. "name": "Core",
  486. "description": "Essential agents and commands for basic OpenCode usage",
  487. "components": [
  488. "agent:task-manager",
  489. "agent:codebase-agent",
  490. "subagent:reviewer",
  491. "subagent:tester",
  492. "subagent:documentation",
  493. "subagent:coder-agent",
  494. "subagent:build-agent",
  495. "command:test",
  496. "command:commit",
  497. "command:context",
  498. "command:prompt-enhancer",
  499. "context:essential-patterns",
  500. "context:project-context",
  501. "config:env-example",
  502. "config:readme"
  503. ]
  504. },
  505. "developer": {
  506. "name": "Developer",
  507. "description": "Balanced setup for daily development work with all core features plus useful extensions",
  508. "components": [
  509. "agent:task-manager",
  510. "agent:codebase-agent",
  511. "agent:image-specialist",
  512. "agent:workflow-orchestrator",
  513. "subagent:reviewer",
  514. "subagent:tester",
  515. "subagent:documentation",
  516. "subagent:coder-agent",
  517. "subagent:build-agent",
  518. "subagent:codebase-pattern-analyst",
  519. "command:test",
  520. "command:commit",
  521. "command:context",
  522. "command:clean",
  523. "command:optimize",
  524. "command:prompt-enhancer",
  525. "tool:env",
  526. "tool:gemini",
  527. "context:essential-patterns",
  528. "context:project-context",
  529. "config:env-example",
  530. "config:readme"
  531. ]
  532. },
  533. "full": {
  534. "name": "Full",
  535. "description": "Complete installation with all available components including plugins",
  536. "components": [
  537. "agent:task-manager",
  538. "agent:codebase-agent",
  539. "agent:image-specialist",
  540. "agent:workflow-orchestrator",
  541. "subagent:reviewer",
  542. "subagent:tester",
  543. "subagent:documentation",
  544. "subagent:coder-agent",
  545. "subagent:build-agent",
  546. "subagent:codebase-pattern-analyst",
  547. "command:test",
  548. "command:commit",
  549. "command:context",
  550. "command:clean",
  551. "command:optimize",
  552. "command:prompt-enhancer",
  553. "command:worktrees",
  554. "tool:env",
  555. "tool:gemini",
  556. "plugin:notify",
  557. "plugin:telegram-notify",
  558. "context:essential-patterns",
  559. "context:project-context",
  560. "config:env-example",
  561. "config:readme"
  562. ]
  563. },
  564. "advanced": {
  565. "name": "Advanced",
  566. "description": "Full installation plus system builder and experimental features",
  567. "components": [
  568. "agent:task-manager",
  569. "agent:codebase-agent",
  570. "agent:image-specialist",
  571. "agent:workflow-orchestrator",
  572. "agent:system-builder",
  573. "subagent:reviewer",
  574. "subagent:tester",
  575. "subagent:documentation",
  576. "subagent:coder-agent",
  577. "subagent:build-agent",
  578. "subagent:codebase-pattern-analyst",
  579. "subagent:domain-analyzer",
  580. "subagent:agent-generator",
  581. "subagent:context-organizer",
  582. "subagent:workflow-designer",
  583. "subagent:command-creator",
  584. "command:test",
  585. "command:commit",
  586. "command:context",
  587. "command:clean",
  588. "command:optimize",
  589. "command:prompt-enhancer",
  590. "command:worktrees",
  591. "command:build-context-system",
  592. "tool:env",
  593. "tool:gemini",
  594. "context:essential-patterns",
  595. "context:project-context",
  596. "config:env-example",
  597. "config:readme"
  598. ],
  599. "additionalPaths": [
  600. ".Building/",
  601. ".github/workflows/"
  602. ]
  603. }
  604. },
  605. "metadata": {
  606. "lastUpdated": "2025-11-18",
  607. "schemaVersion": "1.0.0"
  608. }
  609. }