agentic-flow 1.8.15 → 1.9.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.
- package/.claude/agents/analysis/code-analyzer.md +1 -1
- package/.claude/agents/core/coder.md +57 -2
- package/.claude/agents/core/planner.md +53 -1
- package/.claude/agents/core/researcher.md +60 -6
- package/.claude/agents/core/reviewer.md +55 -1
- package/.claude/agents/core/tester.md +54 -1
- package/.claude/agents/goal/code-goal-planner.md +446 -0
- package/.claude/agents/goal/goal-planner.md +120 -25
- package/.claude/agents/hive-mind/collective-intelligence-coordinator.md +130 -0
- package/.claude/agents/hive-mind/queen-coordinator.md +203 -0
- package/.claude/agents/hive-mind/scout-explorer.md +242 -0
- package/.claude/agents/hive-mind/swarm-memory-manager.md +193 -0
- package/.claude/agents/hive-mind/worker-specialist.md +217 -0
- package/.claude/agents/neural/safla-neural.md +74 -0
- package/.claude/agents/reasoning/README.md +452 -0
- package/.claude/agents/reasoning/adaptive-learner.md +415 -0
- package/.claude/agents/reasoning/context-synthesizer.md +532 -0
- package/.claude/agents/reasoning/experience-curator.md +562 -0
- package/.claude/agents/reasoning/goal-planner.md +73 -0
- package/.claude/agents/reasoning/memory-optimizer.md +579 -0
- package/.claude/agents/reasoning/pattern-matcher.md +591 -0
- package/.claude/agents/reasoning/reasoning-optimized.md +587 -0
- package/.claude/agents/swarm/hierarchical-coordinator.md +75 -4
- package/.claude/agents/templates/coordinator-swarm-init.md +19 -4
- package/.claude/commands/coordination/README.md +9 -0
- package/.claude/commands/coordination/agent-spawn.md +25 -0
- package/.claude/commands/coordination/init.md +44 -0
- package/.claude/commands/coordination/orchestrate.md +43 -0
- package/.claude/commands/coordination/spawn.md +45 -0
- package/.claude/commands/coordination/swarm-init.md +85 -0
- package/.claude/commands/coordination/task-orchestrate.md +25 -0
- package/.claude/commands/hooks/overview.md +84 -10
- package/.claude/commands/memory/README.md +9 -0
- package/.claude/commands/memory/memory-persist.md +25 -0
- package/.claude/commands/memory/memory-search.md +25 -0
- package/.claude/commands/memory/memory-usage.md +25 -0
- package/.claude/commands/memory/neural.md +47 -0
- package/.claude/commands/memory/usage.md +46 -0
- package/.claude/settings.json +21 -20
- package/.claude/settings.local.json +3 -7
- package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
- package/.claude/skills/flow-nexus-neural/SKILL.md +738 -0
- package/.claude/skills/flow-nexus-platform/SKILL.md +1157 -0
- package/.claude/skills/flow-nexus-swarm/SKILL.md +610 -0
- package/.claude/skills/github-code-review/SKILL.md +1140 -0
- package/.claude/skills/github-multi-repo/SKILL.md +874 -0
- package/.claude/skills/github-project-management/SKILL.md +1277 -0
- package/.claude/skills/github-release-management/SKILL.md +1081 -0
- package/.claude/skills/github-workflow-automation/SKILL.md +1065 -0
- package/.claude/skills/hive-mind-advanced/SKILL.md +712 -0
- package/.claude/skills/hooks-automation/SKILL.md +1201 -0
- package/.claude/skills/pair-programming/SKILL.md +1202 -0
- package/.claude/skills/performance-analysis/SKILL.md +563 -0
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/.claude/skills/sparc-methodology/SKILL.md +1115 -0
- package/.claude/skills/stream-chain/SKILL.md +563 -0
- package/.claude/skills/swarm-advanced/SKILL.md +973 -0
- package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
- package/.claude/skills/verification-quality/SKILL.md +649 -0
- package/.claude/statusline-command.sh +176 -0
- package/.claude-flow/metrics/performance.json +87 -0
- package/.claude-flow/metrics/system-metrics.json +2138 -0
- package/.claude-flow/metrics/task-metrics.json +10 -0
- package/.hive-mind/README.md +43 -0
- package/.hive-mind/config/queens.json +59 -0
- package/.hive-mind/config/workers.json +72 -0
- package/.hive-mind/config.json +111 -0
- package/.hive-mind/hive.db +0 -0
- package/.mcp.json +39 -0
- package/.swarm/memory.db +0 -0
- package/.swarm/memory.db-shm +0 -0
- package/.swarm/memory.db-wal +0 -0
- package/CHANGELOG.md +83 -976
- package/CLAUDE.md +354 -0
- package/README.md +15 -1
- package/agentdb.db +0 -0
- package/agentic-flow/.agentdb-instructions.md +66 -0
- package/agentic-flow/.claude/agents/analysis/code-analyzer.md +209 -0
- package/agentic-flow/.claude/agents/analysis/code-review/analyze-code-quality.md +180 -0
- package/agentic-flow/.claude/agents/architecture/system-design/arch-system-design.md +156 -0
- package/agentic-flow/.claude/agents/base-template-generator.md +42 -0
- package/agentic-flow/.claude/agents/consensus/byzantine-coordinator.md +63 -0
- package/agentic-flow/.claude/agents/consensus/crdt-synchronizer.md +997 -0
- package/agentic-flow/.claude/agents/consensus/gossip-coordinator.md +63 -0
- package/agentic-flow/.claude/agents/consensus/performance-benchmarker.md +851 -0
- package/agentic-flow/.claude/agents/consensus/quorum-manager.md +823 -0
- package/agentic-flow/.claude/agents/consensus/raft-manager.md +63 -0
- package/agentic-flow/.claude/agents/consensus/security-manager.md +622 -0
- package/agentic-flow/.claude/agents/core/coder.md +211 -0
- package/agentic-flow/.claude/agents/core/planner.md +116 -0
- package/agentic-flow/.claude/agents/core/researcher.md +136 -0
- package/agentic-flow/.claude/agents/core/reviewer.md +272 -0
- package/agentic-flow/.claude/agents/core/tester.md +266 -0
- package/agentic-flow/.claude/agents/data/ml/data-ml-model.md +193 -0
- package/agentic-flow/.claude/agents/development/backend/dev-backend-api.md +142 -0
- package/agentic-flow/.claude/agents/devops/ci-cd/ops-cicd-github.md +164 -0
- package/agentic-flow/.claude/agents/documentation/api-docs/docs-api-openapi.md +174 -0
- package/agentic-flow/.claude/agents/flow-nexus/app-store.md +88 -0
- package/agentic-flow/.claude/agents/flow-nexus/authentication.md +69 -0
- package/agentic-flow/.claude/agents/flow-nexus/challenges.md +81 -0
- package/agentic-flow/.claude/agents/flow-nexus/neural-network.md +88 -0
- package/agentic-flow/.claude/agents/flow-nexus/payments.md +83 -0
- package/agentic-flow/.claude/agents/flow-nexus/sandbox.md +76 -0
- package/agentic-flow/.claude/agents/flow-nexus/swarm.md +76 -0
- package/agentic-flow/.claude/agents/flow-nexus/user-tools.md +96 -0
- package/agentic-flow/.claude/agents/flow-nexus/workflow.md +84 -0
- package/agentic-flow/.claude/agents/github/code-review-swarm.md +538 -0
- package/agentic-flow/.claude/agents/github/github-modes.md +173 -0
- package/agentic-flow/.claude/agents/github/issue-tracker.md +319 -0
- package/agentic-flow/.claude/agents/github/multi-repo-swarm.md +553 -0
- package/agentic-flow/.claude/agents/github/pr-manager.md +191 -0
- package/agentic-flow/.claude/agents/github/project-board-sync.md +509 -0
- package/agentic-flow/.claude/agents/github/release-manager.md +367 -0
- package/agentic-flow/.claude/agents/github/release-swarm.md +583 -0
- package/agentic-flow/.claude/agents/github/repo-architect.md +398 -0
- package/agentic-flow/.claude/agents/github/swarm-issue.md +573 -0
- package/agentic-flow/.claude/agents/github/swarm-pr.md +428 -0
- package/agentic-flow/.claude/agents/github/sync-coordinator.md +452 -0
- package/agentic-flow/.claude/agents/github/workflow-automation.md +635 -0
- package/agentic-flow/.claude/agents/goal/agent.md +816 -0
- package/agentic-flow/.claude/agents/goal/goal-planner.md +73 -0
- package/agentic-flow/.claude/agents/optimization/benchmark-suite.md +665 -0
- package/agentic-flow/.claude/agents/optimization/load-balancer.md +431 -0
- package/agentic-flow/.claude/agents/optimization/performance-monitor.md +672 -0
- package/agentic-flow/.claude/agents/optimization/resource-allocator.md +674 -0
- package/agentic-flow/.claude/agents/optimization/topology-optimizer.md +808 -0
- package/agentic-flow/.claude/agents/sparc/architecture.md +472 -0
- package/agentic-flow/.claude/agents/sparc/pseudocode.md +318 -0
- package/agentic-flow/.claude/agents/sparc/refinement.md +525 -0
- package/agentic-flow/.claude/agents/sparc/specification.md +276 -0
- package/agentic-flow/.claude/agents/specialized/mobile/spec-mobile-react-native.md +226 -0
- package/agentic-flow/.claude/agents/swarm/adaptive-coordinator.md +396 -0
- package/agentic-flow/.claude/agents/swarm/hierarchical-coordinator.md +256 -0
- package/agentic-flow/.claude/agents/swarm/mesh-coordinator.md +392 -0
- package/agentic-flow/.claude/agents/templates/automation-smart-agent.md +205 -0
- package/agentic-flow/.claude/agents/templates/coordinator-swarm-init.md +90 -0
- package/agentic-flow/.claude/agents/templates/github-pr-manager.md +177 -0
- package/agentic-flow/.claude/agents/templates/implementer-sparc-coder.md +259 -0
- package/agentic-flow/.claude/agents/templates/memory-coordinator.md +187 -0
- package/agentic-flow/.claude/agents/templates/migration-plan.md +746 -0
- package/agentic-flow/.claude/agents/templates/orchestrator-task.md +139 -0
- package/agentic-flow/.claude/agents/templates/performance-analyzer.md +199 -0
- package/agentic-flow/.claude/agents/templates/sparc-coordinator.md +183 -0
- package/agentic-flow/.claude/agents/testing/unit/tdd-london-swarm.md +244 -0
- package/agentic-flow/.claude/agents/testing/validation/production-validator.md +395 -0
- package/agentic-flow/.claude/commands/agents/README.md +10 -0
- package/agentic-flow/.claude/commands/agents/agent-capabilities.md +21 -0
- package/agentic-flow/.claude/commands/agents/agent-coordination.md +28 -0
- package/agentic-flow/.claude/commands/agents/agent-spawning.md +28 -0
- package/agentic-flow/.claude/commands/agents/agent-types.md +26 -0
- package/agentic-flow/.claude/commands/analysis/COMMAND_COMPLIANCE_REPORT.md +54 -0
- package/agentic-flow/.claude/commands/analysis/README.md +9 -0
- package/agentic-flow/.claude/commands/analysis/bottleneck-detect.md +162 -0
- package/agentic-flow/.claude/commands/analysis/performance-bottlenecks.md +59 -0
- package/agentic-flow/.claude/commands/analysis/performance-report.md +25 -0
- package/agentic-flow/.claude/commands/analysis/token-efficiency.md +45 -0
- package/agentic-flow/.claude/commands/analysis/token-usage.md +25 -0
- package/agentic-flow/.claude/commands/automation/README.md +9 -0
- package/agentic-flow/.claude/commands/automation/auto-agent.md +122 -0
- package/agentic-flow/.claude/commands/automation/self-healing.md +106 -0
- package/agentic-flow/.claude/commands/automation/session-memory.md +90 -0
- package/agentic-flow/.claude/commands/automation/smart-agents.md +73 -0
- package/agentic-flow/.claude/commands/automation/smart-spawn.md +25 -0
- package/agentic-flow/.claude/commands/automation/workflow-select.md +25 -0
- package/agentic-flow/.claude/commands/flow-nexus/app-store.md +124 -0
- package/agentic-flow/.claude/commands/flow-nexus/challenges.md +120 -0
- package/agentic-flow/.claude/commands/flow-nexus/login-registration.md +65 -0
- package/agentic-flow/.claude/commands/flow-nexus/neural-network.md +134 -0
- package/agentic-flow/.claude/commands/flow-nexus/payments.md +116 -0
- package/agentic-flow/.claude/commands/flow-nexus/sandbox.md +83 -0
- package/agentic-flow/.claude/commands/flow-nexus/swarm.md +87 -0
- package/agentic-flow/.claude/commands/flow-nexus/user-tools.md +152 -0
- package/agentic-flow/.claude/commands/flow-nexus/workflow.md +115 -0
- package/agentic-flow/.claude/commands/github/README.md +11 -0
- package/agentic-flow/.claude/commands/github/code-review-swarm.md +514 -0
- package/agentic-flow/.claude/commands/github/code-review.md +25 -0
- package/agentic-flow/.claude/commands/github/github-modes.md +147 -0
- package/agentic-flow/.claude/commands/github/github-swarm.md +121 -0
- package/agentic-flow/.claude/commands/github/issue-tracker.md +292 -0
- package/agentic-flow/.claude/commands/github/issue-triage.md +25 -0
- package/agentic-flow/.claude/commands/github/multi-repo-swarm.md +519 -0
- package/agentic-flow/.claude/commands/github/pr-enhance.md +26 -0
- package/agentic-flow/.claude/commands/github/pr-manager.md +170 -0
- package/agentic-flow/.claude/commands/github/project-board-sync.md +471 -0
- package/agentic-flow/.claude/commands/github/release-manager.md +338 -0
- package/agentic-flow/.claude/commands/github/release-swarm.md +544 -0
- package/agentic-flow/.claude/commands/github/repo-analyze.md +25 -0
- package/agentic-flow/.claude/commands/github/repo-architect.md +367 -0
- package/agentic-flow/.claude/commands/github/swarm-issue.md +482 -0
- package/agentic-flow/.claude/commands/github/swarm-pr.md +285 -0
- package/agentic-flow/.claude/commands/github/sync-coordinator.md +301 -0
- package/agentic-flow/.claude/commands/github/workflow-automation.md +442 -0
- package/agentic-flow/.claude/commands/hive-mind/README.md +17 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-consensus.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-init.md +18 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-memory.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-metrics.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-resume.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-sessions.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-spawn.md +21 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-status.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-stop.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind-wizard.md +8 -0
- package/agentic-flow/.claude/commands/hive-mind/hive-mind.md +27 -0
- package/agentic-flow/.claude/commands/hooks/README.md +11 -0
- package/agentic-flow/.claude/commands/hooks/overview.md +58 -0
- package/agentic-flow/.claude/commands/hooks/post-edit.md +117 -0
- package/agentic-flow/.claude/commands/hooks/post-task.md +112 -0
- package/agentic-flow/.claude/commands/hooks/pre-edit.md +113 -0
- package/agentic-flow/.claude/commands/hooks/pre-task.md +111 -0
- package/agentic-flow/.claude/commands/hooks/session-end.md +118 -0
- package/agentic-flow/.claude/commands/hooks/setup.md +103 -0
- package/agentic-flow/.claude/commands/monitoring/README.md +9 -0
- package/agentic-flow/.claude/commands/monitoring/agent-metrics.md +25 -0
- package/agentic-flow/.claude/commands/monitoring/agents.md +44 -0
- package/agentic-flow/.claude/commands/monitoring/real-time-view.md +25 -0
- package/agentic-flow/.claude/commands/monitoring/status.md +46 -0
- package/agentic-flow/.claude/commands/monitoring/swarm-monitor.md +25 -0
- package/agentic-flow/.claude/commands/optimization/README.md +9 -0
- package/agentic-flow/.claude/commands/optimization/auto-topology.md +62 -0
- package/agentic-flow/.claude/commands/optimization/cache-manage.md +25 -0
- package/agentic-flow/.claude/commands/optimization/parallel-execute.md +25 -0
- package/agentic-flow/.claude/commands/optimization/parallel-execution.md +50 -0
- package/agentic-flow/.claude/commands/optimization/topology-optimize.md +25 -0
- package/agentic-flow/.claude/commands/pair/commands.md +546 -0
- package/agentic-flow/.claude/commands/pair/config.md +510 -0
- package/agentic-flow/.claude/commands/pair/examples.md +512 -0
- package/agentic-flow/.claude/commands/pair/modes.md +348 -0
- package/agentic-flow/.claude/commands/pair/session.md +407 -0
- package/agentic-flow/.claude/commands/pair/start.md +209 -0
- package/agentic-flow/.claude/commands/sparc/analyzer.md +52 -0
- package/agentic-flow/.claude/commands/sparc/architect.md +53 -0
- package/agentic-flow/.claude/commands/sparc/batch-executor.md +54 -0
- package/agentic-flow/.claude/commands/sparc/coder.md +54 -0
- package/agentic-flow/.claude/commands/sparc/debugger.md +54 -0
- package/agentic-flow/.claude/commands/sparc/designer.md +53 -0
- package/agentic-flow/.claude/commands/sparc/documenter.md +54 -0
- package/agentic-flow/.claude/commands/sparc/innovator.md +54 -0
- package/agentic-flow/.claude/commands/sparc/memory-manager.md +54 -0
- package/agentic-flow/.claude/commands/sparc/optimizer.md +54 -0
- package/agentic-flow/.claude/commands/sparc/orchestrator.md +132 -0
- package/agentic-flow/.claude/commands/sparc/researcher.md +54 -0
- package/agentic-flow/.claude/commands/sparc/reviewer.md +54 -0
- package/agentic-flow/.claude/commands/sparc/sparc-modes.md +174 -0
- package/agentic-flow/.claude/commands/sparc/swarm-coordinator.md +54 -0
- package/agentic-flow/.claude/commands/sparc/tdd.md +54 -0
- package/agentic-flow/.claude/commands/sparc/tester.md +54 -0
- package/agentic-flow/.claude/commands/sparc/workflow-manager.md +54 -0
- package/agentic-flow/.claude/commands/stream-chain/pipeline.md +121 -0
- package/agentic-flow/.claude/commands/stream-chain/run.md +70 -0
- package/agentic-flow/.claude/commands/swarm/README.md +15 -0
- package/agentic-flow/.claude/commands/swarm/analysis.md +95 -0
- package/agentic-flow/.claude/commands/swarm/development.md +96 -0
- package/agentic-flow/.claude/commands/swarm/examples.md +168 -0
- package/agentic-flow/.claude/commands/swarm/maintenance.md +102 -0
- package/agentic-flow/.claude/commands/swarm/optimization.md +117 -0
- package/agentic-flow/.claude/commands/swarm/research.md +136 -0
- package/agentic-flow/.claude/commands/swarm/swarm-analysis.md +8 -0
- package/agentic-flow/.claude/commands/swarm/swarm-background.md +8 -0
- package/agentic-flow/.claude/commands/swarm/swarm-init.md +19 -0
- package/agentic-flow/.claude/commands/swarm/swarm-modes.md +8 -0
- package/agentic-flow/.claude/commands/swarm/swarm-monitor.md +8 -0
- package/agentic-flow/.claude/commands/swarm/swarm-spawn.md +19 -0
- package/agentic-flow/.claude/commands/swarm/swarm-status.md +8 -0
- package/agentic-flow/.claude/commands/swarm/swarm-strategies.md +8 -0
- package/agentic-flow/.claude/commands/swarm/swarm.md +27 -0
- package/agentic-flow/.claude/commands/swarm/testing.md +131 -0
- package/agentic-flow/.claude/commands/training/README.md +9 -0
- package/agentic-flow/.claude/commands/training/model-update.md +25 -0
- package/agentic-flow/.claude/commands/training/neural-patterns.md +74 -0
- package/agentic-flow/.claude/commands/training/neural-train.md +25 -0
- package/agentic-flow/.claude/commands/training/pattern-learn.md +25 -0
- package/agentic-flow/.claude/commands/training/specialization.md +63 -0
- package/agentic-flow/.claude/commands/truth/start.md +143 -0
- package/agentic-flow/.claude/commands/verify/check.md +50 -0
- package/agentic-flow/.claude/commands/verify/start.md +128 -0
- package/agentic-flow/.claude/commands/workflows/README.md +9 -0
- package/agentic-flow/.claude/commands/workflows/development.md +78 -0
- package/agentic-flow/.claude/commands/workflows/research.md +63 -0
- package/agentic-flow/.claude/commands/workflows/workflow-create.md +25 -0
- package/agentic-flow/.claude/commands/workflows/workflow-execute.md +25 -0
- package/agentic-flow/.claude/commands/workflows/workflow-export.md +25 -0
- package/agentic-flow/.claude/helpers/checkpoint-manager.sh +251 -0
- package/agentic-flow/.claude/helpers/github-safe.js +106 -0
- package/agentic-flow/.claude/helpers/github-setup.sh +28 -0
- package/agentic-flow/.claude/helpers/quick-start.sh +19 -0
- package/agentic-flow/.claude/helpers/setup-mcp.sh +18 -0
- package/agentic-flow/.claude/helpers/standard-checkpoint-hooks.sh +179 -0
- package/agentic-flow/.claude/settings.json +114 -0
- package/agentic-flow/.claude/settings.local.json +14 -0
- package/agentic-flow/.claude/skills/skill-builder/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/AGENT-BOOSTER-STATUS.md +292 -0
- package/agentic-flow/CHANGELOG-v1.3.0.md +120 -0
- package/agentic-flow/CHANGELOG.md +1023 -0
- package/agentic-flow/COMPLETION_REPORT_v1.7.1.md +335 -0
- package/agentic-flow/DOCKER-VERIFICATION.md +207 -0
- package/agentic-flow/IMPLEMENTATION_SUMMARY_v1.7.1.md +241 -0
- package/agentic-flow/NPX_AGENTDB_SETUP.md +175 -0
- package/agentic-flow/PUBLISH_GUIDE.md +438 -0
- package/agentic-flow/PUBLISH_SUMMARY_v1.7.1.md +198 -0
- package/agentic-flow/Python/AddTwoNumbers.py +2 -0
- package/agentic-flow/README.md +577 -0
- package/agentic-flow/RELEASE_NOTES_v1.7.0.md +297 -0
- package/agentic-flow/RELEASE_v1.7.1.md +327 -0
- package/agentic-flow/SUPABASE-INTEGRATION-COMPLETE.md +357 -0
- package/agentic-flow/TESTING_QUICK_START.md +223 -0
- package/agentic-flow/TOOL-EMULATION-INTEGRATION-ISSUE.md +669 -0
- package/agentic-flow/VALIDATION_v1.7.1.md +234 -0
- package/agentic-flow/add_two_numbers.py +2 -0
- package/agentic-flow/agentdb.db +0 -0
- package/agentic-flow/agentic-flow/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/agentic-flow/.claude-flow/metrics/performance.json +87 -0
- package/agentic-flow/agentic-flow/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/app/app.py +0 -0
- package/agentic-flow/config/.mcp.json +22 -0
- package/agentic-flow/config/router.config.example.json +224 -0
- package/agentic-flow/config/router.config.json +224 -0
- package/agentic-flow/deployment/.claude-settings.json +14 -0
- package/agentic-flow/docker/claude-agent-sdk/docker/claude-agent-sdk/FASTMCP_SUMMARY.md +369 -0
- package/agentic-flow/docker/claude-agent-sdk/docker/claude-agent-sdk/docs/ARCHITECTURE.md +385 -0
- package/agentic-flow/docker/claude-agent-sdk/docker/claude-agent-sdk/docs/fastmcp-implementation.md +351 -0
- package/agentic-flow/docker/claude-agent-sdk/docker/claude-agent-sdk/docs/fastmcp-quick-start.md +358 -0
- package/agentic-flow/docker/claude-agent-sdk/docker/claude-agent-sdk/src/mcp/fastmcp/README.md +340 -0
- package/agentic-flow/docker/fastmcp-test.Dockerfile +24 -0
- package/agentic-flow/docker/federation-test/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/docker/federation-test/.claude-flow/metrics/performance.json +87 -0
- package/agentic-flow/docker/federation-test/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/docker/federation-test/README.md +314 -0
- package/agentic-flow/docker/federation-test/run-test.sh +65 -0
- package/agentic-flow/docker/federation-test/standalone-agent.js +180 -0
- package/agentic-flow/docker/federation-test/standalone-hub.js +85 -0
- package/agentic-flow/docker/federation-test/test-published-hub.js +66 -0
- package/agentic-flow/docker/test-instance/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/docker/test-instance/.claude-flow/metrics/performance.json +87 -0
- package/agentic-flow/docker/test-instance/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/docker/test-instance/.env.example +51 -0
- package/agentic-flow/docker/test-instance/COMPREHENSIVE_TEST_RESULTS.md +766 -0
- package/agentic-flow/docker/test-instance/DOCKER_VALIDATION_SUMMARY.md +417 -0
- package/agentic-flow/docker/test-instance/FIX_VALIDATION_REPORT.md +619 -0
- package/agentic-flow/docker/test-instance/INDEX.md +282 -0
- package/agentic-flow/docker/test-instance/QUICK_START.md +217 -0
- package/agentic-flow/docker/test-instance/README.md +266 -0
- package/agentic-flow/docker/test-instance/VALIDATION_REPORT.md +424 -0
- package/agentic-flow/docker/test-instance/test-model-config.md +69 -0
- package/agentic-flow/docker/test-instance/test-runner.sh +91 -0
- package/agentic-flow/docker/test-v1.1.10.dockerfile +12 -0
- package/agentic-flow/docker/test-validation.sh +37 -0
- package/agentic-flow/docker-test.sh +77 -0
- package/agentic-flow/docs/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/docs/.claude-flow/metrics/performance.json +87 -0
- package/agentic-flow/docs/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/docs/CLAUDE.md +352 -0
- package/agentic-flow/docs/INDEX.md +279 -0
- package/agentic-flow/docs/LICENSE +21 -0
- package/agentic-flow/docs/architecture/EXECUTIVE_SUMMARY.md +310 -0
- package/agentic-flow/docs/architecture/IMPROVEMENT_PLAN.md +11 -0
- package/agentic-flow/docs/architecture/INTEGRATION-STATUS.md +290 -0
- package/agentic-flow/docs/architecture/MULTI_MODEL_ROUTER_PLAN.md +620 -0
- package/agentic-flow/docs/architecture/PACKAGE_STRUCTURE.md +199 -0
- package/agentic-flow/docs/architecture/QUIC-IMPLEMENTATION-SUMMARY.md +490 -0
- package/agentic-flow/docs/architecture/QUIC-SWARM-INTEGRATION.md +593 -0
- package/agentic-flow/docs/architecture/QUICK_WINS.md +333 -0
- package/agentic-flow/docs/architecture/README.md +15 -0
- package/agentic-flow/docs/architecture/RESEARCH_SUMMARY.md +652 -0
- package/agentic-flow/docs/guides/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/docs/guides/.claude-flow/metrics/performance.json +9 -0
- package/agentic-flow/docs/guides/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/docs/guides/ADDING-MCP-SERVERS-CLI.md +515 -0
- package/agentic-flow/docs/guides/ADDING-MCP-SERVERS.md +642 -0
- package/agentic-flow/docs/guides/AGENT-BOOSTER.md +435 -0
- package/agentic-flow/docs/guides/ALTERNATIVE_LLM_MODELS.md +524 -0
- package/agentic-flow/docs/guides/CLAUDE-CODE-INTEGRATION.md +403 -0
- package/agentic-flow/docs/guides/DEPLOYMENT.md +906 -0
- package/agentic-flow/docs/guides/DOCKER_AGENT_USAGE.md +352 -0
- package/agentic-flow/docs/guides/IMPLEMENTATION_EXAMPLES.md +960 -0
- package/agentic-flow/docs/guides/MCP-TOOLS.md +1166 -0
- package/agentic-flow/docs/guides/MODEL-ID-MAPPING.md +193 -0
- package/agentic-flow/docs/guides/MULTI-MODEL-ROUTER.md +702 -0
- package/agentic-flow/docs/guides/NPM-PUBLISH.md +218 -0
- package/agentic-flow/docs/guides/ONNX-PROXY-IMPLEMENTATION.md +254 -0
- package/agentic-flow/docs/guides/ONNX_CLI_USAGE.md +344 -0
- package/agentic-flow/docs/guides/ONNX_OPTIMIZATION_GUIDE.md +665 -0
- package/agentic-flow/docs/guides/OPENROUTER_DEPLOYMENT.md +495 -0
- package/agentic-flow/docs/guides/PROXY-ARCHITECTURE-AND-EXTENSION.md +708 -0
- package/agentic-flow/docs/guides/QUIC-SWARM-QUICKSTART.md +543 -0
- package/agentic-flow/docs/guides/README.md +17 -0
- package/agentic-flow/docs/guides/REASONINGBANK.md +721 -0
- package/agentic-flow/docs/guides/STANDALONE_PROXY_GUIDE.md +437 -0
- package/agentic-flow/docs/guides/agent-sdk.md +234 -0
- package/agentic-flow/docs/reports/QUIC_PHASE1_COMPLETE.md +409 -0
- package/agentic-flow/docs/reports/QUIC_PHASE1_COMPLETION.md +323 -0
- package/agentic-flow/docs/reviews/quic-implementation-review.md +1076 -0
- package/agentic-flow/docs/router/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/docs/router/.claude-flow/metrics/performance.json +9 -0
- package/agentic-flow/docs/router/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/examples/PHASE-2-INTEGRATION-GUIDE.md +380 -0
- package/agentic-flow/examples/PHASE-2-TEST-REPORT.md +325 -0
- package/agentic-flow/examples/REGRESSION-TEST-RESULTS.md +334 -0
- package/agentic-flow/examples/TOOL-EMULATION-ARCHITECTURE.md +473 -0
- package/agentic-flow/examples/VALIDATION-SUMMARY.md +323 -0
- package/agentic-flow/examples/agentdb-memory-patterns/.claude-flow/metrics/agent-metrics.json +1 -0
- package/agentic-flow/examples/agentdb-memory-patterns/.claude-flow/metrics/performance.json +87 -0
- package/agentic-flow/examples/agentdb-memory-patterns/.claude-flow/metrics/task-metrics.json +10 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/.github/workflows/ci.yml +341 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/CONTRIBUTING.md +388 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/Cargo.lock +5323 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/Cargo.toml +105 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/DELIVERABLES.md +140 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/LICENSE +32 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/PROJECT_SUMMARY.md +515 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/PUBLISHING_NOTES.md +171 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/PUBLISH_CHECKLIST.md +216 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/README.md +591 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/TEST_SUITE_SUMMARY.md +318 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/benches/alignment_benchmark.rs +207 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/benches/api_benchmark.rs +346 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/benches/comprehensive_benchmarks.rs +362 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/benches/immune_analysis_benchmark.rs +369 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/benches/offtarget_prediction_benchmark.rs +291 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/alignment-engine/Cargo.toml +23 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/alignment-engine/src/bwa.rs +255 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/alignment-engine/src/error.rs +34 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/alignment-engine/src/lib.rs +136 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/alignment-engine/src/quality.rs +287 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/alignment-engine/tests/alignment_test.rs +230 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/api-service/Cargo.toml +32 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/api-service/src/error.rs +38 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/api-service/src/main.rs +41 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/api-service/src/routes.rs +56 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/api-service/tests/api_test.rs +306 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/Cargo.toml +17 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/src/error.rs +31 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/src/expression.rs +313 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/src/lib.rs +27 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/src/metadata.rs +302 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/src/sequencing.rs +240 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/src/targets.rs +281 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/data-models/tests/models_test.rs +155 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/Cargo.toml +24 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/src/deseq.rs +265 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/src/error.rs +28 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/src/lib.rs +10 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/src/normalization.rs +173 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/src/pathways.rs +195 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/immune-analyzer/tests/analysis_test.rs +258 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/Cargo.toml +26 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/src/error.rs +34 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/src/features.rs +272 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/src/lib.rs +72 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/src/ml_model.rs +264 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/src/scoring.rs +292 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/offtarget-predictor/tests/prediction_test.rs +245 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/processing-orchestrator/Cargo.toml +26 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/processing-orchestrator/src/jobs.rs +27 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/processing-orchestrator/src/main.rs +35 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/processing-orchestrator/src/scheduler.rs +24 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/crates/processing-orchestrator/src/workers.rs +17 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/ARCHITECTURAL_DECISIONS.md +429 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/ARCHITECTURE.md +2964 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/ARCHITECTURE_SUMMARY.md +286 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/BENCHMARKS.md +380 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/PSEUDOCODE.md +354 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/REVIEW_REPORT.md +543 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/RIGHTS_PRESERVING_PLATFORM.md +342 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/SECURITY_AUDIT.md +756 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/SPECIFICATION.md +719 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/TESTING_GUIDE.md +575 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/algorithms/README.md +121 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/algorithms/alignment-module.md +868 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/algorithms/expression-module.md +928 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/algorithms/offtarget-module.md +1030 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/algorithms/reporting-module.md +1135 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/api-spec.openapi.yaml +1258 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/architecture-diagrams/c4-component.md +240 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/architecture-diagrams/c4-container.md +223 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/architecture-diagrams/c4-context.md +86 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/architecture-diagrams/sequence-diagrams.md +499 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/data-layer/schema.sql +363 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/data-models.yaml +1639 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/database-schemas.sql +731 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/deployment/alignment-service.yaml +171 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/deployment/api-gateway.yaml +253 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/deployment/namespace.yaml +26 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/deployment/postgresql.yaml +119 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/docker/alignment-service/requirements.txt +18 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/docker/diff-expr-service/requirements.txt +19 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/docker/off-target-service/requirements.txt +27 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/flowcharts/README.md +130 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/flowcharts/alignment-flowchart.md +221 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/flowcharts/expression-flowchart.md +426 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/flowcharts/offtarget-flowchart.md +317 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/flowcharts/reporting-flowchart.md +502 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/mongodb-collections.json +759 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/monitoring/alerts.yml +291 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/monitoring/grafana-dashboard-system-overview.json +236 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/monitoring/prometheus.yml +213 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/docs/security/oauth2-authentication.md +478 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/api/gateway.rs +257 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/api/mod.rs +1 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/audit/logger.rs +345 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/audit/mod.rs +1 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/governance/mod.rs +1 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/governance/policy.rs +339 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/lib.rs +227 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/main.rs +114 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/privacy/differential.rs +303 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/privacy/mod.rs +1 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/services/grpc.rs +358 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/src/services/mod.rs +1 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/README.md +336 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/TESTING_SUMMARY.md +386 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/TEST_COVERAGE_REPORT.md +347 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/fixtures/mod.rs +400 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/integration/enhanced_integration_tests.rs +432 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/integration_test.rs +340 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/load_testing_k6.js +269 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/load_testing_locust.py +290 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/property/enhanced_property_tests.rs +479 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/property_tests.rs +371 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/rights_preserving_test.rs +251 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/unit/alignment_tests.rs +307 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/unit/api_service_tests.rs +376 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/unit/data_models_tests.rs +283 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/unit/immune_analyzer_tests.rs +374 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/unit/offtarget_tests.rs +334 -0
- package/agentic-flow/examples/crispr-cas13-pipeline/tests/unit/orchestrator_tests.rs +466 -0
- package/agentic-flow/examples/federated-agentdb/README.md +494 -0
- package/agentic-flow/memory-backup.json +48 -0
- package/agentic-flow/package-lock.json +3974 -0
- package/agentic-flow/package.json +182 -0
- package/agentic-flow/patches/agentdb-fix-imports.patch +13 -0
- package/agentic-flow/path/to/file.py +2 -0
- package/agentic-flow/path/to/your/script.py +2 -0
- package/agentic-flow/python/calculation.py +1 -0
- package/agentic-flow/python/operation.py +1 -0
- package/agentic-flow/run-agentdb.sh +8 -0
- package/agentic-flow/supabase/.temp/cli-latest +1 -0
- package/agentic-flow/supabase/.temp/gotrue-version +1 -0
- package/agentic-flow/supabase/.temp/pooler-url +1 -0
- package/agentic-flow/supabase/.temp/postgres-version +1 -0
- package/agentic-flow/supabase/.temp/project-ref +1 -0
- package/agentic-flow/supabase/.temp/rest-version +1 -0
- package/agentic-flow/supabase/.temp/storage-migration +1 -0
- package/agentic-flow/supabase/.temp/storage-version +1 -0
- package/agentic-flow/test-tool-commands.sh +26 -0
- package/agentic-llm/DEPLOYMENT_STATUS_UPDATE.md +30 -0
- package/agentic-llm/MONITOR_SUMMARY.md +116 -0
- package/agentic-llm/benchmarks/DEPLOYMENT_SUMMARY.md +106 -0
- package/agentic-llm/benchmarks/benchmark.py +419 -0
- package/agentic-llm/benchmarks/comparison/optimization_comparison.json +57 -0
- package/agentic-llm/benchmarks/finetune_comparison.py +252 -0
- package/agentic-llm/benchmarks/results/.gitkeep +2 -0
- package/agentic-llm/benchmarks/results/README.md +59 -0
- package/agentic-llm/benchmarks/results/agent-booster-results.json +116 -0
- package/agentic-llm/benchmarks/results/morph-baseline-results.json +168 -0
- package/agentic-llm/benchmarks/run_comparison.py +246 -0
- package/agentic-llm/check-training.sh +27 -0
- package/agentic-llm/claude_sdk/integration.py +335 -0
- package/agentic-llm/cloudrun/cloud_runner.py +390 -0
- package/agentic-llm/cloudrun/deploy.sh +83 -0
- package/agentic-llm/cloudrun/entrypoint.sh +10 -0
- package/agentic-llm/cloudrun/health_server.py +114 -0
- package/agentic-llm/cloudrun/setup-secrets.sh +26 -0
- package/agentic-llm/cloudrun/upload_to_huggingface.py +277 -0
- package/agentic-llm/configs/training_config.json +71 -0
- package/agentic-llm/deployment/DEPLOYMENT_INSTRUCTIONS.md +93 -0
- package/agentic-llm/deployment/fly.toml +52 -0
- package/agentic-llm/docs/BENCHMARK_OPTIMIZATION_GUIDE.md +435 -0
- package/agentic-llm/docs/CLOUD_RUN_DEPLOYMENT.md +368 -0
- package/agentic-llm/docs/DEPLOYMENT_GUIDE.md +475 -0
- package/agentic-llm/docs/DEPLOYMENT_READY.txt +98 -0
- package/agentic-llm/docs/DEPLOYMENT_STATUS.md +389 -0
- package/agentic-llm/docs/DEPLOYMENT_SUMMARY.md +358 -0
- package/agentic-llm/docs/DEPLOY_STATUS.md +69 -0
- package/agentic-llm/docs/FINETUNING_GUIDE.md +483 -0
- package/agentic-llm/docs/INDEX.md +43 -0
- package/agentic-llm/docs/OPTIMIZATION_RESULTS.md +375 -0
- package/agentic-llm/docs/PHI4_FINETUNING_RESEARCH.md +1352 -0
- package/agentic-llm/docs/QUICKSTART.md +124 -0
- package/agentic-llm/docs/README.md +389 -0
- package/agentic-llm/docs/TRAINING_MONITOR.md +77 -0
- package/agentic-llm/docs/USAGE_GUIDE.md +499 -0
- package/agentic-llm/monitor-loop.sh +52 -0
- package/agentic-llm/monitor-training.sh +56 -0
- package/agentic-llm/quantization/quantize.py +255 -0
- package/agentic-llm/requirements.txt +43 -0
- package/agentic-llm/scripts/deploy.sh +120 -0
- package/agentic-llm/scripts/run_benchmarks.sh +53 -0
- package/agentic-llm/scripts/run_finetuning.sh +90 -0
- package/agentic-llm/scripts/test_local.sh +77 -0
- package/agentic-llm/training/data/mcp_tools_dataset.json +140 -0
- package/agentic-llm/training/finetune_mcp.py +306 -0
- package/agentic-llm/training/mcp_dataset.py +395 -0
- package/agentic-llm/training/train.py +347 -0
- package/agentic-llm/validation/data/mcp_validation_set.json +37 -0
- package/agentic-llm/validation/mcp_validator.py +267 -0
- package/agentic-llm/validation/validator.py +319 -0
- package/bench/.claude-flow/metrics/agent-metrics.json +1 -0
- package/bench/.claude-flow/metrics/performance.json +9 -0
- package/bench/.claude-flow/metrics/task-metrics.json +10 -0
- package/bench/BENCHMARK-GUIDE.md +506 -0
- package/bench/BENCHMARK-RESULTS-TEMPLATE.md +253 -0
- package/bench/COMPLETION-SUMMARY.md +409 -0
- package/bench/README.md +217 -0
- package/bench/agents/baseline-agent.js +69 -0
- package/bench/agents/baseline-agent.ts +78 -0
- package/bench/agents/reasoningbank-agent.js +141 -0
- package/bench/agents/reasoningbank-agent.ts +173 -0
- package/bench/benchmark.js +244 -0
- package/bench/benchmark.ts +309 -0
- package/bench/config.json +79 -0
- package/bench/lib/metrics.js +163 -0
- package/bench/lib/metrics.ts +216 -0
- package/bench/lib/report-generator.js +252 -0
- package/bench/lib/report-generator.ts +266 -0
- package/bench/lib/types.js +4 -0
- package/bench/lib/types.ts +117 -0
- package/bench/package.json +36 -0
- package/bench/run-benchmark.sh +67 -0
- package/bench/scenarios/api-design-tasks.js +175 -0
- package/bench/scenarios/api-design-tasks.ts +199 -0
- package/bench/scenarios/coding-tasks.js +199 -0
- package/bench/scenarios/coding-tasks.ts +223 -0
- package/bench/scenarios/debugging-tasks.js +216 -0
- package/bench/scenarios/debugging-tasks.ts +234 -0
- package/bench/scenarios/problem-solving-tasks.js +172 -0
- package/bench/scenarios/problem-solving-tasks.ts +196 -0
- package/bench/tsconfig.json +26 -0
- package/benchmarks/quic-transport.bench.ts +584 -0
- package/claude-flow +34 -0
- package/crates/agentic-flow-quic/.claude-flow/metrics/agent-metrics.json +1 -0
- package/crates/agentic-flow-quic/.claude-flow/metrics/performance.json +87 -0
- package/crates/agentic-flow-quic/.claude-flow/metrics/task-metrics.json +10 -0
- package/crates/agentic-flow-quic/Cargo.toml +66 -0
- package/crates/agentic-flow-quic/IMPLEMENTATION.md +299 -0
- package/crates/agentic-flow-quic/README.md +75 -0
- package/crates/agentic-flow-quic/benches/quic_bench.rs +229 -0
- package/crates/agentic-flow-quic/build.rs +23 -0
- package/crates/agentic-flow-quic/src/client.rs +242 -0
- package/crates/agentic-flow-quic/src/error.rs +100 -0
- package/crates/agentic-flow-quic/src/lib.rs +76 -0
- package/crates/agentic-flow-quic/src/server.rs +213 -0
- package/crates/agentic-flow-quic/src/types.rs +164 -0
- package/crates/agentic-flow-quic/src/wasm.rs +143 -0
- package/crates/agentic-flow-quic/src/wasm_stub.rs +61 -0
- package/crates/agentic-flow-quic/tests/integration_test.rs +254 -0
- package/crates/agentic-flow-quic/wasm-pack-build.sh +17 -0
- package/crates/sqlite-vector-core/.claude-flow/metrics/agent-metrics.json +1 -0
- package/crates/sqlite-vector-core/.claude-flow/metrics/performance.json +87 -0
- package/crates/sqlite-vector-core/.claude-flow/metrics/task-metrics.json +10 -0
- package/crates/sqlite-vector-core/Cargo.lock +942 -0
- package/crates/sqlite-vector-wasm/.claude-flow/metrics/agent-metrics.json +1 -0
- package/crates/sqlite-vector-wasm/.claude-flow/metrics/performance.json +87 -0
- package/crates/sqlite-vector-wasm/.claude-flow/metrics/task-metrics.json +10 -0
- package/crates/sqlite-vector-wasm/Cargo.lock +499 -0
- package/docs/.claude-flow/metrics/performance.json +3 -3
- package/docs/.claude-flow/metrics/task-metrics.json +3 -3
- package/docs/README.md +85 -0
- package/docs/REORGANIZATION_PLAN.md +102 -0
- package/docs/REORGANIZATION_SUMMARY.md +183 -0
- package/docs/agent-integration-guide.md +483 -0
- package/docs/api/mcp-tools/mcp-documentation-review.md +834 -0
- package/docs/api/mcp-tools/mcp-tools-architecture.md +1082 -0
- package/docs/architecture/FEDERATED-AGENTDB-EPHEMERAL-AGENTS.md +680 -0
- package/docs/architecture/FEDERATION-CLI-VALIDATION-REPORT.md +491 -0
- package/docs/features/README.md +87 -0
- package/docs/features/agent-booster/00-INDEX.md +230 -0
- package/docs/features/agent-booster/00-OVERVIEW.md +454 -0
- package/docs/features/agent-booster/01-ARCHITECTURE.md +699 -0
- package/docs/features/agent-booster/02-INTEGRATION.md +771 -0
- package/docs/features/agent-booster/03-BENCHMARKS.md +616 -0
- package/docs/features/agent-booster/04-NPM-SDK.md +673 -0
- package/docs/features/agent-booster/GITHUB-ISSUE.md +523 -0
- package/docs/features/agent-booster/README.md +44 -0
- package/docs/features/agentdb/AGENTDB-INTEGRATION-COMPLETE.md +590 -0
- package/docs/features/agentdb/AGENTDB-LEARNING-SYSTEMS-REPORT.md +783 -0
- package/docs/features/agentdb/AGENTDB-MCP-SECURITY-AUDIT.md +877 -0
- package/docs/features/agentdb/AGENTDB_INTEGRATION_PLAN.md +776 -0
- package/docs/features/agentdb/CAUSAL_RECALL_SEARCH_IMPLEMENTATION.md +141 -0
- package/docs/features/agentdb/CLI_GUIDE.md +826 -0
- package/docs/features/agentdb/CORE_TOOLS_6-10_IMPLEMENTATION.md +376 -0
- package/docs/features/agentdb/LEARNING_TOOLS_6-10.md +474 -0
- package/docs/features/agentdb/MCP_TOOLS_IMPLEMENTATION.md +373 -0
- package/docs/features/agentdb/README.md +86 -0
- package/docs/features/agentdb/TEST_SUITE_SUMMARY.md +222 -0
- package/docs/features/agentdb/VERSION_1.3.0_RELEASE.md +199 -0
- package/docs/features/agentdb/WASM-VECTOR-IMPLEMENTATION.md +422 -0
- package/docs/features/agentdb/agentdb-code-quality-analysis.md +1050 -0
- package/docs/features/agentdb/agentdb-tools-verification.md +498 -0
- package/docs/features/federation/FEDERATION-CLI-INTEGRATION.md +494 -0
- package/docs/features/federation/FEDERATION-IMPLEMENTATION-SUMMARY.md +546 -0
- package/docs/features/federation/FEDERATION-TEST-REPORT.md +504 -0
- package/docs/features/federation/README.md +35 -0
- package/docs/features/quic/BUILD_INSTRUCTIONS.md +220 -0
- package/docs/features/quic/FINAL-VALIDATION.md +336 -0
- package/docs/features/quic/IMPLEMENTATION-COMPLETE-SUMMARY.md +349 -0
- package/docs/features/quic/IMPLEMENTATION_STATUS.md +234 -0
- package/docs/features/quic/PERFORMANCE-VALIDATION.md +282 -0
- package/docs/features/quic/QUIC-INTEGRATION-SUMMARY.md +545 -0
- package/docs/features/quic/QUIC-INTEGRATION.md +502 -0
- package/docs/features/quic/QUIC-README.md +226 -0
- package/docs/features/quic/QUIC-STATUS-OLD.md +513 -0
- package/docs/features/quic/QUIC-STATUS.md +451 -0
- package/docs/features/quic/QUIC-VALIDATION-REPORT.md +370 -0
- package/docs/features/quic/QUIC_FINAL_STATUS.md +399 -0
- package/docs/features/quic/QUIC_IMPLEMENTATION_SUMMARY.md +607 -0
- package/docs/features/quic/README-CONDENSED.md +447 -0
- package/docs/features/quic/README.md +79 -0
- package/docs/features/quic/README_QUIC_PHASE1.md +117 -0
- package/docs/features/quic/WASM-INTEGRATION-COMPLETE.md +382 -0
- package/docs/features/quic/quic-research.md +1415 -0
- package/docs/features/quic/quic-tutorial.md +485 -0
- package/docs/features/reasoningbank/MEMORY_VALIDATION_REPORT.md +417 -0
- package/docs/features/reasoningbank/README.md +64 -0
- package/docs/features/reasoningbank/REASONING-AGENTS.md +482 -0
- package/docs/features/reasoningbank/REASONINGBANK-BENCHMARK-RESULTS.md +166 -0
- package/docs/features/reasoningbank/REASONINGBANK-BENCHMARK.md +396 -0
- package/docs/features/reasoningbank/REASONINGBANK-CLI-INTEGRATION.md +455 -0
- package/docs/features/reasoningbank/REASONINGBANK-DEMO.md +419 -0
- package/docs/features/reasoningbank/REASONINGBANK-VALIDATION.md +532 -0
- package/docs/features/reasoningbank/REASONINGBANK_ARCHITECTURE.md +663 -0
- package/docs/features/reasoningbank/REASONINGBANK_BACKENDS.md +375 -0
- package/docs/features/reasoningbank/REASONINGBANK_FIXES.md +455 -0
- package/docs/features/reasoningbank/REASONINGBANK_IMPLEMENTATION_STATUS.md +478 -0
- package/docs/features/reasoningbank/REASONINGBANK_INTEGRATION_PLAN.md +1059 -0
- package/docs/features/reasoningbank/REASONINGBANK_INVESTIGATION.md +380 -0
- package/docs/features/router/README.md +38 -0
- package/docs/features/router/ROUTER_CONFIG_REFERENCE.md +577 -0
- package/docs/features/router/ROUTER_USER_GUIDE.md +865 -0
- package/docs/features/router/TOP20_MODELS_MATRIX.md +80 -0
- package/docs/guides/MCP-AUTHENTICATION.md +2017 -0
- package/docs/guides/MCP-QUICKSTART.md +521 -0
- package/docs/guides/MCP-TOOLS.md +1050 -850
- package/docs/guides/MCP-TROUBLESHOOTING.md +1602 -0
- package/docs/guides/NPM_STATS_GUIDE.md +407 -0
- package/docs/parallel-execution-implementation.md +525 -0
- package/docs/plans/.claude-flow/metrics/agent-metrics.json +1 -0
- package/docs/plans/.claude-flow/metrics/performance.json +87 -0
- package/docs/plans/.claude-flow/metrics/task-metrics.json +10 -0
- package/docs/releases/archive/GITHUB-ISSUE-ADDENDUM-v1.4.6.md +1529 -0
- package/docs/releases/archive/GITHUB-ISSUE-BUILD-FIX.md +756 -0
- package/docs/releases/archive/GITHUB-ISSUE-REASONINGBANK-BENCHMARK.md +643 -0
- package/docs/releases/archive/GITHUB-ISSUE-v1.4.6.md +1453 -0
- package/docs/releases/archive/GITHUB-ISSUE-v1.5.0.md +468 -0
- package/docs/releases/archive/HOTFIX-v1.2.1.md +315 -0
- package/docs/releases/archive/INTEGRATION-COMPLETE.md +291 -0
- package/docs/releases/archive/MIGRATION-STATUS.md +118 -0
- package/docs/releases/archive/MIGRATION_v1.7.0.md +299 -0
- package/docs/releases/archive/NPM-PUBLISH-GUIDE-v1.2.0.md +440 -0
- package/docs/releases/archive/PUBLICATION_REPORT_v1.5.11.md +421 -0
- package/docs/releases/archive/PUBLISH-COMPLETE-v1.2.0.md +308 -0
- package/docs/releases/archive/README.md +82 -0
- package/docs/releases/archive/RELEASE-v1.2.0.md +339 -0
- package/docs/releases/archive/VALIDATION_REPORT_v1.7.0.md +418 -0
- package/docs/releases/archive/ZERO-BUILD-MIGRATION.md +227 -0
- package/docs/releases/archive/github-issue-agentdb-integration.md +379 -0
- package/docs/releases/archive/v1.4.6-reasoningbank-release.md +541 -0
- package/docs/releases/archive/v1.4.7-bugfix.md +212 -0
- package/docs/releases/archive/v1.5.14-QUIC-TRANSPORT.md +201 -0
- package/docs/releases/archive/v1.5.9-DOCKER-VERIFICATION.md +263 -0
- package/docs/releases/archive/v1.5.9-RELEASE-SUMMARY.md +222 -0
- package/docs/swarm-optimization-report.md +626 -0
- package/index.html +15 -0
- package/memory/agents/README.md +31 -0
- package/memory/claude-flow@alpha-data.json +5 -0
- package/memory/memory-store.json +69 -0
- package/memory/sessions/README.md +32 -0
- package/package.json +44 -169
- package/src/App.css +5 -0
- package/src/App.tsx +15 -0
- package/src/components/AgentTypes.tsx +122 -0
- package/src/components/CoreComponents.tsx +131 -0
- package/src/components/Features.tsx +102 -0
- package/src/components/Footer.tsx +159 -0
- package/src/components/Hero.tsx +87 -0
- package/src/components/PerformanceMetrics.tsx +125 -0
- package/src/components/QuickStart.tsx +178 -0
- package/src/index.css +87 -0
- package/src/main.tsx +10 -0
- package/src/pages/LandingPage.tsx +23 -0
- package/src/transport/quic.ts +258 -0
- package/tailwind.config.ts +79 -0
- package/vite.config.ts +20 -0
- package/dist/agentdb/tests/frontier-features.test.js +0 -665
- package/dist/cli/federation-cli.d.ts +0 -53
- package/dist/reasoningbank/config/reasoningbank-types.ts +0 -57
- package/validation/docker/Dockerfile.reasoningbank-local +0 -24
- package/validation/docker/Dockerfile.reasoningbank-test +0 -21
- package/validation/docker/README.md +0 -234
- package/validation/docker/docker-compose.yml +0 -29
- package/validation/docker/test-reasoningbank-npx.mjs +0 -442
- package/validation/docker-e2e-validation.sh +0 -212
- package/validation/docker-quic-test.sh +0 -42
- package/validation/docker-quic-validation.sh +0 -60
- package/validation/quic-deep-validation.ts +0 -304
- package/validation/test-quic-integration.ts +0 -243
- package/validation/test-quic-wasm.ts +0 -94
- package/validation/test-regression.mjs +0 -246
- package/validation/test-wasm-e2e.ts +0 -354
- package/validation/test-wasm-integration.ts +0 -99
- package/wasm/quic/agentic_flow_quic.d.ts +0 -37
- package/wasm/quic/agentic_flow_quic_bg.wasm.d.ts +0 -19
- package/wasm/reasoningbank/reasoningbank_wasm.d.ts +0 -41
- package/wasm/reasoningbank/reasoningbank_wasm_bg.wasm.d.ts +0 -20
- /package/.claude/agents/{goal → reasoning}/agent.md +0 -0
- /package/{.claude/skills/.claude-flow → .claude-flow}/metrics/agent-metrics.json +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/MIGRATION_SUMMARY.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/README.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/consensus/README.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/custom/test-long-runner.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/optimization/README.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/payments/agentic-payments.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/sublinear/consensus-coordinator.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/sublinear/matrix-optimizer.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/sublinear/pagerank-analyzer.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/sublinear/performance-optimizer.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/sublinear/trading-predictor.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/swarm/README.md +0 -0
- /package/{.claude → agentic-flow/.claude}/agents/test-neural.md +0 -0
- /package/{.claude → agentic-flow/.claude}/answer.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/claude-flow-help.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/claude-flow-memory.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/claude-flow-swarm.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/pair/README.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/ask.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/code.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/debug.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/devops.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/docs-writer.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/integration.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/mcp.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/post-deployment-monitoring-mode.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/refinement-optimization-mode.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/security-review.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/sparc.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/spec-pseudocode.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/supabase-admin.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc/tutorial.md +0 -0
- /package/{.claude → agentic-flow/.claude}/commands/sparc.md +0 -0
- /package/{.claude → agentic-flow/.claude}/mcp.json +0 -0
- /package/{.claude → agentic-flow/.claude}/openrouter-models-research.md +0 -0
- /package/{.claude → agentic-flow/.claude}/openrouter-quick-reference.md +0 -0
- /package/{.claude → agentic-flow/.claude}/settings-backup.json +0 -0
- /package/{.claude → agentic-flow/.claude}/settings-optimized.json +0 -0
- /package/{.claude → agentic-flow/.claude}/settings-simple.json +0 -0
- /package/{.claude/skills/skill-builder → agentic-flow/.claude/skills}/.claude-flow/metrics/agent-metrics.json +0 -0
- /package/{.claude → agentic-flow/.claude}/skills/.claude-flow/metrics/performance.json +0 -0
- /package/{.claude → agentic-flow/.claude}/skills/.claude-flow/metrics/task-metrics.json +0 -0
- /package/{.claude → agentic-flow/.claude}/skills/skill-builder/.claude-flow/metrics/performance.json +0 -0
- /package/{.claude → agentic-flow/.claude}/skills/skill-builder/.claude-flow/metrics/task-metrics.json +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/benchmarks/comprehensive-benchmark.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/benchmarks/frontier-benchmark.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/benchmarks/reflexion-benchmark.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/cli/agentdb-cli.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/CausalMemoryGraph.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/CausalRecall.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/EmbeddingService.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/ExplainableRecall.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/NightlyLearner.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/ReflexionMemory.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/SkillLibrary.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/frontier-index.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/controllers/index.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/index.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/optimizations/BatchOperations.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/optimizations/QueryOptimizer.js +0 -0
- /package/{dist → agentic-flow/dist}/agentdb/optimizations/index.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/claudeAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/claudeAgentDirect.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/claudeFlowAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/codeReviewAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/dataAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/directApiAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/agents/webResearchAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/agent-manager.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/claude-code-wrapper.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/config-wizard.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/federation-cli.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/mcp-manager.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/mcp.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/skills-manager.js +0 -0
- /package/{dist → agentic-flow/dist}/cli/update-message.js +0 -0
- /package/{dist → agentic-flow/dist}/cli-proxy.js +0 -0
- /package/{dist → agentic-flow/dist}/cli-standalone-proxy.js +0 -0
- /package/{dist → agentic-flow/dist}/config/claudeFlow.js +0 -0
- /package/{dist → agentic-flow/dist}/config/quic.js +0 -0
- /package/{dist → agentic-flow/dist}/config/tools.js +0 -0
- /package/{dist → agentic-flow/dist}/examples/multi-agent-orchestration.js +0 -0
- /package/{dist → agentic-flow/dist}/examples/use-goal-planner.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/EphemeralAgent.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/FederationHub.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/FederationHubClient.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/FederationHubServer.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/SecurityManager.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/debug/agent-debug-stream.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/debug/debug-stream.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/index.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/integrations/realtime-federation.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/integrations/supabase-adapter-debug.js +0 -0
- /package/{dist → agentic-flow/dist}/federation/integrations/supabase-adapter.js +0 -0
- /package/{dist → agentic-flow/dist}/health.js +0 -0
- /package/{dist → agentic-flow/dist}/index.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/claudeFlowSdkServer.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/servers/claude-flow-sdk.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/servers/http-sse.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/servers/http-streaming-updated.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/servers/poc-stdio.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/servers/stdio-full.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/agent/add-agent.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/agent/add-command.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/agent/execute.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/agent/list.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/agent/parallel.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/swarm/init.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/swarm/orchestrate.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/tools/swarm/spawn.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/fastmcp/types/index.js +0 -0
- /package/{dist → agentic-flow/dist}/mcp/standalone-stdio.js +0 -0
- /package/{dist → agentic-flow/dist}/memory/SharedMemoryPool.js +0 -0
- /package/{dist → agentic-flow/dist}/memory/index.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/anthropic-to-gemini.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/anthropic-to-onnx.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/anthropic-to-openrouter.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/anthropic-to-requesty.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/provider-instructions.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/quic-proxy.js +0 -0
- /package/{dist → agentic-flow/dist}/proxy/tool-emulation.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/AdvancedMemory.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/HybridBackend.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/agentdb-adapter.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/backend-selector.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/benchmark.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/config/reasoningbank-types.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/config/reasoningbank.yaml +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/consolidate.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/database.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/distill.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/judge.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/matts.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/memory-engine.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/core/retrieve.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/db/queries.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/db/schema.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/demo-comparison.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/hooks/post-task.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/hooks/pre-task.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/index-new.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/index.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/prompts/distill-failure.json +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/prompts/distill-success.json +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/prompts/judge.json +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/prompts/matts-aggregate.json +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/test-integration.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/test-retrieval.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/test-validation.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/types/index.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/utils/config.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/utils/embeddings.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/utils/mmr.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/utils/pii-scrubber.js +0 -0
- /package/{dist → agentic-flow/dist}/reasoningbank/wasm-adapter.js +0 -0
- /package/{dist → agentic-flow/dist}/router/model-mapping.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/anthropic.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/gemini.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/onnx-local-optimized.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/onnx-local.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/onnx-phi4.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/onnx.js +0 -0
- /package/{dist → agentic-flow/dist}/router/providers/openrouter.js +0 -0
- /package/{dist → agentic-flow/dist}/router/router.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-integration.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-onnx-benchmark.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-onnx-integration.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-onnx-local.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-onnx.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-openrouter.js +0 -0
- /package/{dist → agentic-flow/dist}/router/test-phi4.js +0 -0
- /package/{dist → agentic-flow/dist}/router/types.js +0 -0
- /package/{dist → agentic-flow/dist}/swarm/index.js +0 -0
- /package/{dist → agentic-flow/dist}/swarm/quic-coordinator.js +0 -0
- /package/{dist → agentic-flow/dist}/swarm/transport-router.js +0 -0
- /package/{dist → agentic-flow/dist}/transport/index.js +0 -0
- /package/{dist → agentic-flow/dist}/transport/quic-handshake.js +0 -0
- /package/{dist → agentic-flow/dist}/transport/quic.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/agentBoosterPreprocessor.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/agentLoader.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/agentdb-runtime-patch.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/agentdbCommands.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/cli.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/logger.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/math.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/mcpCommands.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/model-downloader.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/modelCapabilities.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/modelOptimizer.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/reasoningbankCommands.js +0 -0
- /package/{dist → agentic-flow/dist}/utils/retry.js +0 -0
- /package/{docs → agentic-flow/docs}/AGENTDB_TESTING.md +0 -0
- /package/{docs → agentic-flow/docs}/INTEGRATION-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/QUIC_FINAL_STATUS.md +0 -0
- /package/{docs → agentic-flow/docs}/README_QUIC_PHASE1.md +0 -0
- /package/{docs → agentic-flow/docs}/TEST-V1.7.8.Dockerfile +0 -0
- /package/{docs → agentic-flow/docs}/TEST-V1.7.9-NODE20.Dockerfile +0 -0
- /package/{docs → agentic-flow/docs}/TEST-V1.7.9.Dockerfile +0 -0
- /package/{docs → agentic-flow/docs}/architecture/FEDERATION-DATA-LIFECYCLE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/COMPLETE_VALIDATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/DOCKER_MCP_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/DOCKER_OPENROUTER_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FASTMCP_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FASTMCP_INTEGRATION_STATUS.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FINAL_SDK_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FINAL_SYSTEM_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FINAL_VALIDATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FIXES-APPLIED-STATUS.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/FLOW-NEXUS-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/HOTFIX_1.1.7.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/INTEGRATION_CONFIRMED.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/MCP_CLI_TOOLS_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/MCP_INTEGRATION_SUCCESS.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/MCP_PROXY_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/MODEL_VALIDATION_REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_ENV_VARS.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_FINAL_REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_IMPLEMENTATION_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_IMPLEMENTATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_OPTIMIZATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_PHI4_RESEARCH.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_RUNTIME_INTEGRATION_PLAN.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_SUCCESS_REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/ONNX_VS_CLAUDE_QUALITY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/OPENROUTER-FIX-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/OPENROUTER-SUCCESS-REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/OPENROUTER_ISSUES_AND_FIXES.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/OPENROUTER_PROXY_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/OPENROUTER_VALIDATION_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/OPTIMIZATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/PACKAGE-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/PHI4_HYPEROPTIMIZATION_PLAN.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/PROVIDER_INSTRUCTION_OPTIMIZATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/PROXY_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/README.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/README_SDK_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/README_V1.1.11.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/RELEASE-NOTES-v1.1.13.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/RELEASE-SUMMARY-v1.1.14-beta.1.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/RESEARCH_COMPLETE.txt +0 -0
- /package/{docs → agentic-flow/docs}/archived/ROUTER_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/SDK-SETUP-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/SDK_INTEGRATION_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/TOOL_INSTRUCTION_ENHANCEMENT.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/V1.1.10_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/V1.1.11_COMPLETE_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/V1.1.11_MCP_PROXY_FIX.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/V1.1.14-BETA-READY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/VALIDATION-RESULTS.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/VALIDATION_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/VALIDATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/claude-flow-integration.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/docker-cli-validation.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/docker-memory-coordination-status.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/mcp-validation-summary.md +0 -0
- /package/{docs → agentic-flow/docs}/archived/quick-wins-validation.md +0 -0
- /package/{docs → agentic-flow/docs}/benchmarks/optimization-guide.md +0 -0
- /package/{docs → agentic-flow/docs}/benchmarks/quic-results.md +0 -0
- /package/{docs → agentic-flow/docs}/federation/AGENT-DEBUG-STREAMING.md +0 -0
- /package/{docs → agentic-flow/docs}/federation/DEBUG-STREAMING-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/federation/DEBUG-STREAMING.md +0 -0
- /package/{docs → agentic-flow/docs}/federation/DEPLOYMENT-VALIDATION-SUCCESS.md +0 -0
- /package/{docs → agentic-flow/docs}/federation/DOCKER-FEDERATION-DEEP-REVIEW.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/AGENT-BOOSTER-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/CLAUDE-FLOW-INTEGRATION-ANALYSIS.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/CLI-INTEGRATION-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/IMPLEMENTATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/INTEGRATION-QUICK-SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/INTEGRATION-STATUS-CORRECTED.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/INTEGRATION_COMPLETE_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/QUIC-WASM-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/README.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/WASM_ESM_FIX.md +0 -0
- /package/{docs → agentic-flow/docs}/integration-docs/WASM_INTEGRATION_COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/CLAUDE_AGENTS_INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/CLAUDE_FLOW_INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/FASTMCP_CLI_INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/FLOW-NEXUS-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/README.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/fastmcp-implementation-plan.md +0 -0
- /package/{docs → agentic-flow/docs}/integrations/fastmcp-poc-integration.md +0 -0
- /package/{docs → agentic-flow/docs}/issues/ISSUE-SUPABASE-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/mcp-validation/IMPLEMENTATION-SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/mcp-validation/MCP-CLI-VALIDATION-REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/mcp-validation/README.md +0 -0
- /package/{docs → agentic-flow/docs}/mcp-validation/strange-loops-test.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/BUILD_INSTRUCTIONS.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/IMPLEMENTATION_STATUS.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/QUIC-INTEGRATION-SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/QUIC-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/QUIC-README.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/QUIC_IMPLEMENTATION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/README-CONDENSED.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/quic-research.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/QUIC/quic-tutorial.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/00-INDEX.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/00-OVERVIEW.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/01-ARCHITECTURE.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/02-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/03-BENCHMARKS.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/04-NPM-SDK.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/GITHUB-ISSUE.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster/README.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/agent-booster-cli-integration.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/00-overview.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/01-api-research.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/02-architecture.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/03-implementation-phases.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/04-testing-strategy.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/05-migration-guide.md +0 -0
- /package/{docs → agentic-flow/docs}/plans/requesty/README.md +0 -0
- /package/{docs → agentic-flow/docs}/quantum-goap/DEPENDENCY_GRAPH.mermaid +0 -0
- /package/{docs → agentic-flow/docs}/quantum-goap/EXECUTION_SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/quantum-goap/GOAP_IMPLEMENTATION_PLAN.md +0 -0
- /package/{docs → agentic-flow/docs}/quantum-goap/QUICK_START.md +0 -0
- /package/{docs → agentic-flow/docs}/quantum-research/QUANTUM_RESEARCH_LITERATURE_REVIEW.md +0 -0
- /package/{docs → agentic-flow/docs}/quantum-research/README.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/FINAL-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/IMPLEMENTATION-COMPLETE-SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/PERFORMANCE-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/QUIC-STATUS-OLD.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/QUIC-STATUS.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/QUIC-VALIDATION-REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/quic/WASM-INTEGRATION-COMPLETE.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/MEMORY_VALIDATION_REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/README.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONING-AGENTS.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK-BENCHMARK-RESULTS.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK-BENCHMARK.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK-CLI-INTEGRATION.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK-DEMO.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK_ARCHITECTURE.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK_BACKENDS.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK_FIXES.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK_IMPLEMENTATION_STATUS.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK_INTEGRATION_PLAN.md +0 -0
- /package/{docs → agentic-flow/docs}/reasoningbank/REASONINGBANK_INVESTIGATION.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/GITHUB-ISSUE-ADDENDUM-v1.4.6.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/GITHUB-ISSUE-REASONINGBANK-BENCHMARK.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/GITHUB-ISSUE-v1.4.6.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/GITHUB-ISSUE-v1.5.0.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/HOTFIX-v1.2.1.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/NPM-PUBLISH-GUIDE-v1.2.0.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/PUBLISH-COMPLETE-v1.2.0.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/README.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/RELEASE-v1.2.0.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/RELEASE-v1.8.13.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/v1.4.6-reasoningbank-release.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/v1.4.7-bugfix.md +0 -0
- /package/{docs → agentic-flow/docs}/releases/v1.5.14-QUIC-TRANSPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/router/README.md +0 -0
- /package/{docs → agentic-flow/docs}/router/ROUTER_CONFIG_REFERENCE.md +0 -0
- /package/{docs → agentic-flow/docs}/router/ROUTER_USER_GUIDE.md +0 -0
- /package/{docs → agentic-flow/docs}/router/TOP20_MODELS_MATRIX.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/IMPLEMENTATION-SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/INDEX.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/QUICKSTART.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/README.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/SUPABASE-REALTIME-FEDERATION.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/TEST-REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/supabase/migrations/001_create_federation_tables.sql +0 -0
- /package/{docs → agentic-flow/docs}/testing/AGENT-SYSTEM-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/testing/FINAL-TESTING-SUMMARY.md +0 -0
- /package/{docs → agentic-flow/docs}/testing/README.md +0 -0
- /package/{docs → agentic-flow/docs}/testing/REGRESSION-TEST-RESULTS.md +0 -0
- /package/{docs → agentic-flow/docs}/testing/STREAMING-AND-MCP-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/v1.7.1-QUICK-START.md +0 -0
- /package/{docs → agentic-flow/docs}/validation/README.md +0 -0
- /package/{docs → agentic-flow/docs}/validation/reports/REGRESSION-TEST-V1.8.11.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/BENCHMARK_AND_OPTIMIZATION_REPORT.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/DOCKER_VALIDATION_RESULTS.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/NO_REGRESSIONS_CONFIRMED.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/NPM-PACKAGE-ANALYSIS-FINAL.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/README.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/V2.7.0-ALPHA.10_FINAL_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/V2.7.0-ALPHA.9_VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/v1.6.0-QUIC-CLI-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/validation-reports/v1.6.1-NPM-PUBLISH-VALIDATION.md +0 -0
- /package/{docs → agentic-flow/docs}/version-releases/PUBLICATION_REPORT_v1.5.11.md +0 -0
- /package/{docs → agentic-flow/docs}/version-releases/README.md +0 -0
- /package/{docs → agentic-flow/docs}/version-releases/v1.5.9-DOCKER-VERIFICATION.md +0 -0
- /package/{docs → agentic-flow/docs}/version-releases/v1.5.9-RELEASE-SUMMARY.md +0 -0
- /package/{scripts → agentic-flow/scripts}/build.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/claude-code +0 -0
- /package/{scripts → agentic-flow/scripts}/claude-flow +0 -0
- /package/{scripts → agentic-flow/scripts}/claude-flow.bat +0 -0
- /package/{scripts → agentic-flow/scripts}/claude-flow.ps1 +0 -0
- /package/{scripts → agentic-flow/scripts}/postinstall.js +0 -0
- /package/{scripts → agentic-flow/scripts}/run-validation.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-agentdb.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-all-commands.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-claude-flow-sdk.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-fastmcp-docker.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-fastmcp-poc.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-functionality.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-onnx-docker.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/test-router-docker.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/validate-mcp-cli-tools.sh +0 -0
- /package/{scripts → agentic-flow/scripts}/validate-providers.sh +0 -0
- /package/{wasm → agentic-flow/wasm}/quic/README.md +0 -0
- /package/{wasm → agentic-flow/wasm}/quic/agentic_flow_quic.js +0 -0
- /package/{wasm → agentic-flow/wasm}/quic/agentic_flow_quic_bg.wasm +0 -0
- /package/{wasm → agentic-flow/wasm}/quic/package.json +0 -0
- /package/{wasm → agentic-flow/wasm}/reasoningbank/package.json +0 -0
- /package/{wasm → agentic-flow/wasm}/reasoningbank/reasoningbank_wasm.js +0 -0
- /package/{wasm → agentic-flow/wasm}/reasoningbank/reasoningbank_wasm_bg.js +0 -0
- /package/{wasm → agentic-flow/wasm}/reasoningbank/reasoningbank_wasm_bg.wasm +0 -0
|
@@ -0,0 +1,942 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "aho-corasick"
|
|
19
|
+
version = "1.1.3"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"memchr",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anes"
|
|
28
|
+
version = "0.1.6"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstyle"
|
|
34
|
+
version = "1.0.13"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "autocfg"
|
|
40
|
+
version = "1.5.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "bitflags"
|
|
46
|
+
version = "2.9.4"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "bumpalo"
|
|
52
|
+
version = "3.19.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "bytemuck"
|
|
58
|
+
version = "1.24.0"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "cast"
|
|
64
|
+
version = "0.3.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "cc"
|
|
70
|
+
version = "1.2.41"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"find-msvc-tools",
|
|
75
|
+
"shlex",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "cfg-if"
|
|
80
|
+
version = "1.0.4"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "ciborium"
|
|
86
|
+
version = "0.2.2"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"ciborium-io",
|
|
91
|
+
"ciborium-ll",
|
|
92
|
+
"serde",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "ciborium-io"
|
|
97
|
+
version = "0.2.2"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "ciborium-ll"
|
|
103
|
+
version = "0.2.2"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"ciborium-io",
|
|
108
|
+
"half",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "clap"
|
|
113
|
+
version = "4.5.49"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"clap_builder",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "clap_builder"
|
|
122
|
+
version = "4.5.49"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"anstyle",
|
|
127
|
+
"clap_lex",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "clap_lex"
|
|
132
|
+
version = "0.7.6"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "criterion"
|
|
138
|
+
version = "0.5.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"anes",
|
|
143
|
+
"cast",
|
|
144
|
+
"ciborium",
|
|
145
|
+
"clap",
|
|
146
|
+
"criterion-plot",
|
|
147
|
+
"is-terminal",
|
|
148
|
+
"itertools",
|
|
149
|
+
"num-traits",
|
|
150
|
+
"once_cell",
|
|
151
|
+
"oorandom",
|
|
152
|
+
"plotters",
|
|
153
|
+
"rayon",
|
|
154
|
+
"regex",
|
|
155
|
+
"serde",
|
|
156
|
+
"serde_derive",
|
|
157
|
+
"serde_json",
|
|
158
|
+
"tinytemplate",
|
|
159
|
+
"walkdir",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "criterion-plot"
|
|
164
|
+
version = "0.5.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"cast",
|
|
169
|
+
"itertools",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "crossbeam-deque"
|
|
174
|
+
version = "0.8.6"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"crossbeam-epoch",
|
|
179
|
+
"crossbeam-utils",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "crossbeam-epoch"
|
|
184
|
+
version = "0.9.18"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"crossbeam-utils",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "crossbeam-utils"
|
|
193
|
+
version = "0.8.21"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "crunchy"
|
|
199
|
+
version = "0.2.4"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "either"
|
|
205
|
+
version = "1.15.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "errno"
|
|
211
|
+
version = "0.3.14"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"libc",
|
|
216
|
+
"windows-sys 0.61.2",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "fallible-iterator"
|
|
221
|
+
version = "0.3.0"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "fallible-streaming-iterator"
|
|
227
|
+
version = "0.1.9"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "fastrand"
|
|
233
|
+
version = "2.3.0"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "find-msvc-tools"
|
|
239
|
+
version = "0.1.4"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "getrandom"
|
|
245
|
+
version = "0.2.16"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"cfg-if",
|
|
250
|
+
"libc",
|
|
251
|
+
"wasi",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "getrandom"
|
|
256
|
+
version = "0.3.4"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"cfg-if",
|
|
261
|
+
"libc",
|
|
262
|
+
"r-efi",
|
|
263
|
+
"wasip2",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "half"
|
|
268
|
+
version = "2.7.1"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"cfg-if",
|
|
273
|
+
"crunchy",
|
|
274
|
+
"zerocopy",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "hashbrown"
|
|
279
|
+
version = "0.14.5"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"ahash",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "hashlink"
|
|
288
|
+
version = "0.9.1"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"hashbrown",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "hermit-abi"
|
|
297
|
+
version = "0.5.2"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "is-terminal"
|
|
303
|
+
version = "0.4.16"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"hermit-abi",
|
|
308
|
+
"libc",
|
|
309
|
+
"windows-sys 0.59.0",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "itertools"
|
|
314
|
+
version = "0.10.5"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"either",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "itoa"
|
|
323
|
+
version = "1.0.15"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "js-sys"
|
|
329
|
+
version = "0.3.81"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"once_cell",
|
|
334
|
+
"wasm-bindgen",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "libc"
|
|
339
|
+
version = "0.2.177"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "libsqlite3-sys"
|
|
345
|
+
version = "0.28.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"cc",
|
|
350
|
+
"pkg-config",
|
|
351
|
+
"vcpkg",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "linux-raw-sys"
|
|
356
|
+
version = "0.11.0"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "log"
|
|
362
|
+
version = "0.4.28"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "memchr"
|
|
368
|
+
version = "2.7.6"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "num-traits"
|
|
374
|
+
version = "0.2.19"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"autocfg",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "once_cell"
|
|
383
|
+
version = "1.21.3"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "oorandom"
|
|
389
|
+
version = "11.1.5"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "pkg-config"
|
|
395
|
+
version = "0.3.32"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "plotters"
|
|
401
|
+
version = "0.3.7"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"num-traits",
|
|
406
|
+
"plotters-backend",
|
|
407
|
+
"plotters-svg",
|
|
408
|
+
"wasm-bindgen",
|
|
409
|
+
"web-sys",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "plotters-backend"
|
|
414
|
+
version = "0.3.7"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "plotters-svg"
|
|
420
|
+
version = "0.3.7"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"plotters-backend",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "ppv-lite86"
|
|
429
|
+
version = "0.2.21"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"zerocopy",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "proc-macro2"
|
|
438
|
+
version = "1.0.101"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"unicode-ident",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "quote"
|
|
447
|
+
version = "1.0.41"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"proc-macro2",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "r-efi"
|
|
456
|
+
version = "5.3.0"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "rand"
|
|
462
|
+
version = "0.8.5"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"libc",
|
|
467
|
+
"rand_chacha",
|
|
468
|
+
"rand_core",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "rand_chacha"
|
|
473
|
+
version = "0.3.1"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"ppv-lite86",
|
|
478
|
+
"rand_core",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "rand_core"
|
|
483
|
+
version = "0.6.4"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"getrandom 0.2.16",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "rayon"
|
|
492
|
+
version = "1.11.0"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"either",
|
|
497
|
+
"rayon-core",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "rayon-core"
|
|
502
|
+
version = "1.13.0"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"crossbeam-deque",
|
|
507
|
+
"crossbeam-utils",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "regex"
|
|
512
|
+
version = "1.12.2"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"aho-corasick",
|
|
517
|
+
"memchr",
|
|
518
|
+
"regex-automata",
|
|
519
|
+
"regex-syntax",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "regex-automata"
|
|
524
|
+
version = "0.4.13"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"aho-corasick",
|
|
529
|
+
"memchr",
|
|
530
|
+
"regex-syntax",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "regex-syntax"
|
|
535
|
+
version = "0.8.8"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "rusqlite"
|
|
541
|
+
version = "0.31.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"bitflags",
|
|
546
|
+
"fallible-iterator",
|
|
547
|
+
"fallible-streaming-iterator",
|
|
548
|
+
"hashlink",
|
|
549
|
+
"libsqlite3-sys",
|
|
550
|
+
"smallvec",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "rustix"
|
|
555
|
+
version = "1.1.2"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"bitflags",
|
|
560
|
+
"errno",
|
|
561
|
+
"libc",
|
|
562
|
+
"linux-raw-sys",
|
|
563
|
+
"windows-sys 0.61.2",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "rustversion"
|
|
568
|
+
version = "1.0.22"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "ryu"
|
|
574
|
+
version = "1.0.20"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "same-file"
|
|
580
|
+
version = "1.0.6"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"winapi-util",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "serde"
|
|
589
|
+
version = "1.0.228"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"serde_core",
|
|
594
|
+
"serde_derive",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "serde_core"
|
|
599
|
+
version = "1.0.228"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"serde_derive",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "serde_derive"
|
|
608
|
+
version = "1.0.228"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"proc-macro2",
|
|
613
|
+
"quote",
|
|
614
|
+
"syn",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "serde_json"
|
|
619
|
+
version = "1.0.145"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"itoa",
|
|
624
|
+
"memchr",
|
|
625
|
+
"ryu",
|
|
626
|
+
"serde",
|
|
627
|
+
"serde_core",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "shlex"
|
|
632
|
+
version = "1.3.0"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "smallvec"
|
|
638
|
+
version = "1.15.1"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "sqlite-vector-core"
|
|
644
|
+
version = "0.1.0"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"bytemuck",
|
|
647
|
+
"criterion",
|
|
648
|
+
"rand",
|
|
649
|
+
"rusqlite",
|
|
650
|
+
"serde",
|
|
651
|
+
"tempfile",
|
|
652
|
+
"thiserror",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "syn"
|
|
657
|
+
version = "2.0.106"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"proc-macro2",
|
|
662
|
+
"quote",
|
|
663
|
+
"unicode-ident",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "tempfile"
|
|
668
|
+
version = "3.23.0"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"fastrand",
|
|
673
|
+
"getrandom 0.3.4",
|
|
674
|
+
"once_cell",
|
|
675
|
+
"rustix",
|
|
676
|
+
"windows-sys 0.61.2",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "thiserror"
|
|
681
|
+
version = "1.0.69"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"thiserror-impl",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "thiserror-impl"
|
|
690
|
+
version = "1.0.69"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"proc-macro2",
|
|
695
|
+
"quote",
|
|
696
|
+
"syn",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "tinytemplate"
|
|
701
|
+
version = "1.2.1"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"serde",
|
|
706
|
+
"serde_json",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "unicode-ident"
|
|
711
|
+
version = "1.0.19"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "vcpkg"
|
|
717
|
+
version = "0.2.15"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "version_check"
|
|
723
|
+
version = "0.9.5"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "walkdir"
|
|
729
|
+
version = "2.5.0"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"same-file",
|
|
734
|
+
"winapi-util",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "wasi"
|
|
739
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "wasip2"
|
|
745
|
+
version = "1.0.1+wasi-0.2.4"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"wit-bindgen",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "wasm-bindgen"
|
|
754
|
+
version = "0.2.104"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"cfg-if",
|
|
759
|
+
"once_cell",
|
|
760
|
+
"rustversion",
|
|
761
|
+
"wasm-bindgen-macro",
|
|
762
|
+
"wasm-bindgen-shared",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "wasm-bindgen-backend"
|
|
767
|
+
version = "0.2.104"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"bumpalo",
|
|
772
|
+
"log",
|
|
773
|
+
"proc-macro2",
|
|
774
|
+
"quote",
|
|
775
|
+
"syn",
|
|
776
|
+
"wasm-bindgen-shared",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "wasm-bindgen-macro"
|
|
781
|
+
version = "0.2.104"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"quote",
|
|
786
|
+
"wasm-bindgen-macro-support",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "wasm-bindgen-macro-support"
|
|
791
|
+
version = "0.2.104"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"proc-macro2",
|
|
796
|
+
"quote",
|
|
797
|
+
"syn",
|
|
798
|
+
"wasm-bindgen-backend",
|
|
799
|
+
"wasm-bindgen-shared",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "wasm-bindgen-shared"
|
|
804
|
+
version = "0.2.104"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"unicode-ident",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "web-sys"
|
|
813
|
+
version = "0.3.81"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"js-sys",
|
|
818
|
+
"wasm-bindgen",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "winapi-util"
|
|
823
|
+
version = "0.1.11"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"windows-sys 0.61.2",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "windows-link"
|
|
832
|
+
version = "0.2.1"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "windows-sys"
|
|
838
|
+
version = "0.59.0"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"windows-targets",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "windows-sys"
|
|
847
|
+
version = "0.61.2"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"windows-link",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "windows-targets"
|
|
856
|
+
version = "0.52.6"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"windows_aarch64_gnullvm",
|
|
861
|
+
"windows_aarch64_msvc",
|
|
862
|
+
"windows_i686_gnu",
|
|
863
|
+
"windows_i686_gnullvm",
|
|
864
|
+
"windows_i686_msvc",
|
|
865
|
+
"windows_x86_64_gnu",
|
|
866
|
+
"windows_x86_64_gnullvm",
|
|
867
|
+
"windows_x86_64_msvc",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "windows_aarch64_gnullvm"
|
|
872
|
+
version = "0.52.6"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "windows_aarch64_msvc"
|
|
878
|
+
version = "0.52.6"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "windows_i686_gnu"
|
|
884
|
+
version = "0.52.6"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "windows_i686_gnullvm"
|
|
890
|
+
version = "0.52.6"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "windows_i686_msvc"
|
|
896
|
+
version = "0.52.6"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "windows_x86_64_gnu"
|
|
902
|
+
version = "0.52.6"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "windows_x86_64_gnullvm"
|
|
908
|
+
version = "0.52.6"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "windows_x86_64_msvc"
|
|
914
|
+
version = "0.52.6"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "wit-bindgen"
|
|
920
|
+
version = "0.46.0"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "zerocopy"
|
|
926
|
+
version = "0.8.27"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"zerocopy-derive",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "zerocopy-derive"
|
|
935
|
+
version = "0.8.27"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"proc-macro2",
|
|
940
|
+
"quote",
|
|
941
|
+
"syn",
|
|
942
|
+
]
|