claude-code-orchestrator-kit 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. package/.claude/agents/database/workers/api-builder.md +155 -0
  2. package/.claude/agents/database/workers/database-architect.md +193 -0
  3. package/.claude/agents/database/workers/supabase-auditor.md +1070 -0
  4. package/.claude/agents/development/workers/code-reviewer.md +968 -0
  5. package/.claude/agents/development/workers/cost-calculator-specialist.md +683 -0
  6. package/.claude/agents/development/workers/llm-service-specialist.md +999 -0
  7. package/.claude/agents/development/workers/skill-builder-v2.md +480 -0
  8. package/.claude/agents/development/workers/typescript-types-specialist.md +649 -0
  9. package/.claude/agents/development/workers/utility-builder.md +582 -0
  10. package/.claude/agents/documentation/workers/technical-writer.md +152 -0
  11. package/.claude/agents/frontend/workers/fullstack-nextjs-specialist.md +206 -0
  12. package/.claude/agents/frontend/workers/visual-effects-creator.md +159 -0
  13. package/.claude/agents/health/orchestrators/bug-orchestrator.md +1045 -0
  14. package/.claude/agents/health/orchestrators/dead-code-orchestrator.md +1045 -0
  15. package/.claude/agents/health/orchestrators/dependency-orchestrator.md +1045 -0
  16. package/.claude/agents/health/orchestrators/security-orchestrator.md +1045 -0
  17. package/.claude/agents/health/workers/bug-fixer.md +525 -0
  18. package/.claude/agents/health/workers/bug-hunter.md +649 -0
  19. package/.claude/agents/health/workers/dead-code-hunter.md +446 -0
  20. package/.claude/agents/health/workers/dead-code-remover.md +437 -0
  21. package/.claude/agents/health/workers/dependency-auditor.md +379 -0
  22. package/.claude/agents/health/workers/dependency-updater.md +436 -0
  23. package/.claude/agents/health/workers/security-scanner.md +700 -0
  24. package/.claude/agents/health/workers/vulnerability-fixer.md +524 -0
  25. package/.claude/agents/infrastructure/workers/infrastructure-specialist.md +156 -0
  26. package/.claude/agents/infrastructure/workers/orchestration-logic-specialist.md +1260 -0
  27. package/.claude/agents/infrastructure/workers/qdrant-specialist.md +503 -0
  28. package/.claude/agents/infrastructure/workers/quality-validator-specialist.md +984 -0
  29. package/.claude/agents/meta/workers/meta-agent-v3.md +503 -0
  30. package/.claude/agents/research/workers/problem-investigator.md +507 -0
  31. package/.claude/agents/research/workers/research-specialist.md +423 -0
  32. package/.claude/agents/testing/workers/accessibility-tester.md +813 -0
  33. package/.claude/agents/testing/workers/integration-tester.md +188 -0
  34. package/.claude/agents/testing/workers/mobile-fixes-implementer.md +252 -0
  35. package/.claude/agents/testing/workers/mobile-responsiveness-tester.md +180 -0
  36. package/.claude/agents/testing/workers/performance-optimizer.md +262 -0
  37. package/.claude/agents/testing/workers/test-writer.md +800 -0
  38. package/.claude/commands/health-bugs.md +297 -0
  39. package/.claude/commands/health-cleanup.md +297 -0
  40. package/.claude/commands/health-deps.md +297 -0
  41. package/.claude/commands/health-metrics.md +747 -0
  42. package/.claude/commands/health-security.md +297 -0
  43. package/.claude/commands/push.md +21 -0
  44. package/.claude/commands/speckit.analyze.md +184 -0
  45. package/.claude/commands/speckit.checklist.md +294 -0
  46. package/.claude/commands/speckit.clarify.md +178 -0
  47. package/.claude/commands/speckit.constitution.md +78 -0
  48. package/.claude/commands/speckit.implement.md +182 -0
  49. package/.claude/commands/speckit.plan.md +87 -0
  50. package/.claude/commands/speckit.specify.md +250 -0
  51. package/.claude/commands/speckit.tasks.md +137 -0
  52. package/.claude/commands/translate-doc.md +95 -0
  53. package/.claude/commands/worktree-cleanup.md +382 -0
  54. package/.claude/commands/worktree-create.md +287 -0
  55. package/.claude/commands/worktree-list.md +239 -0
  56. package/.claude/commands/worktree-remove.md +339 -0
  57. package/.claude/schemas/base-plan.schema.json +82 -0
  58. package/.claude/schemas/bug-plan.schema.json +71 -0
  59. package/.claude/schemas/dead-code-plan.schema.json +71 -0
  60. package/.claude/schemas/dependency-plan.schema.json +74 -0
  61. package/.claude/schemas/security-plan.schema.json +71 -0
  62. package/.claude/scripts/gates/check-bundle-size.sh +47 -0
  63. package/.claude/scripts/gates/check-coverage.sh +67 -0
  64. package/.claude/scripts/gates/check-security.sh +46 -0
  65. package/.claude/scripts/release.sh +740 -0
  66. package/.claude/settings.local.json +21 -0
  67. package/.claude/settings.local.json.example +20 -0
  68. package/.claude/skills/calculate-priority-score/SKILL.md +229 -0
  69. package/.claude/skills/calculate-priority-score/scoring-matrix.json +83 -0
  70. package/.claude/skills/extract-version/SKILL.md +228 -0
  71. package/.claude/skills/format-commit-message/SKILL.md +189 -0
  72. package/.claude/skills/format-commit-message/template.md +64 -0
  73. package/.claude/skills/format-markdown-table/SKILL.md +202 -0
  74. package/.claude/skills/format-markdown-table/examples.md +84 -0
  75. package/.claude/skills/format-todo-list/SKILL.md +222 -0
  76. package/.claude/skills/format-todo-list/template.json +30 -0
  77. package/.claude/skills/generate-changelog/SKILL.md +258 -0
  78. package/.claude/skills/generate-changelog/commit-mapping.json +47 -0
  79. package/.claude/skills/generate-report-header/SKILL.md +228 -0
  80. package/.claude/skills/generate-report-header/template.md +66 -0
  81. package/.claude/skills/parse-error-logs/SKILL.md +286 -0
  82. package/.claude/skills/parse-error-logs/patterns.json +26 -0
  83. package/.claude/skills/parse-git-status/SKILL.md +164 -0
  84. package/.claude/skills/parse-package-json/SKILL.md +151 -0
  85. package/.claude/skills/parse-package-json/schema.json +43 -0
  86. package/.claude/skills/render-template/SKILL.md +245 -0
  87. package/.claude/skills/rollback-changes/SKILL.md +582 -0
  88. package/.claude/skills/rollback-changes/changes-log-schema.json +101 -0
  89. package/.claude/skills/run-quality-gate/SKILL.md +404 -0
  90. package/.claude/skills/run-quality-gate/gate-mappings.json +97 -0
  91. package/.claude/skills/validate-plan-file/SKILL.md +327 -0
  92. package/.claude/skills/validate-plan-file/schema.json +35 -0
  93. package/.claude/skills/validate-report-file/SKILL.md +256 -0
  94. package/.claude/skills/validate-report-file/schema.json +67 -0
  95. package/.env.example +49 -0
  96. package/.github/BRANCH_PROTECTION.md +137 -0
  97. package/.github/workflows/build.yml +70 -0
  98. package/.github/workflows/claude-code-review.yml +255 -0
  99. package/.github/workflows/claude.yml +79 -0
  100. package/.github/workflows/deploy-staging.yml +90 -0
  101. package/.github/workflows/test.yml +104 -0
  102. package/.gitignore +116 -0
  103. package/CLAUDE.md +137 -0
  104. package/LICENSE +72 -0
  105. package/README.md +1098 -0
  106. package/docs/ARCHITECTURE.md +746 -0
  107. package/docs/Agents Ecosystem/AGENT-ORCHESTRATION.md +568 -0
  108. package/docs/Agents Ecosystem/AI-AGENT-ECOSYSTEM-README.md +658 -0
  109. package/docs/Agents Ecosystem/ARCHITECTURE.md +606 -0
  110. package/docs/Agents Ecosystem/QUALITY-GATES-SPECIFICATION.md +1315 -0
  111. package/docs/Agents Ecosystem/REPORT-TEMPLATE-STANDARD.md +1324 -0
  112. package/docs/Agents Ecosystem/spec-kit-comprehensive-updates.md +478 -0
  113. package/docs/FAQ.md +572 -0
  114. package/docs/MIGRATION-GUIDE.md +542 -0
  115. package/docs/PERFORMANCE-OPTIMIZATION.md +494 -0
  116. package/docs/ROADMAP.md +439 -0
  117. package/docs/TUTORIAL-CUSTOM-AGENTS.md +2041 -0
  118. package/docs/USE-CASES.md +706 -0
  119. package/index.js +96 -0
  120. package/mcp/.mcp.base.json +21 -0
  121. package/mcp/.mcp.frontend.json +29 -0
  122. package/mcp/.mcp.full.json +67 -0
  123. package/mcp/.mcp.local.example.json +7 -0
  124. package/mcp/.mcp.local.json +7 -0
  125. package/mcp/.mcp.n8n.json +45 -0
  126. package/mcp/.mcp.supabase-full.json +35 -0
  127. package/mcp/.mcp.supabase-only.json +28 -0
  128. package/package.json +78 -0
  129. package/postinstall.js +71 -0
  130. package/switch-mcp.sh +101 -0
