monomind 1.11.8 → 1.11.10
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.
- package/.claude/agents/github/issue-tracker.md +5 -5
- package/.claude/agents/github/pr-manager.md +5 -5
- package/.claude/agents/github/release-manager.md +3 -3
- package/.claude/agents/github/repo-architect.md +3 -3
- package/.claude/agents/github/swarm-issue.md +1 -1
- package/.claude/agents/github/sync-coordinator.md +1 -1
- package/.claude/agents/github/workflow-automation.md +1 -1
- package/.claude/commands/github/repo-architect.md +1 -1
- package/.claude/commands/github/sync-coordinator.md +1 -1
- package/.claude/commands/mastermind/createorg.md +4 -1
- package/.claude/commands/mastermind/help.md +2 -2
- package/.claude/commands/mastermind/orgs.md +21 -0
- package/.claude/commands/mastermind/orgstatus.md +59 -0
- package/.claude/commands/mastermind/runorg.md +4 -2
- package/.claude/commands/mastermind/stoporg.md +78 -0
- package/.claude/commands/mastermind/swarm.md +1 -1
- package/.claude/helpers/handlers/gates-handler.cjs +135 -0
- package/.claude/helpers/handlers/task-handler.cjs +7 -3
- package/.claude/helpers/hook-handler.cjs +11 -2
- package/.claude/helpers/intelligence.cjs +87 -0
- package/.claude/helpers/learning-service.mjs +60 -0
- package/.claude/helpers/memory.cjs +69 -0
- package/.claude/helpers/router.cjs +68 -0
- package/.claude/helpers/session.cjs +63 -0
- package/.claude/helpers/utils/monograph.cjs +4 -2
- package/.claude/helpers/utils/telemetry.cjs +3 -2
- package/.claude/scheduled_tasks.lock +1 -1
- package/.claude/settings.json +12 -2
- package/.claude/skills/agentic-jujutsu/SKILL.md +1 -1
- package/.claude/skills/hive-mind-advanced/SKILL.md +4 -4
- package/.claude/skills/mastermind/_agent-select.md +2 -2
- package/.claude/skills/mastermind/access.md +11 -11
- package/.claude/skills/mastermind/adapter-manager.md +13 -13
- package/.claude/skills/mastermind/adapters.md +7 -7
- package/.claude/skills/mastermind/agent-detail.md +1 -1
- package/.claude/skills/mastermind/agents.md +5 -5
- package/.claude/skills/mastermind/approval-detail.md +6 -6
- package/.claude/skills/mastermind/approve.md +9 -10
- package/.claude/skills/mastermind/backup.md +2 -2
- package/.claude/skills/mastermind/bootstrap.md +2 -2
- package/.claude/skills/mastermind/companies.md +7 -7
- package/.claude/skills/mastermind/createorg.md +213 -8
- package/.claude/skills/mastermind/diagnose.md +4 -4
- package/.claude/skills/mastermind/env.md +1 -1
- package/.claude/skills/mastermind/environments.md +8 -8
- package/.claude/skills/mastermind/export.md +12 -3
- package/.claude/skills/mastermind/goal-detail.md +9 -9
- package/.claude/skills/mastermind/goals.md +4 -4
- package/.claude/skills/mastermind/heartbeat.md +1 -1
- package/.claude/skills/mastermind/idea.md +4 -4
- package/.claude/skills/mastermind/import.md +8 -8
- package/.claude/skills/mastermind/inbox.md +4 -4
- package/.claude/skills/mastermind/instance-settings.md +9 -9
- package/.claude/skills/mastermind/instance.md +9 -7
- package/.claude/skills/mastermind/invite-landing.md +5 -5
- package/.claude/skills/mastermind/invites.md +12 -12
- package/.claude/skills/mastermind/issue-detail.md +8 -8
- package/.claude/skills/mastermind/monitor.md +11 -11
- package/.claude/skills/mastermind/my-issues.md +6 -6
- package/.claude/skills/mastermind/new-agent.md +4 -4
- package/.claude/skills/mastermind/org-chart.md +8 -6
- package/.claude/skills/mastermind/org-settings.md +58 -21
- package/.claude/skills/mastermind/orgs.md +98 -0
- package/.claude/skills/mastermind/orgstatus.md +194 -0
- package/.claude/skills/mastermind/plan-to-tasks.md +1 -1
- package/.claude/skills/mastermind/plugin-manager.md +12 -12
- package/.claude/skills/mastermind/plugin-settings.md +5 -5
- package/.claude/skills/mastermind/plugins.md +5 -5
- package/.claude/skills/mastermind/profile.md +2 -2
- package/.claude/skills/mastermind/project-detail.md +12 -12
- package/.claude/skills/mastermind/project-workspace.md +4 -4
- package/.claude/skills/mastermind/projects.md +4 -4
- package/.claude/skills/mastermind/review.md +50 -0
- package/.claude/skills/mastermind/routine-detail.md +3 -3
- package/.claude/skills/mastermind/routines.md +7 -6
- package/.claude/skills/mastermind/runorg.md +178 -8
- package/.claude/skills/mastermind/search.md +6 -6
- package/.claude/skills/mastermind/secrets.md +6 -6
- package/.claude/skills/mastermind/skills.md +4 -4
- package/.claude/skills/mastermind/stoporg.md +138 -0
- package/.claude/skills/mastermind/workspace-detail.md +5 -5
- package/.claude/skills/mastermind/workspaces.md +9 -9
- package/.claude/skills/performance-analysis/SKILL.md +3 -3
- package/.claude/skills/sparc-methodology/SKILL.md +2 -2
- package/.claude/skills/swarm-advanced/SKILL.md +4 -4
- package/.claude-plugin/README.md +10 -10
- package/.claude-plugin/docs/INSTALLATION.md +6 -6
- package/.claude-plugin/docs/PLUGIN_SUMMARY.md +9 -9
- package/.claude-plugin/docs/QUICKSTART.md +2 -2
- package/.claude-plugin/docs/STRUCTURE.md +1 -1
- package/.claude-plugin/marketplace.json +5 -5
- package/.claude-plugin/plugin.json +3 -3
- package/README.md +129 -376
- package/package.json +4 -8
- package/packages/@monomind/cli/README.md +129 -376
- package/packages/@monomind/cli/dist/src/agents/registry-builder.d.ts +27 -1
- package/packages/@monomind/cli/dist/src/agents/registry-builder.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/agent.js +4 -9
- package/packages/@monomind/cli/dist/src/commands/analyze.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/analyze.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/claims.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/claims.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/cleanup.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/cleanup.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/completions.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/completions.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/deployment.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/deployment.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/doctor.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/doctor.js +69 -4
- package/packages/@monomind/cli/dist/src/commands/guidance.js +129 -0
- package/packages/@monomind/cli/dist/src/commands/index.js +4 -0
- package/packages/@monomind/cli/dist/src/commands/init.js +18 -0
- package/packages/@monomind/cli/dist/src/commands/monovector/import.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/monovector/import.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/monovector/index.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/monovector/index.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/monovector/setup.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/monovector/setup.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/neural.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/neural.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/performance.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/performance.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/platforms.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/platforms.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/plugins.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/plugins.js +2 -4
- package/packages/@monomind/cli/dist/src/commands/providers.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/providers.js +2 -2
- package/packages/@monomind/cli/dist/src/commands/route.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/route.js +5 -11
- package/packages/@monomind/cli/dist/src/commands/security.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/security.js +140 -91
- package/packages/@monomind/cli/dist/src/dlq/dlq-replayer.d.ts +7 -1
- package/packages/@monomind/cli/dist/src/index.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/index.js +10 -26
- package/packages/@monomind/cli/dist/src/init/claudemd-generator.js +2 -2
- package/packages/@monomind/cli/dist/src/init/executor.js +3 -3
- package/packages/@monomind/cli/dist/src/init/settings-generator.js +2 -2
- package/packages/@monomind/cli/dist/src/mcp-client.d.ts +5 -0
- package/packages/@monomind/cli/dist/src/mcp-client.js +7 -0
- package/packages/@monomind/cli/dist/src/mcp-server.js +17 -1
- package/packages/@monomind/cli/dist/src/mcp-tools/a2a-tools.js +6 -6
- package/packages/@monomind/cli/dist/src/mcp-tools/auto-install.d.ts +2 -2
- package/packages/@monomind/cli/dist/src/mcp-tools/auto-install.js +1 -1
- package/packages/@monomind/cli/dist/src/mcp-tools/hive-mind-tools.js +1 -52
- package/packages/@monomind/cli/dist/src/mcp-tools/index.d.ts +4 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/index.js +4 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/monograph-compat.js +1 -2
- package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.js +107 -5
- package/packages/@monomind/cli/dist/src/mcp-tools/security-tools.d.ts +6 -6
- package/packages/@monomind/cli/dist/src/mcp-tools/security-tools.js +48 -61
- package/packages/@monomind/cli/dist/src/memory/memory-bridge.d.ts +0 -1
- package/packages/@monomind/cli/dist/src/memory/memory-bridge.js +232 -57
- package/packages/@monomind/cli/dist/src/memory/memory-initializer.js +3 -32
- package/packages/@monomind/cli/dist/src/plugins/store/discovery.js +0 -69
- package/packages/@monomind/cli/dist/src/routing/embed-worker.d.ts +2 -0
- package/packages/@monomind/cli/dist/src/routing/embed-worker.js +55 -0
- package/packages/@monomind/cli/dist/src/routing/embedder.d.ts +31 -0
- package/packages/@monomind/cli/dist/src/routing/embedder.js +0 -0
- package/packages/@monomind/cli/dist/src/routing/llm-caller.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/routing/llm-caller.js +18 -3
- package/packages/@monomind/cli/dist/src/routing/route-layer-factory.d.ts +9 -0
- package/packages/@monomind/cli/dist/src/routing/route-layer-factory.js +151 -0
- package/packages/@monomind/cli/dist/src/services/worker-daemon.js +0 -1
- package/packages/@monomind/cli/dist/src/suggest.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/suggest.js +1 -1
- package/packages/@monomind/cli/package.json +9 -10
- package/packages/@monomind/cli/scripts/understand-analyze.mjs +1 -1
- package/packages/@monomind/guidance/README.md +6 -6
- package/packages/@monomind/guidance/package.json +9 -1
- package/scripts/install.sh +7 -7
- package/scripts/ua-enrich.mjs +3 -2
- package/packages/@monomind/shared/dist/agent-contract.d.ts +0 -28
- package/packages/@monomind/shared/dist/agent-contract.js +0 -57
- package/packages/@monomind/shared/dist/agent-error-result.d.ts +0 -17
- package/packages/@monomind/shared/dist/agent-error-result.js +0 -23
- package/packages/@monomind/shared/dist/core/config/defaults.d.ts +0 -41
- package/packages/@monomind/shared/dist/core/config/defaults.js +0 -186
- package/packages/@monomind/shared/dist/core/config/index.d.ts +0 -8
- package/packages/@monomind/shared/dist/core/config/index.js +0 -12
- package/packages/@monomind/shared/dist/core/config/loader.d.ts +0 -45
- package/packages/@monomind/shared/dist/core/config/loader.js +0 -238
- package/packages/@monomind/shared/dist/core/config/schema.d.ts +0 -324
- package/packages/@monomind/shared/dist/core/config/schema.js +0 -160
- package/packages/@monomind/shared/dist/core/config/validator.d.ts +0 -92
- package/packages/@monomind/shared/dist/core/config/validator.js +0 -147
- package/packages/@monomind/shared/dist/core/event-bus.d.ts +0 -31
- package/packages/@monomind/shared/dist/core/event-bus.js +0 -197
- package/packages/@monomind/shared/dist/core/index.d.ts +0 -15
- package/packages/@monomind/shared/dist/core/index.js +0 -19
- package/packages/@monomind/shared/dist/core/interfaces/agent.interface.d.ts +0 -200
- package/packages/@monomind/shared/dist/core/interfaces/agent.interface.js +0 -6
- package/packages/@monomind/shared/dist/core/interfaces/coordinator.interface.d.ts +0 -310
- package/packages/@monomind/shared/dist/core/interfaces/coordinator.interface.js +0 -7
- package/packages/@monomind/shared/dist/core/interfaces/event.interface.d.ts +0 -224
- package/packages/@monomind/shared/dist/core/interfaces/event.interface.js +0 -46
- package/packages/@monomind/shared/dist/core/interfaces/index.d.ts +0 -10
- package/packages/@monomind/shared/dist/core/interfaces/index.js +0 -15
- package/packages/@monomind/shared/dist/core/interfaces/memory.interface.d.ts +0 -298
- package/packages/@monomind/shared/dist/core/interfaces/memory.interface.js +0 -7
- package/packages/@monomind/shared/dist/core/interfaces/task.interface.d.ts +0 -185
- package/packages/@monomind/shared/dist/core/interfaces/task.interface.js +0 -6
- package/packages/@monomind/shared/dist/core/orchestrator/event-coordinator.d.ts +0 -35
- package/packages/@monomind/shared/dist/core/orchestrator/event-coordinator.js +0 -101
- package/packages/@monomind/shared/dist/core/orchestrator/health-monitor.d.ts +0 -60
- package/packages/@monomind/shared/dist/core/orchestrator/health-monitor.js +0 -166
- package/packages/@monomind/shared/dist/core/orchestrator/index.d.ts +0 -46
- package/packages/@monomind/shared/dist/core/orchestrator/index.js +0 -64
- package/packages/@monomind/shared/dist/core/orchestrator/lifecycle-manager.d.ts +0 -56
- package/packages/@monomind/shared/dist/core/orchestrator/lifecycle-manager.js +0 -195
- package/packages/@monomind/shared/dist/core/orchestrator/session-manager.d.ts +0 -83
- package/packages/@monomind/shared/dist/core/orchestrator/session-manager.js +0 -193
- package/packages/@monomind/shared/dist/core/orchestrator/task-manager.d.ts +0 -49
- package/packages/@monomind/shared/dist/core/orchestrator/task-manager.js +0 -253
- package/packages/@monomind/shared/dist/events/domain-events.d.ts +0 -282
- package/packages/@monomind/shared/dist/events/domain-events.js +0 -165
- package/packages/@monomind/shared/dist/events/event-store.d.ts +0 -126
- package/packages/@monomind/shared/dist/events/event-store.js +0 -416
- package/packages/@monomind/shared/dist/events/event-store.test.d.ts +0 -8
- package/packages/@monomind/shared/dist/events/event-store.test.js +0 -293
- package/packages/@monomind/shared/dist/events/example-usage.d.ts +0 -10
- package/packages/@monomind/shared/dist/events/example-usage.js +0 -193
- package/packages/@monomind/shared/dist/events/index.d.ts +0 -21
- package/packages/@monomind/shared/dist/events/index.js +0 -22
- package/packages/@monomind/shared/dist/events/projections.d.ts +0 -177
- package/packages/@monomind/shared/dist/events/projections.js +0 -421
- package/packages/@monomind/shared/dist/events/rvf-event-log.d.ts +0 -82
- package/packages/@monomind/shared/dist/events/rvf-event-log.js +0 -340
- package/packages/@monomind/shared/dist/events/state-reconstructor.d.ts +0 -101
- package/packages/@monomind/shared/dist/events/state-reconstructor.js +0 -263
- package/packages/@monomind/shared/dist/events.d.ts +0 -80
- package/packages/@monomind/shared/dist/events.js +0 -249
- package/packages/@monomind/shared/dist/hooks/example-usage.d.ts +0 -42
- package/packages/@monomind/shared/dist/hooks/example-usage.js +0 -351
- package/packages/@monomind/shared/dist/hooks/executor.d.ts +0 -100
- package/packages/@monomind/shared/dist/hooks/executor.js +0 -264
- package/packages/@monomind/shared/dist/hooks/hooks.test.d.ts +0 -9
- package/packages/@monomind/shared/dist/hooks/hooks.test.js +0 -322
- package/packages/@monomind/shared/dist/hooks/index.d.ts +0 -52
- package/packages/@monomind/shared/dist/hooks/index.js +0 -51
- package/packages/@monomind/shared/dist/hooks/registry.d.ts +0 -133
- package/packages/@monomind/shared/dist/hooks/registry.js +0 -277
- package/packages/@monomind/shared/dist/hooks/safety/bash-safety.d.ts +0 -105
- package/packages/@monomind/shared/dist/hooks/safety/bash-safety.js +0 -481
- package/packages/@monomind/shared/dist/hooks/safety/file-organization.d.ts +0 -144
- package/packages/@monomind/shared/dist/hooks/safety/file-organization.js +0 -328
- package/packages/@monomind/shared/dist/hooks/safety/git-commit.d.ts +0 -158
- package/packages/@monomind/shared/dist/hooks/safety/git-commit.js +0 -450
- package/packages/@monomind/shared/dist/hooks/safety/index.d.ts +0 -17
- package/packages/@monomind/shared/dist/hooks/safety/index.js +0 -17
- package/packages/@monomind/shared/dist/hooks/session-hooks.d.ts +0 -234
- package/packages/@monomind/shared/dist/hooks/session-hooks.js +0 -334
- package/packages/@monomind/shared/dist/hooks/task-hooks.d.ts +0 -163
- package/packages/@monomind/shared/dist/hooks/task-hooks.js +0 -326
- package/packages/@monomind/shared/dist/hooks/types.d.ts +0 -267
- package/packages/@monomind/shared/dist/hooks/types.js +0 -62
- package/packages/@monomind/shared/dist/hooks/verify-exports.test.d.ts +0 -9
- package/packages/@monomind/shared/dist/hooks/verify-exports.test.js +0 -93
- package/packages/@monomind/shared/dist/index.d.ts +0 -46
- package/packages/@monomind/shared/dist/index.js +0 -77
- package/packages/@monomind/shared/dist/mcp/connection-pool.d.ts +0 -98
- package/packages/@monomind/shared/dist/mcp/connection-pool.js +0 -364
- package/packages/@monomind/shared/dist/mcp/index.d.ts +0 -69
- package/packages/@monomind/shared/dist/mcp/index.js +0 -84
- package/packages/@monomind/shared/dist/mcp/server.d.ts +0 -166
- package/packages/@monomind/shared/dist/mcp/server.js +0 -593
- package/packages/@monomind/shared/dist/mcp/session-manager.d.ts +0 -136
- package/packages/@monomind/shared/dist/mcp/session-manager.js +0 -335
- package/packages/@monomind/shared/dist/mcp/tool-registry.d.ts +0 -178
- package/packages/@monomind/shared/dist/mcp/tool-registry.js +0 -439
- package/packages/@monomind/shared/dist/mcp/transport/http.d.ts +0 -104
- package/packages/@monomind/shared/dist/mcp/transport/http.js +0 -476
- package/packages/@monomind/shared/dist/mcp/transport/index.d.ts +0 -102
- package/packages/@monomind/shared/dist/mcp/transport/index.js +0 -238
- package/packages/@monomind/shared/dist/mcp/transport/stdio.d.ts +0 -104
- package/packages/@monomind/shared/dist/mcp/transport/stdio.js +0 -263
- package/packages/@monomind/shared/dist/mcp/transport/websocket.d.ts +0 -133
- package/packages/@monomind/shared/dist/mcp/transport/websocket.js +0 -396
- package/packages/@monomind/shared/dist/mcp/types.d.ts +0 -438
- package/packages/@monomind/shared/dist/mcp/types.js +0 -54
- package/packages/@monomind/shared/dist/plugin-interface.d.ts +0 -544
- package/packages/@monomind/shared/dist/plugin-interface.js +0 -23
- package/packages/@monomind/shared/dist/plugin-loader.d.ts +0 -139
- package/packages/@monomind/shared/dist/plugin-loader.js +0 -434
- package/packages/@monomind/shared/dist/plugin-registry.d.ts +0 -183
- package/packages/@monomind/shared/dist/plugin-registry.js +0 -457
- package/packages/@monomind/shared/dist/plugins/index.d.ts +0 -10
- package/packages/@monomind/shared/dist/plugins/index.js +0 -10
- package/packages/@monomind/shared/dist/plugins/official/hive-mind-plugin.d.ts +0 -106
- package/packages/@monomind/shared/dist/plugins/official/hive-mind-plugin.js +0 -241
- package/packages/@monomind/shared/dist/plugins/official/index.d.ts +0 -10
- package/packages/@monomind/shared/dist/plugins/official/index.js +0 -10
- package/packages/@monomind/shared/dist/plugins/official/maestro-plugin.d.ts +0 -121
- package/packages/@monomind/shared/dist/plugins/official/maestro-plugin.js +0 -355
- package/packages/@monomind/shared/dist/plugins/types.d.ts +0 -93
- package/packages/@monomind/shared/dist/plugins/types.js +0 -9
- package/packages/@monomind/shared/dist/reducers.d.ts +0 -33
- package/packages/@monomind/shared/dist/reducers.js +0 -89
- package/packages/@monomind/shared/dist/resilience/bulkhead.d.ts +0 -105
- package/packages/@monomind/shared/dist/resilience/bulkhead.js +0 -206
- package/packages/@monomind/shared/dist/resilience/circuit-breaker.d.ts +0 -132
- package/packages/@monomind/shared/dist/resilience/circuit-breaker.js +0 -233
- package/packages/@monomind/shared/dist/resilience/index.d.ts +0 -19
- package/packages/@monomind/shared/dist/resilience/index.js +0 -19
- package/packages/@monomind/shared/dist/resilience/rate-limiter.d.ts +0 -168
- package/packages/@monomind/shared/dist/resilience/rate-limiter.js +0 -314
- package/packages/@monomind/shared/dist/resilience/retry.d.ts +0 -91
- package/packages/@monomind/shared/dist/resilience/retry.js +0 -159
- package/packages/@monomind/shared/dist/retry-policy.d.ts +0 -14
- package/packages/@monomind/shared/dist/retry-policy.js +0 -23
- package/packages/@monomind/shared/dist/retry-runner.d.ts +0 -21
- package/packages/@monomind/shared/dist/retry-runner.js +0 -57
- package/packages/@monomind/shared/dist/schema-validator.d.ts +0 -46
- package/packages/@monomind/shared/dist/schema-validator.js +0 -133
- package/packages/@monomind/shared/dist/scratchpad.d.ts +0 -23
- package/packages/@monomind/shared/dist/scratchpad.js +0 -32
- package/packages/@monomind/shared/dist/security/index.d.ts +0 -10
- package/packages/@monomind/shared/dist/security/index.js +0 -12
- package/packages/@monomind/shared/dist/security/input-validation.d.ts +0 -73
- package/packages/@monomind/shared/dist/security/input-validation.js +0 -201
- package/packages/@monomind/shared/dist/security/secure-random.d.ts +0 -92
- package/packages/@monomind/shared/dist/security/secure-random.js +0 -142
- package/packages/@monomind/shared/dist/services/index.d.ts +0 -7
- package/packages/@monomind/shared/dist/services/index.js +0 -7
- package/packages/@monomind/shared/dist/services/progress.service.d.ts +0 -124
- package/packages/@monomind/shared/dist/services/progress.service.js +0 -402
- package/packages/@monomind/shared/dist/state-manager.d.ts +0 -34
- package/packages/@monomind/shared/dist/state-manager.js +0 -73
- package/packages/@monomind/shared/dist/state-validator.d.ts +0 -20
- package/packages/@monomind/shared/dist/state-validator.js +0 -49
- package/packages/@monomind/shared/dist/swarm-state.d.ts +0 -52
- package/packages/@monomind/shared/dist/swarm-state.js +0 -18
- package/packages/@monomind/shared/dist/testing/fixture-builder.d.ts +0 -14
- package/packages/@monomind/shared/dist/testing/fixture-builder.js +0 -32
- package/packages/@monomind/shared/dist/testing/index.d.ts +0 -2
- package/packages/@monomind/shared/dist/testing/index.js +0 -2
- package/packages/@monomind/shared/dist/testing/test-model.d.ts +0 -29
- package/packages/@monomind/shared/dist/testing/test-model.js +0 -53
- package/packages/@monomind/shared/dist/types/agent-registry.d.ts +0 -62
- package/packages/@monomind/shared/dist/types/agent-registry.js +0 -8
- package/packages/@monomind/shared/dist/types/agent-version.d.ts +0 -49
- package/packages/@monomind/shared/dist/types/agent-version.js +0 -7
- package/packages/@monomind/shared/dist/types/agent.types.d.ts +0 -137
- package/packages/@monomind/shared/dist/types/agent.types.js +0 -6
- package/packages/@monomind/shared/dist/types/benchmark.d.ts +0 -39
- package/packages/@monomind/shared/dist/types/benchmark.js +0 -6
- package/packages/@monomind/shared/dist/types/communication-flow.d.ts +0 -25
- package/packages/@monomind/shared/dist/types/communication-flow.js +0 -7
- package/packages/@monomind/shared/dist/types/consensus-audit.d.ts +0 -40
- package/packages/@monomind/shared/dist/types/consensus-audit.js +0 -7
- package/packages/@monomind/shared/dist/types/dlq.d.ts +0 -40
- package/packages/@monomind/shared/dist/types/dlq.js +0 -7
- package/packages/@monomind/shared/dist/types/eval.d.ts +0 -59
- package/packages/@monomind/shared/dist/types/eval.js +0 -6
- package/packages/@monomind/shared/dist/types/index.d.ts +0 -19
- package/packages/@monomind/shared/dist/types/index.js +0 -33
- package/packages/@monomind/shared/dist/types/mcp.types.d.ts +0 -266
- package/packages/@monomind/shared/dist/types/mcp.types.js +0 -7
- package/packages/@monomind/shared/dist/types/memory.types.d.ts +0 -236
- package/packages/@monomind/shared/dist/types/memory.types.js +0 -7
- package/packages/@monomind/shared/dist/types/retry.d.ts +0 -72
- package/packages/@monomind/shared/dist/types/retry.js +0 -40
- package/packages/@monomind/shared/dist/types/specialization.d.ts +0 -27
- package/packages/@monomind/shared/dist/types/specialization.js +0 -8
- package/packages/@monomind/shared/dist/types/swarm.types.d.ts +0 -186
- package/packages/@monomind/shared/dist/types/swarm.types.js +0 -65
- package/packages/@monomind/shared/dist/types/task.types.d.ts +0 -178
- package/packages/@monomind/shared/dist/types/task.types.js +0 -32
- package/packages/@monomind/shared/dist/types/termination.d.ts +0 -29
- package/packages/@monomind/shared/dist/types/termination.js +0 -14
- package/packages/@monomind/shared/dist/types/tool-version.d.ts +0 -41
- package/packages/@monomind/shared/dist/types/tool-version.js +0 -8
- package/packages/@monomind/shared/dist/types/trigger.d.ts +0 -40
- package/packages/@monomind/shared/dist/types/trigger.js +0 -8
- package/packages/@monomind/shared/dist/types.d.ts +0 -197
- package/packages/@monomind/shared/dist/types.js +0 -21
- package/packages/@monomind/shared/dist/utils/secure-logger.d.ts +0 -69
- package/packages/@monomind/shared/dist/utils/secure-logger.js +0 -208
|
@@ -1,457 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* V1 Plugin Registry
|
|
3
|
-
* Domain-Driven Design - Plugin-Based Architecture (ADR-004)
|
|
4
|
-
*
|
|
5
|
-
* Central registry for tracking plugin state, metadata, and registrations
|
|
6
|
-
*/
|
|
7
|
-
import { PluginError } from './plugin-interface.js';
|
|
8
|
-
/**
|
|
9
|
-
* Plugin registry for managing plugin lifecycle and registrations
|
|
10
|
-
*/
|
|
11
|
-
export class PluginRegistry {
|
|
12
|
-
plugins = new Map();
|
|
13
|
-
agentTypes = new Map();
|
|
14
|
-
taskTypes = new Map();
|
|
15
|
-
mcpTools = new Map();
|
|
16
|
-
cliCommands = new Map();
|
|
17
|
-
memoryBackends = new Map();
|
|
18
|
-
/**
|
|
19
|
-
* Register a plugin in the registry
|
|
20
|
-
*/
|
|
21
|
-
registerPlugin(plugin, initialState, context) {
|
|
22
|
-
if (this.plugins.has(plugin.name)) {
|
|
23
|
-
throw new PluginError(`Plugin '${plugin.name}' is already registered`, plugin.name, 'DUPLICATE_PLUGIN');
|
|
24
|
-
}
|
|
25
|
-
const info = {
|
|
26
|
-
plugin,
|
|
27
|
-
state: initialState,
|
|
28
|
-
context,
|
|
29
|
-
metrics: {
|
|
30
|
-
agentTypesRegistered: 0,
|
|
31
|
-
taskTypesRegistered: 0,
|
|
32
|
-
mcpToolsRegistered: 0,
|
|
33
|
-
cliCommandsRegistered: 0,
|
|
34
|
-
memoryBackendsRegistered: 0,
|
|
35
|
-
},
|
|
36
|
-
};
|
|
37
|
-
this.plugins.set(plugin.name, info);
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Unregister a plugin from the registry
|
|
41
|
-
*/
|
|
42
|
-
unregisterPlugin(pluginName) {
|
|
43
|
-
const info = this.plugins.get(pluginName);
|
|
44
|
-
if (!info) {
|
|
45
|
-
return false;
|
|
46
|
-
}
|
|
47
|
-
// Unregister all plugin's registrations
|
|
48
|
-
this.unregisterPluginAgentTypes(pluginName);
|
|
49
|
-
this.unregisterPluginTaskTypes(pluginName);
|
|
50
|
-
this.unregisterPluginMCPTools(pluginName);
|
|
51
|
-
this.unregisterPluginCLICommands(pluginName);
|
|
52
|
-
this.unregisterPluginMemoryBackends(pluginName);
|
|
53
|
-
// Remove plugin
|
|
54
|
-
return this.plugins.delete(pluginName);
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* Get a plugin by name
|
|
58
|
-
*/
|
|
59
|
-
getPlugin(pluginName) {
|
|
60
|
-
return this.plugins.get(pluginName);
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Get all registered plugins
|
|
64
|
-
*/
|
|
65
|
-
getAllPlugins() {
|
|
66
|
-
return new Map(this.plugins);
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* Get all plugin names
|
|
70
|
-
*/
|
|
71
|
-
getPluginNames() {
|
|
72
|
-
return Array.from(this.plugins.keys());
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* Check if a plugin is registered
|
|
76
|
-
*/
|
|
77
|
-
hasPlugin(pluginName) {
|
|
78
|
-
return this.plugins.has(pluginName);
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* Get plugins by state
|
|
82
|
-
*/
|
|
83
|
-
getPluginsByState(state) {
|
|
84
|
-
return Array.from(this.plugins.values()).filter((info) => info.state === state);
|
|
85
|
-
}
|
|
86
|
-
/**
|
|
87
|
-
* Get plugin count
|
|
88
|
-
*/
|
|
89
|
-
getPluginCount() {
|
|
90
|
-
return this.plugins.size;
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* Update plugin state
|
|
94
|
-
*/
|
|
95
|
-
updatePluginState(pluginName, state, error) {
|
|
96
|
-
const info = this.plugins.get(pluginName);
|
|
97
|
-
if (!info) {
|
|
98
|
-
throw new PluginError(`Plugin '${pluginName}' not found`, pluginName, 'INVALID_PLUGIN');
|
|
99
|
-
}
|
|
100
|
-
info.state = state;
|
|
101
|
-
if (state === 'initialized') {
|
|
102
|
-
info.initializedAt = new Date();
|
|
103
|
-
}
|
|
104
|
-
else if (state === 'shutdown') {
|
|
105
|
-
info.shutdownAt = new Date();
|
|
106
|
-
}
|
|
107
|
-
else if (state === 'error') {
|
|
108
|
-
info.error = error;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* Collect and update plugin metrics
|
|
113
|
-
*/
|
|
114
|
-
collectPluginMetrics(pluginName) {
|
|
115
|
-
const info = this.plugins.get(pluginName);
|
|
116
|
-
if (!info || !info.metrics) {
|
|
117
|
-
return;
|
|
118
|
-
}
|
|
119
|
-
const plugin = info.plugin;
|
|
120
|
-
// Count registered items
|
|
121
|
-
info.metrics.agentTypesRegistered = plugin.registerAgentTypes?.()?.length || 0;
|
|
122
|
-
info.metrics.taskTypesRegistered = plugin.registerTaskTypes?.()?.length || 0;
|
|
123
|
-
info.metrics.mcpToolsRegistered = plugin.registerMCPTools?.()?.length || 0;
|
|
124
|
-
info.metrics.cliCommandsRegistered = plugin.registerCLICommands?.()?.length || 0;
|
|
125
|
-
info.metrics.memoryBackendsRegistered = plugin.registerMemoryBackends?.()?.length || 0;
|
|
126
|
-
}
|
|
127
|
-
/**
|
|
128
|
-
* Get plugin status summary
|
|
129
|
-
*/
|
|
130
|
-
getStatusSummary() {
|
|
131
|
-
const states = Array.from(this.plugins.values()).reduce((acc, info) => {
|
|
132
|
-
acc[info.state] = (acc[info.state] || 0) + 1;
|
|
133
|
-
return acc;
|
|
134
|
-
}, {});
|
|
135
|
-
return {
|
|
136
|
-
totalPlugins: this.plugins.size,
|
|
137
|
-
states,
|
|
138
|
-
agentTypesRegistered: this.agentTypes.size,
|
|
139
|
-
taskTypesRegistered: this.taskTypes.size,
|
|
140
|
-
mcpToolsRegistered: this.mcpTools.size,
|
|
141
|
-
cliCommandsRegistered: this.cliCommands.size,
|
|
142
|
-
memoryBackendsRegistered: this.memoryBackends.size,
|
|
143
|
-
};
|
|
144
|
-
}
|
|
145
|
-
// =============================================================================
|
|
146
|
-
// Agent Type Registry
|
|
147
|
-
// =============================================================================
|
|
148
|
-
/**
|
|
149
|
-
* Register agent types from a plugin
|
|
150
|
-
*/
|
|
151
|
-
registerAgentTypes(pluginName) {
|
|
152
|
-
const info = this.plugins.get(pluginName);
|
|
153
|
-
if (!info) {
|
|
154
|
-
throw new PluginError(`Plugin '${pluginName}' not found`, pluginName, 'INVALID_PLUGIN');
|
|
155
|
-
}
|
|
156
|
-
const agentTypes = info.plugin.registerAgentTypes?.();
|
|
157
|
-
if (!agentTypes || agentTypes.length === 0) {
|
|
158
|
-
return;
|
|
159
|
-
}
|
|
160
|
-
for (const definition of agentTypes) {
|
|
161
|
-
if (this.agentTypes.has(definition.type)) {
|
|
162
|
-
throw new PluginError(`Agent type '${definition.type}' is already registered by plugin '${this.agentTypes.get(definition.type)?.plugin}'`, pluginName, 'DUPLICATE_PLUGIN');
|
|
163
|
-
}
|
|
164
|
-
this.agentTypes.set(definition.type, { plugin: pluginName, definition });
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
/**
|
|
168
|
-
* Unregister agent types from a plugin
|
|
169
|
-
*/
|
|
170
|
-
unregisterPluginAgentTypes(pluginName) {
|
|
171
|
-
for (const [type, entry] of Array.from(this.agentTypes.entries())) {
|
|
172
|
-
if (entry.plugin === pluginName) {
|
|
173
|
-
this.agentTypes.delete(type);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
/**
|
|
178
|
-
* Get agent type definition
|
|
179
|
-
*/
|
|
180
|
-
getAgentType(type) {
|
|
181
|
-
return this.agentTypes.get(type)?.definition;
|
|
182
|
-
}
|
|
183
|
-
/**
|
|
184
|
-
* Get all agent types
|
|
185
|
-
*/
|
|
186
|
-
getAllAgentTypes() {
|
|
187
|
-
return Array.from(this.agentTypes.values()).map((entry) => entry.definition);
|
|
188
|
-
}
|
|
189
|
-
/**
|
|
190
|
-
* Get agent types by plugin
|
|
191
|
-
*/
|
|
192
|
-
getAgentTypesByPlugin(pluginName) {
|
|
193
|
-
return Array.from(this.agentTypes.values())
|
|
194
|
-
.filter((entry) => entry.plugin === pluginName)
|
|
195
|
-
.map((entry) => entry.definition);
|
|
196
|
-
}
|
|
197
|
-
// =============================================================================
|
|
198
|
-
// Task Type Registry
|
|
199
|
-
// =============================================================================
|
|
200
|
-
/**
|
|
201
|
-
* Register task types from a plugin
|
|
202
|
-
*/
|
|
203
|
-
registerTaskTypes(pluginName) {
|
|
204
|
-
const info = this.plugins.get(pluginName);
|
|
205
|
-
if (!info) {
|
|
206
|
-
throw new PluginError(`Plugin '${pluginName}' not found`, pluginName, 'INVALID_PLUGIN');
|
|
207
|
-
}
|
|
208
|
-
const taskTypes = info.plugin.registerTaskTypes?.();
|
|
209
|
-
if (!taskTypes || taskTypes.length === 0) {
|
|
210
|
-
return;
|
|
211
|
-
}
|
|
212
|
-
for (const definition of taskTypes) {
|
|
213
|
-
if (this.taskTypes.has(definition.type)) {
|
|
214
|
-
throw new PluginError(`Task type '${definition.type}' is already registered by plugin '${this.taskTypes.get(definition.type)?.plugin}'`, pluginName, 'DUPLICATE_PLUGIN');
|
|
215
|
-
}
|
|
216
|
-
this.taskTypes.set(definition.type, { plugin: pluginName, definition });
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
/**
|
|
220
|
-
* Unregister task types from a plugin
|
|
221
|
-
*/
|
|
222
|
-
unregisterPluginTaskTypes(pluginName) {
|
|
223
|
-
for (const [type, entry] of Array.from(this.taskTypes.entries())) {
|
|
224
|
-
if (entry.plugin === pluginName) {
|
|
225
|
-
this.taskTypes.delete(type);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
/**
|
|
230
|
-
* Get task type definition
|
|
231
|
-
*/
|
|
232
|
-
getTaskType(type) {
|
|
233
|
-
return this.taskTypes.get(type)?.definition;
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* Get all task types
|
|
237
|
-
*/
|
|
238
|
-
getAllTaskTypes() {
|
|
239
|
-
return Array.from(this.taskTypes.values()).map((entry) => entry.definition);
|
|
240
|
-
}
|
|
241
|
-
/**
|
|
242
|
-
* Get task types by plugin
|
|
243
|
-
*/
|
|
244
|
-
getTaskTypesByPlugin(pluginName) {
|
|
245
|
-
return Array.from(this.taskTypes.values())
|
|
246
|
-
.filter((entry) => entry.plugin === pluginName)
|
|
247
|
-
.map((entry) => entry.definition);
|
|
248
|
-
}
|
|
249
|
-
// =============================================================================
|
|
250
|
-
// MCP Tool Registry
|
|
251
|
-
// =============================================================================
|
|
252
|
-
/**
|
|
253
|
-
* Register MCP tools from a plugin
|
|
254
|
-
*/
|
|
255
|
-
registerMCPTools(pluginName) {
|
|
256
|
-
const info = this.plugins.get(pluginName);
|
|
257
|
-
if (!info) {
|
|
258
|
-
throw new PluginError(`Plugin '${pluginName}' not found`, pluginName, 'INVALID_PLUGIN');
|
|
259
|
-
}
|
|
260
|
-
const mcpTools = info.plugin.registerMCPTools?.();
|
|
261
|
-
if (!mcpTools || mcpTools.length === 0) {
|
|
262
|
-
return;
|
|
263
|
-
}
|
|
264
|
-
for (const definition of mcpTools) {
|
|
265
|
-
if (this.mcpTools.has(definition.name)) {
|
|
266
|
-
throw new PluginError(`MCP tool '${definition.name}' is already registered by plugin '${this.mcpTools.get(definition.name)?.plugin}'`, pluginName, 'DUPLICATE_PLUGIN');
|
|
267
|
-
}
|
|
268
|
-
// Add plugin metadata
|
|
269
|
-
definition.pluginName = pluginName;
|
|
270
|
-
this.mcpTools.set(definition.name, { plugin: pluginName, definition });
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
* Unregister MCP tools from a plugin
|
|
275
|
-
*/
|
|
276
|
-
unregisterPluginMCPTools(pluginName) {
|
|
277
|
-
for (const [name, entry] of Array.from(this.mcpTools.entries())) {
|
|
278
|
-
if (entry.plugin === pluginName) {
|
|
279
|
-
this.mcpTools.delete(name);
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
/**
|
|
284
|
-
* Get MCP tool definition
|
|
285
|
-
*/
|
|
286
|
-
getMCPTool(name) {
|
|
287
|
-
return this.mcpTools.get(name)?.definition;
|
|
288
|
-
}
|
|
289
|
-
/**
|
|
290
|
-
* Get all MCP tools
|
|
291
|
-
*/
|
|
292
|
-
getAllMCPTools() {
|
|
293
|
-
return Array.from(this.mcpTools.values()).map((entry) => entry.definition);
|
|
294
|
-
}
|
|
295
|
-
/**
|
|
296
|
-
* Get MCP tools by plugin
|
|
297
|
-
*/
|
|
298
|
-
getMCPToolsByPlugin(pluginName) {
|
|
299
|
-
return Array.from(this.mcpTools.values())
|
|
300
|
-
.filter((entry) => entry.plugin === pluginName)
|
|
301
|
-
.map((entry) => entry.definition);
|
|
302
|
-
}
|
|
303
|
-
// =============================================================================
|
|
304
|
-
// CLI Command Registry
|
|
305
|
-
// =============================================================================
|
|
306
|
-
/**
|
|
307
|
-
* Register CLI commands from a plugin
|
|
308
|
-
*/
|
|
309
|
-
registerCLICommands(pluginName) {
|
|
310
|
-
const info = this.plugins.get(pluginName);
|
|
311
|
-
if (!info) {
|
|
312
|
-
throw new PluginError(`Plugin '${pluginName}' not found`, pluginName, 'INVALID_PLUGIN');
|
|
313
|
-
}
|
|
314
|
-
const cliCommands = info.plugin.registerCLICommands?.();
|
|
315
|
-
if (!cliCommands || cliCommands.length === 0) {
|
|
316
|
-
return;
|
|
317
|
-
}
|
|
318
|
-
for (const definition of cliCommands) {
|
|
319
|
-
if (this.cliCommands.has(definition.name)) {
|
|
320
|
-
throw new PluginError(`CLI command '${definition.name}' is already registered by plugin '${this.cliCommands.get(definition.name)?.plugin}'`, pluginName, 'DUPLICATE_PLUGIN');
|
|
321
|
-
}
|
|
322
|
-
this.cliCommands.set(definition.name, { plugin: pluginName, definition });
|
|
323
|
-
// Register aliases
|
|
324
|
-
if (definition.aliases) {
|
|
325
|
-
for (const alias of definition.aliases) {
|
|
326
|
-
if (this.cliCommands.has(alias)) {
|
|
327
|
-
throw new PluginError(`CLI command alias '${alias}' is already registered`, pluginName, 'DUPLICATE_PLUGIN');
|
|
328
|
-
}
|
|
329
|
-
this.cliCommands.set(alias, { plugin: pluginName, definition });
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* Unregister CLI commands from a plugin
|
|
336
|
-
*/
|
|
337
|
-
unregisterPluginCLICommands(pluginName) {
|
|
338
|
-
for (const [name, entry] of Array.from(this.cliCommands.entries())) {
|
|
339
|
-
if (entry.plugin === pluginName) {
|
|
340
|
-
this.cliCommands.delete(name);
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
/**
|
|
345
|
-
* Get CLI command definition
|
|
346
|
-
*/
|
|
347
|
-
getCLICommand(name) {
|
|
348
|
-
return this.cliCommands.get(name)?.definition;
|
|
349
|
-
}
|
|
350
|
-
/**
|
|
351
|
-
* Get all CLI commands
|
|
352
|
-
*/
|
|
353
|
-
getAllCLICommands() {
|
|
354
|
-
const seen = new Set();
|
|
355
|
-
return Array.from(this.cliCommands.values())
|
|
356
|
-
.map((entry) => entry.definition)
|
|
357
|
-
.filter((def) => {
|
|
358
|
-
if (seen.has(def))
|
|
359
|
-
return false;
|
|
360
|
-
seen.add(def);
|
|
361
|
-
return true;
|
|
362
|
-
});
|
|
363
|
-
}
|
|
364
|
-
/**
|
|
365
|
-
* Get CLI commands by plugin
|
|
366
|
-
*/
|
|
367
|
-
getCLICommandsByPlugin(pluginName) {
|
|
368
|
-
const seen = new Set();
|
|
369
|
-
return Array.from(this.cliCommands.values())
|
|
370
|
-
.filter((entry) => entry.plugin === pluginName)
|
|
371
|
-
.map((entry) => entry.definition)
|
|
372
|
-
.filter((def) => {
|
|
373
|
-
if (seen.has(def))
|
|
374
|
-
return false;
|
|
375
|
-
seen.add(def);
|
|
376
|
-
return true;
|
|
377
|
-
});
|
|
378
|
-
}
|
|
379
|
-
// =============================================================================
|
|
380
|
-
// Memory Backend Registry
|
|
381
|
-
// =============================================================================
|
|
382
|
-
/**
|
|
383
|
-
* Register memory backends from a plugin
|
|
384
|
-
*/
|
|
385
|
-
registerMemoryBackends(pluginName) {
|
|
386
|
-
const info = this.plugins.get(pluginName);
|
|
387
|
-
if (!info) {
|
|
388
|
-
throw new PluginError(`Plugin '${pluginName}' not found`, pluginName, 'INVALID_PLUGIN');
|
|
389
|
-
}
|
|
390
|
-
const memoryBackends = info.plugin.registerMemoryBackends?.();
|
|
391
|
-
if (!memoryBackends || memoryBackends.length === 0) {
|
|
392
|
-
return;
|
|
393
|
-
}
|
|
394
|
-
for (const factory of memoryBackends) {
|
|
395
|
-
if (this.memoryBackends.has(factory.name)) {
|
|
396
|
-
throw new PluginError(`Memory backend '${factory.name}' is already registered by plugin '${this.memoryBackends.get(factory.name)?.plugin}'`, pluginName, 'DUPLICATE_PLUGIN');
|
|
397
|
-
}
|
|
398
|
-
this.memoryBackends.set(factory.name, { plugin: pluginName, factory });
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
/**
|
|
402
|
-
* Unregister memory backends from a plugin
|
|
403
|
-
*/
|
|
404
|
-
unregisterPluginMemoryBackends(pluginName) {
|
|
405
|
-
for (const [name, entry] of Array.from(this.memoryBackends.entries())) {
|
|
406
|
-
if (entry.plugin === pluginName) {
|
|
407
|
-
this.memoryBackends.delete(name);
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
/**
|
|
412
|
-
* Get memory backend factory
|
|
413
|
-
*/
|
|
414
|
-
getMemoryBackend(name) {
|
|
415
|
-
return this.memoryBackends.get(name)?.factory;
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
* Get all memory backends
|
|
419
|
-
*/
|
|
420
|
-
getAllMemoryBackends() {
|
|
421
|
-
return Array.from(this.memoryBackends.values()).map((entry) => entry.factory);
|
|
422
|
-
}
|
|
423
|
-
/**
|
|
424
|
-
* Get memory backends by plugin
|
|
425
|
-
*/
|
|
426
|
-
getMemoryBackendsByPlugin(pluginName) {
|
|
427
|
-
return Array.from(this.memoryBackends.values())
|
|
428
|
-
.filter((entry) => entry.plugin === pluginName)
|
|
429
|
-
.map((entry) => entry.factory);
|
|
430
|
-
}
|
|
431
|
-
// =============================================================================
|
|
432
|
-
// Bulk Registration
|
|
433
|
-
// =============================================================================
|
|
434
|
-
/**
|
|
435
|
-
* Register all extension points from a plugin
|
|
436
|
-
*/
|
|
437
|
-
registerAllFromPlugin(pluginName) {
|
|
438
|
-
this.registerAgentTypes(pluginName);
|
|
439
|
-
this.registerTaskTypes(pluginName);
|
|
440
|
-
this.registerMCPTools(pluginName);
|
|
441
|
-
this.registerCLICommands(pluginName);
|
|
442
|
-
this.registerMemoryBackends(pluginName);
|
|
443
|
-
this.collectPluginMetrics(pluginName);
|
|
444
|
-
}
|
|
445
|
-
/**
|
|
446
|
-
* Clear all registrations (for testing)
|
|
447
|
-
*/
|
|
448
|
-
clear() {
|
|
449
|
-
this.plugins.clear();
|
|
450
|
-
this.agentTypes.clear();
|
|
451
|
-
this.taskTypes.clear();
|
|
452
|
-
this.mcpTools.clear();
|
|
453
|
-
this.cliCommands.clear();
|
|
454
|
-
this.memoryBackends.clear();
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
//# sourceMappingURL=plugin-registry.js.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Plugins System - ADR-004 Implementation
|
|
3
|
-
*
|
|
4
|
-
* Plugin architecture for extending Monomind functionality.
|
|
5
|
-
*
|
|
6
|
-
* @module v1/shared/plugins
|
|
7
|
-
*/
|
|
8
|
-
export type { PluginConfig, PluginContext, PluginEvent, PluginEventHandler, MonomindPlugin, PluginMetadata, IPluginRegistry, IPluginLoader, } from './types.js';
|
|
9
|
-
export { HiveMindPlugin, createHiveMindPlugin, type HiveMindConfig, type CollectiveDecision, type EmergentPattern, MaestroPlugin, createMaestroPlugin, type MaestroConfig, type WorkflowStep, type Workflow, type OrchestrationResult, } from './official/index.js';
|
|
10
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Plugins System - ADR-004 Implementation
|
|
3
|
-
*
|
|
4
|
-
* Plugin architecture for extending Monomind functionality.
|
|
5
|
-
*
|
|
6
|
-
* @module v1/shared/plugins
|
|
7
|
-
*/
|
|
8
|
-
// Official Plugins
|
|
9
|
-
export { HiveMindPlugin, createHiveMindPlugin, MaestroPlugin, createMaestroPlugin, } from './official/index.js';
|
|
10
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* HiveMind Plugin - Official Plugin (ADR-004)
|
|
3
|
-
*
|
|
4
|
-
* Implements collective intelligence and emergent behavior patterns.
|
|
5
|
-
* Part of the official plugin collection.
|
|
6
|
-
*
|
|
7
|
-
* @module v1/shared/plugins/official/hive-mind
|
|
8
|
-
*/
|
|
9
|
-
import type { MonomindPlugin, PluginContext, PluginConfig } from '../types.js';
|
|
10
|
-
/**
|
|
11
|
-
* HiveMind configuration
|
|
12
|
-
*/
|
|
13
|
-
export interface HiveMindConfig extends PluginConfig {
|
|
14
|
-
consensusThreshold: number;
|
|
15
|
-
collectiveMemoryEnabled: boolean;
|
|
16
|
-
emergentBehaviorEnabled: boolean;
|
|
17
|
-
maxVotingRounds: number;
|
|
18
|
-
decisionTimeout: number;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Collective decision
|
|
22
|
-
*/
|
|
23
|
-
export interface CollectiveDecision {
|
|
24
|
-
id: string;
|
|
25
|
-
question: string;
|
|
26
|
-
votes: Map<string, {
|
|
27
|
-
agentId: string;
|
|
28
|
-
vote: string;
|
|
29
|
-
confidence: number;
|
|
30
|
-
}>;
|
|
31
|
-
consensus?: string;
|
|
32
|
-
consensusConfidence: number;
|
|
33
|
-
timestamp: Date;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Emergent pattern
|
|
37
|
-
*/
|
|
38
|
-
export interface EmergentPattern {
|
|
39
|
-
id: string;
|
|
40
|
-
type: string;
|
|
41
|
-
description: string;
|
|
42
|
-
contributors: string[];
|
|
43
|
-
strength: number;
|
|
44
|
-
discoveredAt: Date;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* HiveMind Plugin Implementation
|
|
48
|
-
*/
|
|
49
|
-
export declare class HiveMindPlugin implements MonomindPlugin {
|
|
50
|
-
readonly id = "hive-mind";
|
|
51
|
-
readonly name = "HiveMind Collective Intelligence";
|
|
52
|
-
readonly version = "1.0.0";
|
|
53
|
-
readonly description = "Collective intelligence with consensus mechanisms and emergent behavior";
|
|
54
|
-
private context?;
|
|
55
|
-
private config;
|
|
56
|
-
private decisions;
|
|
57
|
-
private patterns;
|
|
58
|
-
private collectiveMemory;
|
|
59
|
-
constructor(config?: Partial<HiveMindConfig>);
|
|
60
|
-
initialize(context: PluginContext): Promise<void>;
|
|
61
|
-
shutdown(): Promise<void>;
|
|
62
|
-
/**
|
|
63
|
-
* Request a collective decision from the swarm
|
|
64
|
-
*/
|
|
65
|
-
requestDecision(question: string, options: string[]): Promise<CollectiveDecision>;
|
|
66
|
-
/**
|
|
67
|
-
* Submit a vote for a decision
|
|
68
|
-
*/
|
|
69
|
-
submitVote(decisionId: string, agentId: string, vote: string, confidence: number): boolean;
|
|
70
|
-
/**
|
|
71
|
-
* Get decision result
|
|
72
|
-
*/
|
|
73
|
-
getDecision(decisionId: string): CollectiveDecision | undefined;
|
|
74
|
-
/**
|
|
75
|
-
* Detect emergent patterns from agent behavior
|
|
76
|
-
*/
|
|
77
|
-
private detectEmergentPatterns;
|
|
78
|
-
/**
|
|
79
|
-
* Get emergent patterns
|
|
80
|
-
*/
|
|
81
|
-
getEmergentPatterns(): EmergentPattern[];
|
|
82
|
-
/**
|
|
83
|
-
* Store in collective memory
|
|
84
|
-
*/
|
|
85
|
-
storeCollective(key: string, value: unknown): void;
|
|
86
|
-
/**
|
|
87
|
-
* Retrieve from collective memory
|
|
88
|
-
*/
|
|
89
|
-
retrieveCollective(key: string): unknown;
|
|
90
|
-
/**
|
|
91
|
-
* Get collective memory statistics
|
|
92
|
-
*/
|
|
93
|
-
getCollectiveStats(): {
|
|
94
|
-
totalEntries: number;
|
|
95
|
-
patterns: number;
|
|
96
|
-
decisions: number;
|
|
97
|
-
topPatterns: EmergentPattern[];
|
|
98
|
-
};
|
|
99
|
-
private generateTaskKey;
|
|
100
|
-
private recalculateConsensus;
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Factory function
|
|
104
|
-
*/
|
|
105
|
-
export declare function createHiveMindPlugin(config?: Partial<HiveMindConfig>): HiveMindPlugin;
|
|
106
|
-
//# sourceMappingURL=hive-mind-plugin.d.ts.map
|