registry.json 23 KB

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