registry.json 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  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-enchancer.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. "tools": [
  393. {
  394. "id": "gemini",
  395. "name": "Gemini AI Tool",
  396. "type": "tool",
  397. "path": ".opencode/tool/gemini/index.ts",
  398. "description": "Image generation, editing, and analysis using Gemini AI",
  399. "tags": [
  400. "ai",
  401. "images",
  402. "gemini"
  403. ],
  404. "dependencies": [
  405. "tool:env"
  406. ],
  407. "category": "specialized"
  408. },
  409. {
  410. "id": "env",
  411. "name": "Environment Manager",
  412. "type": "tool",
  413. "path": ".opencode/tool/env/index.ts",
  414. "description": "Load and manage environment variables securely",
  415. "tags": [
  416. "environment",
  417. "config",
  418. "security"
  419. ],
  420. "dependencies": [],
  421. "category": "essential"
  422. }
  423. ],
  424. "plugins": [
  425. {
  426. "id": "telegram-notify",
  427. "name": "Telegram Notifications",
  428. "type": "plugin",
  429. "path": ".opencode/plugin/telegram-notify.ts",
  430. "description": "Send notifications via Telegram bot",
  431. "tags": [
  432. "notifications",
  433. "telegram",
  434. "integration"
  435. ],
  436. "dependencies": [
  437. "tool:env"
  438. ],
  439. "category": "specialized"
  440. },
  441. {
  442. "id": "notify",
  443. "name": "Generic Notifier",
  444. "type": "plugin",
  445. "path": ".opencode/plugin/notify.ts",
  446. "description": "Generic notification system",
  447. "tags": [
  448. "notifications",
  449. "alerts"
  450. ],
  451. "dependencies": [],
  452. "category": "specialized"
  453. }
  454. ],
  455. "contexts": [
  456. {
  457. "id": "essential-patterns",
  458. "name": "Essential Patterns",
  459. "type": "context",
  460. "path": ".opencode/context/core/essential-patterns.md",
  461. "description": "Core development patterns and best practices",
  462. "tags": [
  463. "patterns",
  464. "best-practices",
  465. "guidelines"
  466. ],
  467. "dependencies": [],
  468. "category": "essential"
  469. },
  470. {
  471. "id": "project-context",
  472. "name": "Project Context",
  473. "type": "context",
  474. "path": ".opencode/context/project/project-context.md",
  475. "description": "Project-specific context and configuration",
  476. "tags": [
  477. "context",
  478. "project",
  479. "configuration"
  480. ],
  481. "dependencies": [],
  482. "category": "essential"
  483. },
  484. {
  485. "id": "standards-code",
  486. "name": "Code Standards",
  487. "type": "context",
  488. "path": ".opencode/context/core/standards/code.md",
  489. "description": "Modular, functional code standards",
  490. "tags": [
  491. "standards",
  492. "code",
  493. "quality"
  494. ],
  495. "dependencies": [],
  496. "category": "standard"
  497. },
  498. {
  499. "id": "standards-patterns",
  500. "name": "Pattern Standards",
  501. "type": "context",
  502. "path": ".opencode/context/core/standards/patterns.md",
  503. "description": "Language-agnostic pattern catalog",
  504. "tags": [
  505. "standards",
  506. "patterns",
  507. "architecture"
  508. ],
  509. "dependencies": [],
  510. "category": "standard"
  511. },
  512. {
  513. "id": "standards-tests",
  514. "name": "Testing Standards",
  515. "type": "context",
  516. "path": ".opencode/context/core/standards/tests.md",
  517. "description": "Testing best practices and guidelines",
  518. "tags": [
  519. "standards",
  520. "testing",
  521. "quality"
  522. ],
  523. "dependencies": [],
  524. "category": "standard"
  525. },
  526. {
  527. "id": "standards-docs",
  528. "name": "Documentation Standards",
  529. "type": "context",
  530. "path": ".opencode/context/core/standards/docs.md",
  531. "description": "Documentation guidelines and templates",
  532. "tags": [
  533. "standards",
  534. "documentation",
  535. "writing"
  536. ],
  537. "dependencies": [],
  538. "category": "standard"
  539. },
  540. {
  541. "id": "standards-analysis",
  542. "name": "Analysis Standards",
  543. "type": "context",
  544. "path": ".opencode/context/core/standards/analysis.md",
  545. "description": "Code analysis framework and guidelines",
  546. "tags": [
  547. "standards",
  548. "analysis",
  549. "quality"
  550. ],
  551. "dependencies": [],
  552. "category": "standard"
  553. },
  554. {
  555. "id": "workflows-delegation",
  556. "name": "Delegation Workflow",
  557. "type": "context",
  558. "path": ".opencode/context/core/workflows/delegation.md",
  559. "description": "Delegation template and process",
  560. "tags": [
  561. "workflows",
  562. "delegation",
  563. "coordination"
  564. ],
  565. "dependencies": [],
  566. "category": "standard"
  567. },
  568. {
  569. "id": "workflows-sessions",
  570. "name": "Session Management Workflow",
  571. "type": "context",
  572. "path": ".opencode/context/core/workflows/sessions.md",
  573. "description": "Session lifecycle and management",
  574. "tags": [
  575. "workflows",
  576. "sessions",
  577. "management"
  578. ],
  579. "dependencies": [],
  580. "category": "standard"
  581. },
  582. {
  583. "id": "workflows-task-breakdown",
  584. "name": "Task Breakdown Workflow",
  585. "type": "context",
  586. "path": ".opencode/context/core/workflows/task-breakdown.md",
  587. "description": "Task breakdown methodology",
  588. "tags": [
  589. "workflows",
  590. "tasks",
  591. "planning"
  592. ],
  593. "dependencies": [],
  594. "category": "standard"
  595. },
  596. {
  597. "id": "workflows-review",
  598. "name": "Code Review Workflow",
  599. "type": "context",
  600. "path": ".opencode/context/core/workflows/review.md",
  601. "description": "Code review process and guidelines",
  602. "tags": [
  603. "workflows",
  604. "review",
  605. "quality"
  606. ],
  607. "dependencies": [],
  608. "category": "standard"
  609. },
  610. {
  611. "id": "system-context-guide",
  612. "name": "Context System Guide",
  613. "type": "context",
  614. "path": ".opencode/context/core/system/context-guide.md",
  615. "description": "Guide to the context system and file organization",
  616. "tags": [
  617. "system",
  618. "guide",
  619. "context"
  620. ],
  621. "dependencies": [],
  622. "category": "standard"
  623. }
  624. ],
  625. "config": [
  626. {
  627. "id": "env-example",
  628. "name": "Environment Template",
  629. "type": "config",
  630. "path": "env.example",
  631. "description": "Example environment configuration file",
  632. "tags": [
  633. "config",
  634. "environment",
  635. "template"
  636. ],
  637. "dependencies": [],
  638. "category": "essential"
  639. },
  640. {
  641. "id": "readme",
  642. "name": "README",
  643. "type": "config",
  644. "path": "README.md",
  645. "description": "Project documentation and setup guide",
  646. "tags": [
  647. "documentation",
  648. "readme",
  649. "guide"
  650. ],
  651. "dependencies": [],
  652. "category": "essential"
  653. }
  654. ]
  655. },
  656. "profiles": {
  657. "essential": {
  658. "name": "Essential (Minimal)",
  659. "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.",
  660. "components": [
  661. "agent:openagent",
  662. "subagent:task-manager",
  663. "subagent:documentation",
  664. "command:context",
  665. "command:clean",
  666. "tool:env",
  667. "context:essential-patterns",
  668. "context:project-context",
  669. "config:env-example"
  670. ]
  671. },
  672. "developer": {
  673. "name": "Developer",
  674. "description": "Complete software development environment with code generation, testing, review, and build tools. Recommended for most developers.",
  675. "badge": "RECOMMENDED",
  676. "components": [
  677. "agent:openagent",
  678. "agent:opencoder",
  679. "subagent:task-manager",
  680. "subagent:documentation",
  681. "subagent:coder-agent",
  682. "subagent:reviewer",
  683. "subagent:tester",
  684. "subagent:build-agent",
  685. "subagent:codebase-pattern-analyst",
  686. "command:commit",
  687. "command:test",
  688. "command:context",
  689. "command:clean",
  690. "command:optimize",
  691. "command:validate-repo",
  692. "tool:env",
  693. "context:essential-patterns",
  694. "context:project-context",
  695. "context:standards-code",
  696. "context:standards-patterns",
  697. "context:standards-tests",
  698. "context:standards-docs",
  699. "context:standards-analysis",
  700. "context:workflows-delegation",
  701. "context:workflows-sessions",
  702. "context:workflows-task-breakdown",
  703. "context:workflows-review",
  704. "context:system-context-guide",
  705. "config:env-example",
  706. "config:readme"
  707. ]
  708. },
  709. "business": {
  710. "name": "Business",
  711. "description": "Business process automation, content creation, and visual workflows. Includes image generation, notifications, and documentation tools.",
  712. "components": [
  713. "agent:openagent",
  714. "subagent:task-manager",
  715. "subagent:documentation",
  716. "subagent:image-specialist",
  717. "command:context",
  718. "command:clean",
  719. "command:prompt-enhancer",
  720. "tool:env",
  721. "tool:gemini",
  722. "plugin:notify",
  723. "plugin:telegram-notify",
  724. "context:essential-patterns",
  725. "context:project-context",
  726. "config:env-example",
  727. "config:readme"
  728. ]
  729. },
  730. "full": {
  731. "name": "Full",
  732. "description": "Everything included - all agents, subagents, tools, and plugins for maximum functionality.",
  733. "components": [
  734. "agent:openagent",
  735. "agent:opencoder",
  736. "subagent:task-manager",
  737. "subagent:documentation",
  738. "subagent:coder-agent",
  739. "subagent:reviewer",
  740. "subagent:tester",
  741. "subagent:build-agent",
  742. "subagent:codebase-pattern-analyst",
  743. "subagent:image-specialist",
  744. "command:test",
  745. "command:commit",
  746. "command:context",
  747. "command:clean",
  748. "command:optimize",
  749. "command:prompt-enhancer",
  750. "command:worktrees",
  751. "command:validate-repo",
  752. "tool:env",
  753. "tool:gemini",
  754. "plugin:notify",
  755. "plugin:telegram-notify",
  756. "context:essential-patterns",
  757. "context:project-context",
  758. "context:standards-code",
  759. "context:standards-patterns",
  760. "context:standards-tests",
  761. "context:standards-docs",
  762. "context:standards-analysis",
  763. "context:workflows-delegation",
  764. "context:workflows-sessions",
  765. "context:workflows-task-breakdown",
  766. "context:workflows-review",
  767. "context:system-context-guide",
  768. "config:env-example",
  769. "config:readme"
  770. ]
  771. },
  772. "advanced": {
  773. "name": "Advanced (Meta-Level)",
  774. "description": "Full installation plus System Builder for creating custom AI architectures. For power users and contributors.",
  775. "components": [
  776. "agent:openagent",
  777. "agent:opencoder",
  778. "agent:system-builder",
  779. "subagent:task-manager",
  780. "subagent:documentation",
  781. "subagent:coder-agent",
  782. "subagent:reviewer",
  783. "subagent:tester",
  784. "subagent:build-agent",
  785. "subagent:codebase-pattern-analyst",
  786. "subagent:image-specialist",
  787. "subagent:domain-analyzer",
  788. "subagent:agent-generator",
  789. "subagent:context-organizer",
  790. "subagent:workflow-designer",
  791. "subagent:command-creator",
  792. "command:test",
  793. "command:commit",
  794. "command:context",
  795. "command:clean",
  796. "command:optimize",
  797. "command:prompt-enhancer",
  798. "command:worktrees",
  799. "command:build-context-system",
  800. "command:validate-repo",
  801. "tool:env",
  802. "tool:gemini",
  803. "plugin:notify",
  804. "plugin:telegram-notify",
  805. "context:essential-patterns",
  806. "context:project-context",
  807. "context:standards-code",
  808. "context:standards-patterns",
  809. "context:standards-tests",
  810. "context:standards-docs",
  811. "context:standards-analysis",
  812. "context:workflows-delegation",
  813. "context:workflows-sessions",
  814. "context:workflows-task-breakdown",
  815. "context:workflows-review",
  816. "context:system-context-guide",
  817. "config:env-example",
  818. "config:readme"
  819. ],
  820. "additionalPaths": [
  821. ".Building/",
  822. ".github/workflows/"
  823. ]
  824. }
  825. },
  826. "metadata": {
  827. "lastUpdated": "2025-11-21",
  828. "schemaVersion": "1.0.0"
  829. }
  830. }