@@ -0,0 +1,439 @@
1
+ # 🗺️ Roadmap
2
+
3
+ ## Vision
4
+
5
+ Transform Claude Code Orchestrator Kit into the standard automation framework for professional Claude Code development, enabling teams to build production-ready applications with confidence.
6
+
7
+ ---
8
+
9
+ ## Current Version: 1.0 (Released)
10
+
11
+ ### Core Features ✅
12
+ - 33+ AI agents (orchestrators + workers)
13
+ - 19+ slash commands
14
+ - 15+ reusable skills
15
+ - 6 MCP configurations
16
+ - Quality gates system
17
+ - Health monitoring workflows
18
+ - Behavioral OS (CLAUDE.md)
19
+
20
+ ---
21
+
22
+ ## v1.1 (Q1 2025) — Polish & Community
23
+
24
+ ### Focus: Stability, Documentation, Community Building
25
+
26
+ #### Documentation ✅ (Completed)
27
+ - [x] Comprehensive FAQ
28
+ - [x] Architecture diagrams (Mermaid)
29
+ - [x] Custom agents tutorial
30
+ - [x] Real-world use cases
31
+ - [x] Performance optimization guide
32
+ - [x] Migration guide
33
+ - [x] Roadmap
34
+
35
+ #### Community
36
+ - [ ] Public GitHub repository
37
+ - [ ] Contributing guidelines
38
+ - [ ] Issue templates
39
+ - [ ] Discussion forum setup
40
+ - [ ] First community call (demo + Q&A)
41
+
42
+ #### Stability
43
+ - [ ] Bug fixes from early adopters
44
+ - [ ] Performance improvements
45
+ - [ ] Additional MCP config templates
46
+ - [ ] Enhanced error messages
47
+
48
+ **Target**: January 2025
49
+
50
+ ---
51
+
52
+ ## v2.0 (Q2 2025) — Enterprise & Scale
53
+
54
+ ### Focus: Enterprise Features, Team Collaboration, Advanced Workflows
55
+
56
+ #### Enterprise Features
57
+ - [ ] **Multi-Project Support**
58
+ - Manage multiple projects from single kit
59
+ - Shared configurations across projects
60
+ - Project-specific customizations
61
+
62
+ - [ ] **Team Collaboration**
63
+ - Shared health reports
64
+ - Team metrics dashboard
65
+ - Role-based agent access
66
+
67
+ - [ ] **Advanced Observability**
68
+ - Real-time workflow visualization
69
+ - Agent performance analytics
70
+ - Cost tracking per agent/workflow
71
+ - SLA monitoring
72
+
73
+ #### Advanced Workflows
74
+ - [ ] **Deployment Orchestrator**
75
+ - Staging → Production pipeline
76
+ - Automated smoke tests
77
+ - Rollback automation
78
+ - Zero-downtime deployments
79
+
80
+ - [ ] **Integration Testing Orchestrator**
81
+ - E2E test generation
82
+ - API contract testing
83
+ - Database integration tests
84
+ - Performance benchmarking
85
+
86
+ - [ ] **Documentation Orchestrator**
87
+ - Auto-generate API docs
88
+ - Keep README in sync
89
+ - Generate architecture diagrams
90
+ - Create onboarding guides
91
+
92
+ #### Developer Experience
93
+ - [ ] Web UI Dashboard
94
+ - Visual workflow builder
95
+ - Live agent execution monitoring
96
+ - Historical reports browser
97
+ - Configuration manager
98
+
99
+ - [ ] VSCode Extension
100
+ - Inline agent invocation
101
+ - Quick MCP switching
102
+ - Health check buttons
103
+ - Report preview
104
+
105
+ **Target**: April 2025
106
+
107
+ ---
108
+
109
+ ## v2.1 (Q3 2025) — AI-First Development
110
+
111
+ ### Focus: Agent Marketplace, AI Code Generation, Self-Improvement
112
+
113
+ #### Agent Marketplace
114
+ - [ ] **Community Agent Registry**
115
+ - Browse community-contributed agents
116
+ - One-click agent installation
117
+ - Agent ratings & reviews
118
+ - Verified agent badges
119
+
120
+ - [ ] **Agent Templates**
121
+ - Pre-built workflow templates
122
+ - Industry-specific agents (fintech, healthcare, e-commerce)
123
+ - Integration-specific agents (Stripe, Twilio, SendGrid)
124
+
125
+ #### AI Code Generation
126
+ - [ ] **Code Generation Agents**
127
+ - CRUD generator (model → API → UI)
128
+ - Test generator (code → tests)
129
+ - Migration generator (schema → SQL)
130
+ - Component generator (design → code)
131
+
132
+ - [ ] **Smart Refactoring**
133
+ - Pattern detection & suggestions
134
+ - Performance optimization recommendations
135
+ - Security vulnerability auto-fix
136
+ - Architecture smell detection
137
+
138
+ #### Self-Improvement
139
+ - [ ] **Agent Learning System**
140
+ - Track agent success rates
141
+ - A/B test agent variations
142
+ - Auto-tune agent parameters
143
+ - Community feedback loop
144
+
145
+ - [ ] **Meta-Agent Evolution**
146
+ - Generate agents from natural language descriptions
147
+ - Optimize agent prompts automatically
148
+ - Suggest agent improvements based on usage
149
+
150
+ **Target**: July 2025
151
+
152
+ ---
153
+
154
+ ## v3.0 (Q4 2025) — Platform & Ecosystem
155
+
156
+ ### Focus: Platform APIs, Multi-Language Support, Ecosystem Growth
157
+
158
+ #### Platform APIs
159
+ - [ ] **HTTP API**
160
+ - REST API for agent invocation
161
+ - Webhook support
162
+ - Authentication & authorization
163
+ - Rate limiting
164
+
165
+ - [ ] **SDK Libraries**
166
+ - TypeScript SDK
167
+ - Python SDK
168
+ - Go SDK
169
+ - CLI enhancements
170
+
171
+ - [ ] **Plugin System**
172
+ - Third-party plugin support
173
+ - Custom MCP server registry
174
+ - Plugin marketplace
175
+
176
+ #### Multi-Language Support
177
+ - [ ] **Beyond Node.js**
178
+ - Python project support
179
+ - Go project support
180
+ - Rust project support
181
+ - Multi-language monorepos
182
+
183
+ - [ ] **Framework-Specific Agents**
184
+ - Django orchestrators
185
+ - FastAPI workers
186
+ - Rails agents
187
+ - Laravel agents
188
+
189
+ #### Ecosystem Growth
190
+ - [ ] **Official Integrations**
191
+ - Vercel deployment integration
192
+ - AWS/GCP/Azure CI/CD
193
+ - Linear/Jira issue sync
194
+ - Slack/Discord notifications
195
+
196
+ - [ ] **Partner Program**
197
+ - Consulting partners
198
+ - Integration partners
199
+ - Training partners
200
+ - Certification program
201
+
202
+ **Target**: October 2025
203
+
204
+ ---
205
+
206
+ ## v3.1+ (2026) — Intelligence & Autonomy
207
+
208
+ ### Focus: Autonomous Agents, Predictive Systems, Enterprise Scale
209
+
210
+ #### Autonomous Agents
211
+ - [ ] **Proactive Agents**
212
+ - Auto-detect code smells → create PR
213
+ - Monitor dependencies → auto-update safely
214
+ - Detect security issues → auto-patch
215
+ - Performance regression → auto-optimize
216
+
217
+ - [ ] **Intelligent Orchestration**
218
+ - ML-based workflow optimization
219
+ - Predictive quality gates
220
+ - Smart rollback decisions
221
+ - Context-aware agent selection
222
+
223
+ #### Predictive Systems
224
+ - [ ] **Code Health Forecasting**
225
+ - Predict bug accumulation trends
226
+ - Forecast security vulnerability windows
227
+ - Estimate technical debt growth
228
+ - Recommend preventive actions
229
+
230
+ - [ ] **Resource Optimization**
231
+ - Predict MCP usage patterns
232
+ - Auto-select optimal configurations
233
+ - Suggest cost-saving strategies
234
+ - Forecast team capacity needs
235
+
236
+ #### Enterprise Scale
237
+ - [ ] **Multi-Tenant Platform**
238
+ - Isolated environments per org
239
+ - Centralized billing & usage
240
+ - Enterprise SSO integration
241
+ - Compliance & audit logs
242
+
243
+ - [ ] **Global Distribution**
244
+ - Multi-region deployments
245
+ - CDN for agent assets
246
+ - Localization (i18n)
247
+ - Compliance certifications (SOC2, HIPAA, GDPR)
248
+
249
+ **Target**: 2026
250
+
251
+ ---
252
+
253
+ ## Research & Exploration
254
+
255
+ ### Ongoing Investigations
256
+
257
+ #### Advanced AI Techniques
258
+ - [ ] Multi-agent collaboration (agents invoking agents safely)
259
+ - [ ] Agent memory & context persistence
260
+ - [ ] Reinforcement learning for agent improvement
261
+ - [ ] Transfer learning from successful workflows
262
+
263
+ #### Infrastructure
264
+ - [ ] Distributed orchestration (multi-machine workflows)
265
+ - [ ] Edge computing for agents (local-first)
266
+ - [ ] Blockchain for agent audit trails
267
+ - [ ] Quantum-resistant security
268
+
269
+ #### Developer Experience
270
+ - [ ] Natural language workflow builder
271
+ - [ ] Visual programming for agents
272
+ - [ ] Live agent debugging
273
+ - [ ] Time-travel debugging for workflows
274
+
275
+ ---
276
+
277
+ ## Community Requests
278
+
279
+ ### Top Requested Features (from GitHub Issues)
280
+
281
+ 1. **Custom Quality Gates** — Allow teams to define custom validation rules
282
+ 2. **Agent Chaining** — Sequential agent invocation without orchestrator
283
+ 3. **Report Templates** — Customizable report formats (PDF, HTML, JSON)
284
+ 4. **Pre-commit Hooks** — Auto-run health checks on git commit
285
+ 5. **Incremental Workflows** — Resume workflows from failure point
286
+
287
+ ### How to Request Features
288
+
289
+ - **GitHub Issues**: [Create feature request](https://github.com/maslennikov-ig/claude-code-orchestrator-kit/issues/new)
290
+ - **Discussions**: [Join discussion](https://github.com/maslennikov-ig/claude-code-orchestrator-kit/discussions)
291
+ - **Community Calls**: Monthly calls (announced in discussions)
292
+
293
+ ---
294
+
295
+ ## Contribution Opportunities
296
+
297
+ ### How You Can Help
298
+
299
+ #### Code Contributions
300
+ - **New Agents**: Create domain-specific agents
301
+ - **New Skills**: Add utility functions
302
+ - **Bug Fixes**: Fix reported issues
303
+ - **Performance**: Optimize token usage
304
+
305
+ #### Documentation
306
+ - **Tutorials**: Write step-by-step guides
307
+ - **Use Cases**: Share success stories
308
+ - **Translations**: Translate docs (Russian, Spanish, Chinese)
309
+ - **Video Content**: Create screencasts
310
+
311
+ #### Community
312
+ - **Answer Questions**: Help users in discussions
313
+ - **Write Blog Posts**: Share your experience
314
+ - **Give Talks**: Present at meetups/conferences
315
+ - **Test Beta Features**: Early testing & feedback
316
+
317
+ See [CONTRIBUTING.md](../CONTRIBUTING.md) for details.
318
+
319
+ ---
320
+
321
+ ## Versioning Strategy
322
+
323
+ ### Semantic Versioning
324
+
325
+ **Format**: MAJOR.MINOR.PATCH
326
+
327
+ - **MAJOR**: Breaking changes (e.g., CLAUDE.md Prime Directives change)
328
+ - **MINOR**: New features, backward-compatible (e.g., new agents, commands)
329
+ - **PATCH**: Bug fixes, performance improvements
330
+
331
+ **Examples**:
332
+ - `1.0.0` → `1.0.1`: Bug fix (patch)
333
+ - `1.0.0` → `1.1.0`: New agents (minor)
334
+ - `1.0.0` → `2.0.0`: Breaking behavioral changes (major)
335
+
336
+ ### Release Cadence
337
+
338
+ - **Patch releases**: As needed (bug fixes)
339
+ - **Minor releases**: Monthly (new features)
340
+ - **Major releases**: Quarterly (major changes)
341
+
342
+ ---
343
+
344
+ ## Deprecation Policy
345
+
346
+ ### Backward Compatibility
347
+
348
+ **Promise**: We maintain backward compatibility within MAJOR versions.
349
+
350
+ **Example**:
351
+ - v1.0 agents work with v1.5
352
+ - v1.x → v2.0 may require updates
353
+
354
+ ### Deprecation Process
355
+
356
+ 1. **Announcement** (3 months before removal)
357
+ - Mark feature as deprecated in docs
358
+ - Add warning messages
359
+ - Provide migration guide
360
+
361
+ 2. **Deprecation Period** (3 months)
362
+ - Feature still works
363
+ - Users migrate to new approach
364
+ - Support available
365
+
366
+ 3. **Removal** (Next major version)
367
+ - Feature removed
368
+ - Breaking change documented
369
+ - Migration guide finalized
370
+
371
+ ---
372
+
373
+ ## Success Metrics
374
+
375
+ ### Key Performance Indicators
376
+
377
+ #### Adoption
378
+ - **Target (2025)**: 1,000 active projects
379
+ - **Current**: ~10 (early adopters)
380
+
381
+ #### Community
382
+ - **Target (2025)**: 100 contributors
383
+ - **Current**: 1 (maintainer)
384
+
385
+ #### Quality
386
+ - **Bug density**: < 1 bug/1000 LOC
387
+ - **Security incidents**: 0
388
+ - **Test coverage**: > 90%
389
+
390
+ #### Performance
391
+ - **Token usage**: Reduce by 20% year-over-year
392
+ - **Workflow execution**: < 5 minutes for common workflows
393
+ - **Agent success rate**: > 95%
394
+
395
+ ---
396
+
397
+ ## Long-Term Vision (2027+)
398
+
399
+ ### The Autonomous Development Platform
400
+
401
+ **Goal**: Enable AI agents to manage entire software development lifecycle autonomously.
402
+
403
+ **Capabilities**:
404
+ - AI agents design, implement, test, deploy, and monitor applications
405
+ - Humans provide high-level requirements, review, and approve
406
+ - Zero-touch operations (self-healing, self-optimizing)
407
+ - Predictive maintenance (prevent issues before they occur)
408
+
409
+ **Impact**:
410
+ - 10x developer productivity
411
+ - 99.99% uptime (self-healing systems)
412
+ - 90% reduction in technical debt
413
+ - 100% test coverage (auto-generated tests)
414
+
415
+ ---
416
+
417
+ ## Get Involved
418
+
419
+ ### Stay Updated
420
+
421
+ - **GitHub Watch**: [Star & Watch repo](https://github.com/maslennikov-ig/claude-code-orchestrator-kit)
422
+ - **Discussions**: [Join community](https://github.com/maslennikov-ig/claude-code-orchestrator-kit/discussions)
423
+ - **Newsletter**: [Subscribe](https://maslennikov.dev/newsletter) (coming soon)
424
+ - **Twitter/X**: [@maslennikov_ig](https://twitter.com/maslennikov_ig)
425
+
426
+ ### Shape the Roadmap
427
+
428
+ **Your input matters!** Roadmap is community-driven.
429
+
430
+ - **Vote on features**: GitHub Discussions polls
431
+ - **Propose ideas**: Feature request issues
432
+ - **Join planning calls**: Monthly community calls
433
+ - **Contribute code**: See [CONTRIBUTING.md](../CONTRIBUTING.md)
434
+
435
+ ---
436
+
437
+ **Roadmap Version**: 1.0
438
+ **Last Updated**: 2025-01-11
439
+ **Maintained by**: [Igor Maslennikov](https://github.com/maslennikov-ig)