claude-flow-novice 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/MIGRATION_SUMMARY.md +222 -0
- package/.claude/agents/README.md +89 -0
- package/.claude/agents/analysis/code-analyzer.md +209 -0
- package/.claude/agents/analysis/code-review/analyze-code-quality.md +180 -0
- package/.claude/agents/architecture/system-design/arch-system-design.md +156 -0
- package/.claude/agents/base-template-generator.md +42 -0
- package/.claude/agents/consensus/README.md +253 -0
- package/.claude/agents/consensus/byzantine-coordinator.md +63 -0
- package/.claude/agents/consensus/consensus-builder.md +242 -0
- package/.claude/agents/consensus/crdt-synchronizer.md +997 -0
- package/.claude/agents/consensus/gossip-coordinator.md +63 -0
- package/.claude/agents/consensus/performance-benchmarker.md +851 -0
- package/.claude/agents/consensus/quorum-manager.md +823 -0
- package/.claude/agents/consensus/raft-manager.md +63 -0
- package/.claude/agents/consensus/security-manager.md +622 -0
- package/.claude/agents/core/coder.md +211 -0
- package/.claude/agents/core/planner.md +116 -0
- package/.claude/agents/core/researcher.md +136 -0
- package/.claude/agents/core/reviewer.md +272 -0
- package/.claude/agents/core/tester.md +266 -0
- package/.claude/agents/data/ml/data-ml-model.md +193 -0
- package/.claude/agents/development/backend/dev-backend-api.md +142 -0
- package/.claude/agents/devops/ci-cd/ops-cicd-github.md +164 -0
- package/.claude/agents/documentation/api-docs/docs-api-openapi.md +174 -0
- package/.claude/agents/flow-nexus/app-store.md +88 -0
- package/.claude/agents/flow-nexus/authentication.md +69 -0
- package/.claude/agents/flow-nexus/challenges.md +81 -0
- package/.claude/agents/flow-nexus/neural-network.md +88 -0
- package/.claude/agents/flow-nexus/payments.md +83 -0
- package/.claude/agents/flow-nexus/sandbox.md +76 -0
- package/.claude/agents/flow-nexus/swarm.md +76 -0
- package/.claude/agents/flow-nexus/user-tools.md +96 -0
- package/.claude/agents/flow-nexus/workflow.md +84 -0
- package/.claude/agents/github/code-review-swarm.md +538 -0
- package/.claude/agents/github/github-modes.md +173 -0
- package/.claude/agents/github/issue-tracker.md +319 -0
- package/.claude/agents/github/multi-repo-swarm.md +553 -0
- package/.claude/agents/github/pr-manager.md +191 -0
- package/.claude/agents/github/project-board-sync.md +509 -0
- package/.claude/agents/github/release-manager.md +367 -0
- package/.claude/agents/github/release-swarm.md +583 -0
- package/.claude/agents/github/repo-architect.md +398 -0
- package/.claude/agents/github/swarm-issue.md +573 -0
- package/.claude/agents/github/swarm-pr.md +428 -0
- package/.claude/agents/github/sync-coordinator.md +452 -0
- package/.claude/agents/github/workflow-automation.md +635 -0
- package/.claude/agents/goal/goal-planner.md +73 -0
- package/.claude/agents/neural/safla-neural.md +74 -0
- package/.claude/agents/optimization/README.md +250 -0
- package/.claude/agents/optimization/benchmark-suite.md +665 -0
- package/.claude/agents/optimization/load-balancer.md +431 -0
- package/.claude/agents/optimization/performance-monitor.md +672 -0
- package/.claude/agents/optimization/resource-allocator.md +674 -0
- package/.claude/agents/optimization/topology-optimizer.md +808 -0
- package/.claude/agents/sparc/architecture.md +472 -0
- package/.claude/agents/sparc/pseudocode.md +318 -0
- package/.claude/agents/sparc/refinement.md +525 -0
- package/.claude/agents/sparc/specification.md +276 -0
- package/.claude/agents/specialized/mobile/spec-mobile-react-native.md +226 -0
- package/.claude/agents/sublinear/consciousness-evolution-agent.md +499 -0
- package/.claude/agents/sublinear/matrix-solver-agent.md +113 -0
- package/.claude/agents/sublinear/nanosecond-scheduler-agent.md +644 -0
- package/.claude/agents/sublinear/pagerank-agent.md +699 -0
- package/.claude/agents/sublinear/phi-calculator-agent.md +749 -0
- package/.claude/agents/sublinear/psycho-symbolic-agent.md +543 -0
- package/.claude/agents/sublinear/sublinear.md +816 -0
- package/.claude/agents/sublinear/temporal-advantage-agent.md +360 -0
- package/.claude/agents/swarm/README.md +190 -0
- package/.claude/agents/swarm/adaptive-coordinator.md +396 -0
- package/.claude/agents/swarm/hierarchical-coordinator.md +300 -0
- package/.claude/agents/swarm/mesh-coordinator.md +435 -0
- package/.claude/agents/templates/automation-smart-agent.md +205 -0
- package/.claude/agents/templates/coordinator-swarm-init.md +90 -0
- package/.claude/agents/templates/github-pr-manager.md +177 -0
- package/.claude/agents/templates/implementer-sparc-coder.md +259 -0
- package/.claude/agents/templates/memory-coordinator.md +187 -0
- package/.claude/agents/templates/migration-plan.md +746 -0
- package/.claude/agents/templates/orchestrator-task.md +139 -0
- package/.claude/agents/templates/performance-analyzer.md +199 -0
- package/.claude/agents/templates/sparc-coordinator.md +183 -0
- package/.claude/agents/testing/e2e/playwright-agent.md +249 -0
- package/.claude/agents/testing/unit/tdd-london-swarm.md +244 -0
- package/.claude/agents/testing/validation/production-validator.md +395 -0
- package/.claude/commands/agents/README.md +10 -0
- package/.claude/commands/agents/agent-capabilities.md +21 -0
- package/.claude/commands/agents/agent-coordination.md +28 -0
- package/.claude/commands/agents/agent-spawning.md +28 -0
- package/.claude/commands/agents/agent-types.md +26 -0
- package/.claude/commands/analysis/COMMAND_COMPLIANCE_REPORT.md +54 -0
- package/.claude/commands/analysis/README.md +9 -0
- package/.claude/commands/analysis/bottleneck-detect.md +162 -0
- package/.claude/commands/analysis/performance-bottlenecks.md +59 -0
- package/.claude/commands/analysis/performance-report.md +25 -0
- package/.claude/commands/analysis/token-efficiency.md +45 -0
- package/.claude/commands/analysis/token-usage.md +25 -0
- package/.claude/commands/automation/README.md +9 -0
- package/.claude/commands/automation/auto-agent.md +122 -0
- package/.claude/commands/automation/self-healing.md +106 -0
- package/.claude/commands/automation/session-memory.md +90 -0
- package/.claude/commands/automation/smart-agents.md +73 -0
- package/.claude/commands/automation/smart-spawn.md +25 -0
- package/.claude/commands/automation/workflow-select.md +25 -0
- 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/flow-nexus/app-store.md +124 -0
- package/.claude/commands/flow-nexus/challenges.md +120 -0
- package/.claude/commands/flow-nexus/login-registration.md +65 -0
- package/.claude/commands/flow-nexus/neural-network.md +134 -0
- package/.claude/commands/flow-nexus/payments.md +116 -0
- package/.claude/commands/flow-nexus/sandbox.md +83 -0
- package/.claude/commands/flow-nexus/swarm.md +87 -0
- package/.claude/commands/flow-nexus/user-tools.md +152 -0
- package/.claude/commands/flow-nexus/workflow.md +115 -0
- package/.claude/commands/github/README.md +11 -0
- package/.claude/commands/github/code-review-swarm.md +514 -0
- package/.claude/commands/github/code-review.md +25 -0
- package/.claude/commands/github/github-modes.md +147 -0
- package/.claude/commands/github/github-swarm.md +121 -0
- package/.claude/commands/github/issue-tracker.md +292 -0
- package/.claude/commands/github/issue-triage.md +25 -0
- package/.claude/commands/github/multi-repo-swarm.md +519 -0
- package/.claude/commands/github/pr-enhance.md +26 -0
- package/.claude/commands/github/pr-manager.md +170 -0
- package/.claude/commands/github/project-board-sync.md +471 -0
- package/.claude/commands/github/release-manager.md +338 -0
- package/.claude/commands/github/release-swarm.md +544 -0
- package/.claude/commands/github/repo-analyze.md +25 -0
- package/.claude/commands/github/repo-architect.md +367 -0
- package/.claude/commands/github/swarm-issue.md +482 -0
- package/.claude/commands/github/swarm-pr.md +285 -0
- package/.claude/commands/github/sync-coordinator.md +301 -0
- package/.claude/commands/github/workflow-automation.md +442 -0
- package/.claude/commands/hive-mind/README.md +17 -0
- package/.claude/commands/hive-mind/hive-mind-consensus.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-init.md +18 -0
- package/.claude/commands/hive-mind/hive-mind-memory.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-metrics.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-resume.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-sessions.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-spawn.md +21 -0
- package/.claude/commands/hive-mind/hive-mind-status.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-stop.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-wizard.md +8 -0
- package/.claude/commands/hive-mind/hive-mind.md +27 -0
- package/.claude/commands/hooks/README.md +11 -0
- package/.claude/commands/hooks/overview.md +58 -0
- package/.claude/commands/hooks/post-edit.md +117 -0
- package/.claude/commands/hooks/post-task.md +112 -0
- package/.claude/commands/hooks/pre-edit.md +113 -0
- package/.claude/commands/hooks/pre-task.md +111 -0
- package/.claude/commands/hooks/session-end.md +118 -0
- package/.claude/commands/hooks/setup.md +103 -0
- 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/commands/monitoring/README.md +9 -0
- package/.claude/commands/monitoring/agent-metrics.md +25 -0
- package/.claude/commands/monitoring/agents.md +44 -0
- package/.claude/commands/monitoring/real-time-view.md +25 -0
- package/.claude/commands/monitoring/status.md +46 -0
- package/.claude/commands/monitoring/swarm-monitor.md +25 -0
- package/.claude/commands/optimization/README.md +9 -0
- package/.claude/commands/optimization/auto-topology.md +62 -0
- package/.claude/commands/optimization/cache-manage.md +25 -0
- package/.claude/commands/optimization/parallel-execute.md +25 -0
- package/.claude/commands/optimization/parallel-execution.md +50 -0
- package/.claude/commands/optimization/topology-optimize.md +25 -0
- package/.claude/commands/pair/README.md +261 -0
- package/.claude/commands/pair/commands.md +546 -0
- package/.claude/commands/pair/config.md +510 -0
- package/.claude/commands/pair/examples.md +512 -0
- package/.claude/commands/pair/modes.md +348 -0
- package/.claude/commands/pair/session.md +407 -0
- package/.claude/commands/pair/start.md +209 -0
- package/.claude/commands/sparc/analyzer.md +52 -0
- package/.claude/commands/sparc/architect.md +53 -0
- package/.claude/commands/sparc/batch-executor.md +54 -0
- package/.claude/commands/sparc/coder.md +54 -0
- package/.claude/commands/sparc/debugger.md +54 -0
- package/.claude/commands/sparc/designer.md +53 -0
- package/.claude/commands/sparc/documenter.md +54 -0
- package/.claude/commands/sparc/innovator.md +54 -0
- package/.claude/commands/sparc/memory-manager.md +54 -0
- package/.claude/commands/sparc/optimizer.md +54 -0
- package/.claude/commands/sparc/orchestrator.md +132 -0
- package/.claude/commands/sparc/researcher.md +54 -0
- package/.claude/commands/sparc/reviewer.md +54 -0
- package/.claude/commands/sparc/sparc-modes.md +174 -0
- package/.claude/commands/sparc/swarm-coordinator.md +54 -0
- package/.claude/commands/sparc/tdd.md +54 -0
- package/.claude/commands/sparc/tester.md +54 -0
- package/.claude/commands/sparc/workflow-manager.md +54 -0
- package/.claude/commands/stream-chain/pipeline.md +121 -0
- package/.claude/commands/stream-chain/run.md +70 -0
- package/.claude/commands/swarm/README.md +15 -0
- package/.claude/commands/swarm/analysis.md +95 -0
- package/.claude/commands/swarm/development.md +96 -0
- package/.claude/commands/swarm/examples.md +168 -0
- package/.claude/commands/swarm/maintenance.md +102 -0
- package/.claude/commands/swarm/optimization.md +117 -0
- package/.claude/commands/swarm/research.md +136 -0
- package/.claude/commands/swarm/swarm-analysis.md +8 -0
- package/.claude/commands/swarm/swarm-background.md +8 -0
- package/.claude/commands/swarm/swarm-init.md +19 -0
- package/.claude/commands/swarm/swarm-modes.md +8 -0
- package/.claude/commands/swarm/swarm-monitor.md +8 -0
- package/.claude/commands/swarm/swarm-spawn.md +19 -0
- package/.claude/commands/swarm/swarm-status.md +8 -0
- package/.claude/commands/swarm/swarm-strategies.md +8 -0
- package/.claude/commands/swarm/swarm.md +27 -0
- package/.claude/commands/swarm/testing.md +131 -0
- package/.claude/commands/testing/playwright-e2e.md +288 -0
- package/.claude/commands/training/README.md +9 -0
- package/.claude/commands/training/model-update.md +25 -0
- package/.claude/commands/training/neural-patterns.md +74 -0
- package/.claude/commands/training/neural-train.md +25 -0
- package/.claude/commands/training/pattern-learn.md +25 -0
- package/.claude/commands/training/specialization.md +63 -0
- package/.claude/commands/truth/start.md +143 -0
- package/.claude/commands/verify/check.md +50 -0
- package/.claude/commands/verify/start.md +128 -0
- package/.claude/commands/workflows/README.md +9 -0
- package/.claude/commands/workflows/development.md +78 -0
- package/.claude/commands/workflows/research.md +63 -0
- package/.claude/commands/workflows/workflow-create.md +25 -0
- package/.claude/commands/workflows/workflow-execute.md +25 -0
- package/.claude/commands/workflows/workflow-export.md +25 -0
- package/.claude/helpers/checkpoint-manager.sh +251 -0
- package/.claude/helpers/github-safe.js +106 -0
- package/.claude/helpers/github-setup.sh +28 -0
- package/.claude/helpers/quick-start.sh +19 -0
- package/.claude/helpers/setup-mcp.sh +18 -0
- package/.claude/helpers/standard-checkpoint-hooks.sh +179 -0
- package/.claude/settings.json +112 -0
- package/.claude/settings.local.json +10 -0
- package/CHANGELOG.md +1517 -0
- package/LICENSE +21 -0
- package/README.md +338 -0
- package/dist/src/adapters/cliffy-node.js +70 -0
- package/dist/src/adapters/cliffy-node.js.map +1 -0
- package/dist/src/agents/agent-loader.js +208 -0
- package/dist/src/agents/agent-loader.js.map +1 -0
- package/dist/src/agents/agent-manager.js +1786 -0
- package/dist/src/agents/agent-manager.js.map +1 -0
- package/dist/src/agents/agent-registry.js +356 -0
- package/dist/src/agents/agent-registry.js.map +1 -0
- package/dist/src/agents/agent-validator.js +273 -0
- package/dist/src/agents/agent-validator.js.map +1 -0
- package/dist/src/agents/github/agent-factory.js +553 -0
- package/dist/src/agents/github/agent-factory.js.map +1 -0
- package/dist/src/agents/github/compatibility/legacy-agent-mappings.js +307 -0
- package/dist/src/agents/github/compatibility/legacy-agent-mappings.js.map +1 -0
- package/dist/src/agents/github/compatibility/legacy-agent-proxy.js +334 -0
- package/dist/src/agents/github/compatibility/legacy-agent-proxy.js.map +1 -0
- package/dist/src/agents/github/core/github-collaboration-manager.js +796 -0
- package/dist/src/agents/github/core/github-collaboration-manager.js.map +1 -0
- package/dist/src/agents/github/core/github-integration-manager.js +546 -0
- package/dist/src/agents/github/core/github-integration-manager.js.map +1 -0
- package/dist/src/agents/github/core/github-release-coordinator.js +718 -0
- package/dist/src/agents/github/core/github-release-coordinator.js.map +1 -0
- package/dist/src/agents/github/index.js +68 -0
- package/dist/src/agents/github/index.js.map +1 -0
- package/dist/src/agents/github/types/index.js +6 -0
- package/dist/src/agents/github/types/index.js.map +1 -0
- package/dist/src/agents/github/utils/error-handling.js +496 -0
- package/dist/src/agents/github/utils/error-handling.js.map +1 -0
- package/dist/src/agents/github/utils/github-client.js +158 -0
- package/dist/src/agents/github/utils/github-client.js.map +1 -0
- package/dist/src/agents/github/utils/hook-integration.js +450 -0
- package/dist/src/agents/github/utils/hook-integration.js.map +1 -0
- package/dist/src/agents/github/utils/performance-optimizer.js +501 -0
- package/dist/src/agents/github/utils/performance-optimizer.js.map +1 -0
- package/dist/src/agents/hierarchical-coordinator.js +775 -0
- package/dist/src/agents/hierarchical-coordinator.js.map +1 -0
- package/dist/src/agents/lifecycle-manager.js +613 -0
- package/dist/src/agents/lifecycle-manager.js.map +1 -0
- package/dist/src/agents/mesh-coordinator.js +580 -0
- package/dist/src/agents/mesh-coordinator.js.map +1 -0
- package/dist/src/agents/simple-agent.js +89 -0
- package/dist/src/agents/simple-agent.js.map +1 -0
- package/dist/src/agents/task-agent-integration.js +240 -0
- package/dist/src/agents/task-agent-integration.js.map +1 -0
- package/dist/src/api/auth-service.js +474 -0
- package/dist/src/api/auth-service.js.map +1 -0
- package/dist/src/api/claude-api-errors.js +171 -0
- package/dist/src/api/claude-api-errors.js.map +1 -0
- package/dist/src/api/claude-client-enhanced.js +473 -0
- package/dist/src/api/claude-client-enhanced.js.map +1 -0
- package/dist/src/api/claude-client.js +527 -0
- package/dist/src/api/claude-client.js.map +1 -0
- package/dist/src/api/database-service.js +666 -0
- package/dist/src/api/database-service.js.map +1 -0
- package/dist/src/api/swarm-api.js +585 -0
- package/dist/src/api/swarm-api.js.map +1 -0
- package/dist/src/automation/test-pipeline/E2ETestGenerator.js +448 -0
- package/dist/src/automation/test-pipeline/E2ETestGenerator.js.map +1 -0
- package/dist/src/automation/test-pipeline/PerformanceMonitor.js +572 -0
- package/dist/src/automation/test-pipeline/PerformanceMonitor.js.map +1 -0
- package/dist/src/automation/test-pipeline/PipelineValidator.js +654 -0
- package/dist/src/automation/test-pipeline/PipelineValidator.js.map +1 -0
- package/dist/src/automation/test-pipeline/RegressionTestManager.js +545 -0
- package/dist/src/automation/test-pipeline/RegressionTestManager.js.map +1 -0
- package/dist/src/automation/test-pipeline/SwarmTestCoordinator.js +450 -0
- package/dist/src/automation/test-pipeline/SwarmTestCoordinator.js.map +1 -0
- package/dist/src/automation/test-pipeline/TestDataManager.js +708 -0
- package/dist/src/automation/test-pipeline/TestDataManager.js.map +1 -0
- package/dist/src/automation/test-pipeline/TestReportingSystem.js +527 -0
- package/dist/src/automation/test-pipeline/TestReportingSystem.js.map +1 -0
- package/dist/src/automation/test-pipeline/utils/chrome-mcp-integration.js +353 -0
- package/dist/src/automation/test-pipeline/utils/chrome-mcp-integration.js.map +1 -0
- package/dist/src/automation/test-pipeline/utils/swarm-coordinator.js +448 -0
- package/dist/src/automation/test-pipeline/utils/swarm-coordinator.js.map +1 -0
- package/dist/src/ci-cd/deployment-orchestrator.js +477 -0
- package/dist/src/ci-cd/deployment-orchestrator.js.map +1 -0
- package/dist/src/ci-cd/github-actions-templates.js +972 -0
- package/dist/src/ci-cd/github-actions-templates.js.map +1 -0
- package/dist/src/ci-cd/performance/PerformanceGate.js +383 -0
- package/dist/src/ci-cd/performance/PerformanceGate.js.map +1 -0
- package/dist/src/cli/agents/analyst.js +788 -0
- package/dist/src/cli/agents/analyst.js.map +1 -0
- package/dist/src/cli/agents/architect.js +846 -0
- package/dist/src/cli/agents/architect.js.map +1 -0
- package/dist/src/cli/agents/base-agent.js +437 -0
- package/dist/src/cli/agents/base-agent.js.map +1 -0
- package/dist/src/cli/agents/capabilities.js +701 -0
- package/dist/src/cli/agents/capabilities.js.map +1 -0
- package/dist/src/cli/agents/coder.js +936 -0
- package/dist/src/cli/agents/coder.js.map +1 -0
- package/dist/src/cli/agents/coordinator.js +489 -0
- package/dist/src/cli/agents/coordinator.js.map +1 -0
- package/dist/src/cli/agents/hive-agents.js +708 -0
- package/dist/src/cli/agents/hive-agents.js.map +1 -0
- package/dist/src/cli/agents/index.js +299 -0
- package/dist/src/cli/agents/index.js.map +1 -0
- package/dist/src/cli/agents/researcher.js +388 -0
- package/dist/src/cli/agents/researcher.js.map +1 -0
- package/dist/src/cli/agents/tester.js +634 -0
- package/dist/src/cli/agents/tester.js.map +1 -0
- package/dist/src/cli/cli-core.js +264 -0
- package/dist/src/cli/cli-core.js.map +1 -0
- package/dist/src/cli/commands/advanced-memory-commands.js +834 -0
- package/dist/src/cli/commands/advanced-memory-commands.js.map +1 -0
- package/dist/src/cli/commands/agent-simple.js +346 -0
- package/dist/src/cli/commands/agent-simple.js.map +1 -0
- package/dist/src/cli/commands/agent.js +368 -0
- package/dist/src/cli/commands/agent.js.map +1 -0
- package/dist/src/cli/commands/claude-api.js +237 -0
- package/dist/src/cli/commands/claude-api.js.map +1 -0
- package/dist/src/cli/commands/claude.js +132 -0
- package/dist/src/cli/commands/claude.js.map +1 -0
- package/dist/src/cli/commands/config-integration.js +395 -0
- package/dist/src/cli/commands/config-integration.js.map +1 -0
- package/dist/src/cli/commands/config.js +67 -0
- package/dist/src/cli/commands/config.js.map +1 -0
- package/dist/src/cli/commands/enterprise.js +1523 -0
- package/dist/src/cli/commands/enterprise.js.map +1 -0
- package/dist/src/cli/commands/goal-init.js +262 -0
- package/dist/src/cli/commands/goal-init.js.map +1 -0
- package/dist/src/cli/commands/help-new.js +276 -0
- package/dist/src/cli/commands/help-new.js.map +1 -0
- package/dist/src/cli/commands/help.js +1055 -0
- package/dist/src/cli/commands/help.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/index.js +20 -0
- package/dist/src/cli/commands/hive-mind/index.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/init.js +58 -0
- package/dist/src/cli/commands/hive-mind/init.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/optimize-memory.js +362 -0
- package/dist/src/cli/commands/hive-mind/optimize-memory.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/pause.js +73 -0
- package/dist/src/cli/commands/hive-mind/pause.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/ps.js +104 -0
- package/dist/src/cli/commands/hive-mind/ps.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/resume.js +56 -0
- package/dist/src/cli/commands/hive-mind/resume.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/spawn.js +242 -0
- package/dist/src/cli/commands/hive-mind/spawn.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/status.js +250 -0
- package/dist/src/cli/commands/hive-mind/status.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/stop.js +116 -0
- package/dist/src/cli/commands/hive-mind/stop.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/task.js +302 -0
- package/dist/src/cli/commands/hive-mind/task.js.map +1 -0
- package/dist/src/cli/commands/hive-mind/wizard.js +705 -0
- package/dist/src/cli/commands/hive-mind/wizard.js.map +1 -0
- package/dist/src/cli/commands/hive.js +506 -0
- package/dist/src/cli/commands/hive.js.map +1 -0
- package/dist/src/cli/commands/hook-types.js +5 -0
- package/dist/src/cli/commands/hook-types.js.map +1 -0
- package/dist/src/cli/commands/hook-validator.js +177 -0
- package/dist/src/cli/commands/hook-validator.js.map +1 -0
- package/dist/src/cli/commands/hook.js +303 -0
- package/dist/src/cli/commands/hook.js.map +1 -0
- package/dist/src/cli/commands/index.js +2745 -0
- package/dist/src/cli/commands/index.js.map +1 -0
- package/dist/src/cli/commands/maestro.js +242 -0
- package/dist/src/cli/commands/maestro.js.map +1 -0
- package/dist/src/cli/commands/mcp.js +148 -0
- package/dist/src/cli/commands/mcp.js.map +1 -0
- package/dist/src/cli/commands/memory.js +193 -0
- package/dist/src/cli/commands/memory.js.map +1 -0
- package/dist/src/cli/commands/migrate.js +107 -0
- package/dist/src/cli/commands/migrate.js.map +1 -0
- package/dist/src/cli/commands/monitor.js +574 -0
- package/dist/src/cli/commands/monitor.js.map +1 -0
- package/dist/src/cli/commands/neural-init.js +211 -0
- package/dist/src/cli/commands/neural-init.js.map +1 -0
- package/dist/src/cli/commands/ruv-swarm.js +555 -0
- package/dist/src/cli/commands/ruv-swarm.js.map +1 -0
- package/dist/src/cli/commands/session.js +517 -0
- package/dist/src/cli/commands/session.js.map +1 -0
- package/dist/src/cli/commands/sparc.js +486 -0
- package/dist/src/cli/commands/sparc.js.map +1 -0
- package/dist/src/cli/commands/start/event-emitter.js +35 -0
- package/dist/src/cli/commands/start/event-emitter.js.map +1 -0
- package/dist/src/cli/commands/start/index.js +9 -0
- package/dist/src/cli/commands/start/index.js.map +1 -0
- package/dist/src/cli/commands/start/process-manager.js +294 -0
- package/dist/src/cli/commands/start/process-manager.js.map +1 -0
- package/dist/src/cli/commands/start/process-ui-simple.js +322 -0
- package/dist/src/cli/commands/start/process-ui-simple.js.map +1 -0
- package/dist/src/cli/commands/start/process-ui.js +5 -0
- package/dist/src/cli/commands/start/process-ui.js.map +1 -0
- package/dist/src/cli/commands/start/start-command.js +463 -0
- package/dist/src/cli/commands/start/start-command.js.map +1 -0
- package/dist/src/cli/commands/start/system-monitor.js +268 -0
- package/dist/src/cli/commands/start/system-monitor.js.map +1 -0
- package/dist/src/cli/commands/start/types.js +22 -0
- package/dist/src/cli/commands/start/types.js.map +1 -0
- package/dist/src/cli/commands/start.js +6 -0
- package/dist/src/cli/commands/start.js.map +1 -0
- package/dist/src/cli/commands/status.js +328 -0
- package/dist/src/cli/commands/status.js.map +1 -0
- package/dist/src/cli/commands/swarm-spawn.js +56 -0
- package/dist/src/cli/commands/swarm-spawn.js.map +1 -0
- package/dist/src/cli/commands/swarm.js +567 -0
- package/dist/src/cli/commands/swarm.js.map +1 -0
- package/dist/src/cli/commands/task.js +44 -0
- package/dist/src/cli/commands/task.js.map +1 -0
- package/dist/src/cli/commands/validate-integration.js +122 -0
- package/dist/src/cli/commands/validate-integration.js.map +1 -0
- package/dist/src/cli/commands/verification.js +351 -0
- package/dist/src/cli/commands/verification.js.map +1 -0
- package/dist/src/cli/commands/workflow.js +615 -0
- package/dist/src/cli/commands/workflow.js.map +1 -0
- package/dist/src/cli/completion.js +578 -0
- package/dist/src/cli/completion.js.map +1 -0
- package/dist/src/cli/consolidated/ConsolidatedCLI.js +379 -0
- package/dist/src/cli/consolidated/ConsolidatedCLI.js.map +1 -0
- package/dist/src/cli/consolidated/core/CommandHandlers.js +833 -0
- package/dist/src/cli/consolidated/core/CommandHandlers.js.map +1 -0
- package/dist/src/cli/consolidated/core/TierManager.js +291 -0
- package/dist/src/cli/consolidated/core/TierManager.js.map +1 -0
- package/dist/src/cli/consolidated/help/InteractiveHelp.js +714 -0
- package/dist/src/cli/consolidated/help/InteractiveHelp.js.map +1 -0
- package/dist/src/cli/consolidated/index.js +62 -0
- package/dist/src/cli/consolidated/index.js.map +1 -0
- package/dist/src/cli/consolidated/intelligence/IntelligenceEngine.js +457 -0
- package/dist/src/cli/consolidated/intelligence/IntelligenceEngine.js.map +1 -0
- package/dist/src/cli/consolidated/routing/CommandRouter.js +526 -0
- package/dist/src/cli/consolidated/routing/CommandRouter.js.map +1 -0
- package/dist/src/cli/consolidated/utils/IntelligentDefaults.js +729 -0
- package/dist/src/cli/consolidated/utils/IntelligentDefaults.js.map +1 -0
- package/dist/src/cli/consolidated/utils/PerformanceOptimizer.js +416 -0
- package/dist/src/cli/consolidated/utils/PerformanceOptimizer.js.map +1 -0
- package/dist/src/cli/formatter.js +284 -0
- package/dist/src/cli/formatter.js.map +1 -0
- package/dist/src/cli/help-formatter.js +111 -0
- package/dist/src/cli/help-formatter.js.map +1 -0
- package/dist/src/cli/index-remote.js +125 -0
- package/dist/src/cli/index-remote.js.map +1 -0
- package/dist/src/cli/index.js +159 -0
- package/dist/src/cli/index.js.map +1 -0
- package/dist/src/cli/init/batch-tools.js +388 -0
- package/dist/src/cli/init/batch-tools.js.map +1 -0
- package/dist/src/cli/init/claude-config.js +401 -0
- package/dist/src/cli/init/claude-config.js.map +1 -0
- package/dist/src/cli/init/directory-structure.js +146 -0
- package/dist/src/cli/init/directory-structure.js.map +1 -0
- package/dist/src/cli/init/index.js +52 -0
- package/dist/src/cli/init/index.js.map +1 -0
- package/dist/src/cli/init/sparc-environment.js +543 -0
- package/dist/src/cli/init/sparc-environment.js.map +1 -0
- package/dist/src/cli/init/swarm-commands.js +796 -0
- package/dist/src/cli/init/swarm-commands.js.map +1 -0
- package/dist/src/cli/init/utils.js +15 -0
- package/dist/src/cli/init/utils.js.map +1 -0
- package/dist/src/cli/maestro-cli-bridge.js +426 -0
- package/dist/src/cli/maestro-cli-bridge.js.map +1 -0
- package/dist/src/cli/main.js +26 -0
- package/dist/src/cli/main.js.map +1 -0
- package/dist/src/cli/node-repl.js +652 -0
- package/dist/src/cli/node-repl.js.map +1 -0
- package/dist/src/cli/repl.js +1078 -0
- package/dist/src/cli/repl.js.map +1 -0
- package/dist/src/cli/simple-cli.js +3026 -0
- package/dist/src/cli/simple-cli.js.map +1 -0
- package/dist/src/cli/simple-mcp.js +87 -0
- package/dist/src/cli/simple-mcp.js.map +1 -0
- package/dist/src/cli/simple-orchestrator.js +857 -0
- package/dist/src/cli/simple-orchestrator.js.map +1 -0
- package/dist/src/cli/ui/compatible-ui.js +322 -0
- package/dist/src/cli/ui/compatible-ui.js.map +1 -0
- package/dist/src/cli/ui/fallback-handler.js +156 -0
- package/dist/src/cli/ui/fallback-handler.js.map +1 -0
- package/dist/src/cli/ui/index.js +32 -0
- package/dist/src/cli/ui/index.js.map +1 -0
- package/dist/src/cli/utils/environment-detector.js +228 -0
- package/dist/src/cli/utils/environment-detector.js.map +1 -0
- package/dist/src/cli/utils/prompt-defaults.js +234 -0
- package/dist/src/cli/utils/prompt-defaults.js.map +1 -0
- package/dist/src/cli/validation-helper.js +66 -0
- package/dist/src/cli/validation-helper.js.map +1 -0
- package/dist/src/communication/message-bus.js +1007 -0
- package/dist/src/communication/message-bus.js.map +1 -0
- package/dist/src/communication/reliable-communication-manager.js +374 -0
- package/dist/src/communication/reliable-communication-manager.js.map +1 -0
- package/dist/src/config/ai/decision-tree-generator.js +763 -0
- package/dist/src/config/ai/decision-tree-generator.js.map +1 -0
- package/dist/src/config/ai/project-detection-engine.js +1081 -0
- package/dist/src/config/ai/project-detection-engine.js.map +1 -0
- package/dist/src/config/config-manager.js +1285 -0
- package/dist/src/config/config-manager.js.map +1 -0
- package/dist/src/config/consent-manager.js +433 -0
- package/dist/src/config/consent-manager.js.map +1 -0
- package/dist/src/config/core/intelligent-configuration-manager.js +674 -0
- package/dist/src/config/core/intelligent-configuration-manager.js.map +1 -0
- package/dist/src/config/index.js +110 -0
- package/dist/src/config/index.js.map +1 -0
- package/dist/src/config/integration/hooks-integration.js +548 -0
- package/dist/src/config/integration/hooks-integration.js.map +1 -0
- package/dist/src/config/migration/config-migration.js +285 -0
- package/dist/src/config/migration/config-migration.js.map +1 -0
- package/dist/src/config/migration/version-migration-engine.js +984 -0
- package/dist/src/config/migration/version-migration-engine.js.map +1 -0
- package/dist/src/config/migration-manager.js +529 -0
- package/dist/src/config/migration-manager.js.map +1 -0
- package/dist/src/config/ruv-swarm-config.js +332 -0
- package/dist/src/config/ruv-swarm-config.js.map +1 -0
- package/dist/src/config/ruv-swarm-integration.js +285 -0
- package/dist/src/config/ruv-swarm-integration.js.map +1 -0
- package/dist/src/config/storage/multi-tier-storage.js +626 -0
- package/dist/src/config/storage/multi-tier-storage.js.map +1 -0
- package/dist/src/config/test-migration-fixer.js +332 -0
- package/dist/src/config/test-migration-fixer.js.map +1 -0
- package/dist/src/config/ui/progressive-disclosure-engine.js +876 -0
- package/dist/src/config/ui/progressive-disclosure-engine.js.map +1 -0
- package/dist/src/config/utils/config-export-import.js +454 -0
- package/dist/src/config/utils/config-export-import.js.map +1 -0
- package/dist/src/config/utils/zero-config-setup.js +238 -0
- package/dist/src/config/utils/zero-config-setup.js.map +1 -0
- package/dist/src/config/validation/config-validator.js +462 -0
- package/dist/src/config/validation/config-validator.js.map +1 -0
- package/dist/src/config/web-portal-config.js +343 -0
- package/dist/src/config/web-portal-config.js.map +1 -0
- package/dist/src/config/zero-config-setup.js +294 -0
- package/dist/src/config/zero-config-setup.js.map +1 -0
- package/dist/src/constants/agent-types.js +51 -0
- package/dist/src/constants/agent-types.js.map +1 -0
- package/dist/src/coordination/advanced-scheduler.js +370 -0
- package/dist/src/coordination/advanced-scheduler.js.map +1 -0
- package/dist/src/coordination/advanced-task-executor.js +481 -0
- package/dist/src/coordination/advanced-task-executor.js.map +1 -0
- package/dist/src/coordination/background-executor.js +366 -0
- package/dist/src/coordination/background-executor.js.map +1 -0
- package/dist/src/coordination/circuit-breaker.js +286 -0
- package/dist/src/coordination/circuit-breaker.js.map +1 -0
- package/dist/src/coordination/conflict-resolution.js +348 -0
- package/dist/src/coordination/conflict-resolution.js.map +1 -0
- package/dist/src/coordination/dependency-graph.js +398 -0
- package/dist/src/coordination/dependency-graph.js.map +1 -0
- package/dist/src/coordination/hive-orchestrator.js +309 -0
- package/dist/src/coordination/hive-orchestrator.js.map +1 -0
- package/dist/src/coordination/hive-protocol.js +363 -0
- package/dist/src/coordination/hive-protocol.js.map +1 -0
- package/dist/src/coordination/index.js +21 -0
- package/dist/src/coordination/index.js.map +1 -0
- package/dist/src/coordination/load-balancer.js +737 -0
- package/dist/src/coordination/load-balancer.js.map +1 -0
- package/dist/src/coordination/manager.js +360 -0
- package/dist/src/coordination/manager.js.map +1 -0
- package/dist/src/coordination/messaging.js +221 -0
- package/dist/src/coordination/messaging.js.map +1 -0
- package/dist/src/coordination/metrics.js +415 -0
- package/dist/src/coordination/metrics.js.map +1 -0
- package/dist/src/coordination/resources.js +276 -0
- package/dist/src/coordination/resources.js.map +1 -0
- package/dist/src/coordination/scheduler.js +322 -0
- package/dist/src/coordination/scheduler.js.map +1 -0
- package/dist/src/coordination/swarm-coordinator.js +585 -0
- package/dist/src/coordination/swarm-coordinator.js.map +1 -0
- package/dist/src/coordination/swarm-monitor.js +359 -0
- package/dist/src/coordination/swarm-monitor.js.map +1 -0
- package/dist/src/coordination/work-stealing.js +164 -0
- package/dist/src/coordination/work-stealing.js.map +1 -0
- package/dist/src/core/agent-manager.js +80 -0
- package/dist/src/core/agent-manager.js.map +1 -0
- package/dist/src/core/config.js +1221 -0
- package/dist/src/core/config.js.map +1 -0
- package/dist/src/core/event-bus.js +136 -0
- package/dist/src/core/event-bus.js.map +1 -0
- package/dist/src/core/index.js +6 -0
- package/dist/src/core/index.js.map +1 -0
- package/dist/src/core/json-persistence.js +112 -0
- package/dist/src/core/json-persistence.js.map +1 -0
- package/dist/src/core/logger.js +245 -0
- package/dist/src/core/logger.js.map +1 -0
- package/dist/src/core/orchestrator-fixed.js +236 -0
- package/dist/src/core/orchestrator-fixed.js.map +1 -0
- package/dist/src/core/orchestrator.js +1136 -0
- package/dist/src/core/orchestrator.js.map +1 -0
- package/dist/src/core/persistence.js +185 -0
- package/dist/src/core/persistence.js.map +1 -0
- package/dist/src/core/project-manager.js +80 -0
- package/dist/src/core/project-manager.js.map +1 -0
- package/dist/src/core/version.js +35 -0
- package/dist/src/core/version.js.map +1 -0
- package/dist/src/crdt/types.js +509 -0
- package/dist/src/crdt/types.js.map +1 -0
- package/dist/src/enterprise/analytics-manager.js +1133 -0
- package/dist/src/enterprise/analytics-manager.js.map +1 -0
- package/dist/src/enterprise/audit-manager.js +1112 -0
- package/dist/src/enterprise/audit-manager.js.map +1 -0
- package/dist/src/enterprise/cloud-manager.js +886 -0
- package/dist/src/enterprise/cloud-manager.js.map +1 -0
- package/dist/src/enterprise/deployment-manager.js +963 -0
- package/dist/src/enterprise/deployment-manager.js.map +1 -0
- package/dist/src/enterprise/index.js +8 -0
- package/dist/src/enterprise/index.js.map +1 -0
- package/dist/src/enterprise/project-manager.js +577 -0
- package/dist/src/enterprise/project-manager.js.map +1 -0
- package/dist/src/enterprise/security-manager.js +987 -0
- package/dist/src/enterprise/security-manager.js.map +1 -0
- package/dist/src/feature-flags/cli/Phase4CLI.js +463 -0
- package/dist/src/feature-flags/cli/Phase4CLI.js.map +1 -0
- package/dist/src/feature-flags/core/FeatureFlagManager.js +324 -0
- package/dist/src/feature-flags/core/FeatureFlagManager.js.map +1 -0
- package/dist/src/feature-flags/index.js +237 -0
- package/dist/src/feature-flags/index.js.map +1 -0
- package/dist/src/feature-flags/monitoring/RolloutMonitor.js +275 -0
- package/dist/src/feature-flags/monitoring/RolloutMonitor.js.map +1 -0
- package/dist/src/feature-flags/rollout/RolloutController.js +301 -0
- package/dist/src/feature-flags/rollout/RolloutController.js.map +1 -0
- package/dist/src/feature-flags/validation/HookInterceptor.js +310 -0
- package/dist/src/feature-flags/validation/HookInterceptor.js.map +1 -0
- package/dist/src/feature-flags/validation/TruthBasedValidator.js +263 -0
- package/dist/src/feature-flags/validation/TruthBasedValidator.js.map +1 -0
- package/dist/src/hive-mind/core/Agent.js +569 -0
- package/dist/src/hive-mind/core/Agent.js.map +1 -0
- package/dist/src/hive-mind/core/Communication.js +411 -0
- package/dist/src/hive-mind/core/Communication.js.map +1 -0
- package/dist/src/hive-mind/core/DatabaseManager.js +599 -0
- package/dist/src/hive-mind/core/DatabaseManager.js.map +1 -0
- package/dist/src/hive-mind/core/HiveMind.js +575 -0
- package/dist/src/hive-mind/core/HiveMind.js.map +1 -0
- package/dist/src/hive-mind/core/Memory.js +1159 -0
- package/dist/src/hive-mind/core/Memory.js.map +1 -0
- package/dist/src/hive-mind/core/MemoryMonitor.js +525 -0
- package/dist/src/hive-mind/core/MemoryMonitor.js.map +1 -0
- package/dist/src/hive-mind/core/Queen.js +753 -0
- package/dist/src/hive-mind/core/Queen.js.map +1 -0
- package/dist/src/hive-mind/index.js +21 -0
- package/dist/src/hive-mind/index.js.map +1 -0
- package/dist/src/hive-mind/integration/ConsensusEngine.js +460 -0
- package/dist/src/hive-mind/integration/ConsensusEngine.js.map +1 -0
- package/dist/src/hive-mind/integration/MCPToolWrapper.js +243 -0
- package/dist/src/hive-mind/integration/MCPToolWrapper.js.map +1 -0
- package/dist/src/hive-mind/integration/SwarmOrchestrator.js +812 -0
- package/dist/src/hive-mind/integration/SwarmOrchestrator.js.map +1 -0
- package/dist/src/hive-mind/types.js +9 -0
- package/dist/src/hive-mind/types.js.map +1 -0
- package/dist/src/hooks/index.js +197 -0
- package/dist/src/hooks/index.js.map +1 -0
- package/dist/src/index.js +11 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/integration/mock-components.js +362 -0
- package/dist/src/integration/mock-components.js.map +1 -0
- package/dist/src/integration/system-integration.js +428 -0
- package/dist/src/integration/system-integration.js.map +1 -0
- package/dist/src/integration/types.js +5 -0
- package/dist/src/integration/types.js.map +1 -0
- package/dist/src/lifecycle/communication-protocols.js +568 -0
- package/dist/src/lifecycle/communication-protocols.js.map +1 -0
- package/dist/src/lifecycle/dependency-tracker.js +799 -0
- package/dist/src/lifecycle/dependency-tracker.js.map +1 -0
- package/dist/src/lifecycle/memory-schema.js +622 -0
- package/dist/src/lifecycle/memory-schema.js.map +1 -0
- package/dist/src/maestro/maestro-swarm-coordinator.js +504 -0
- package/dist/src/maestro/maestro-swarm-coordinator.js.map +1 -0
- package/dist/src/maestro/maestro-types.js +3 -0
- package/dist/src/maestro/maestro-types.js.map +1 -0
- package/dist/src/maestro/tests/native-hive-mind-integration.test.js +382 -0
- package/dist/src/maestro/tests/native-hive-mind-integration.test.js.map +1 -0
- package/dist/src/mcp/auth.js +347 -0
- package/dist/src/mcp/auth.js.map +1 -0
- package/dist/src/mcp/claude-code-wrapper.js +717 -0
- package/dist/src/mcp/claude-code-wrapper.js.map +1 -0
- package/dist/src/mcp/claude-flow-tools.js +1365 -0
- package/dist/src/mcp/claude-flow-tools.js.map +1 -0
- package/dist/src/mcp/client.js +201 -0
- package/dist/src/mcp/client.js.map +1 -0
- package/dist/src/mcp/index.js +192 -0
- package/dist/src/mcp/index.js.map +1 -0
- package/dist/src/mcp/integrate-wrapper.js +85 -0
- package/dist/src/mcp/integrate-wrapper.js.map +1 -0
- package/dist/src/mcp/lifecycle-manager.js +348 -0
- package/dist/src/mcp/lifecycle-manager.js.map +1 -0
- package/dist/src/mcp/load-balancer.js +386 -0
- package/dist/src/mcp/load-balancer.js.map +1 -0
- package/dist/src/mcp/orchestration-integration.js +800 -0
- package/dist/src/mcp/orchestration-integration.js.map +1 -0
- package/dist/src/mcp/performance-monitor.js +489 -0
- package/dist/src/mcp/performance-monitor.js.map +1 -0
- package/dist/src/mcp/protocol-manager.js +376 -0
- package/dist/src/mcp/protocol-manager.js.map +1 -0
- package/dist/src/mcp/recovery/connection-health-monitor.js +240 -0
- package/dist/src/mcp/recovery/connection-health-monitor.js.map +1 -0
- package/dist/src/mcp/recovery/connection-state-manager.js +309 -0
- package/dist/src/mcp/recovery/connection-state-manager.js.map +1 -0
- package/dist/src/mcp/recovery/fallback-coordinator.js +288 -0
- package/dist/src/mcp/recovery/fallback-coordinator.js.map +1 -0
- package/dist/src/mcp/recovery/index.js +10 -0
- package/dist/src/mcp/recovery/index.js.map +1 -0
- package/dist/src/mcp/recovery/reconnection-manager.js +219 -0
- package/dist/src/mcp/recovery/reconnection-manager.js.map +1 -0
- package/dist/src/mcp/recovery/recovery-manager.js +262 -0
- package/dist/src/mcp/recovery/recovery-manager.js.map +1 -0
- package/dist/src/mcp/router.js +220 -0
- package/dist/src/mcp/router.js.map +1 -0
- package/dist/src/mcp/ruv-swarm-tools.js +671 -0
- package/dist/src/mcp/ruv-swarm-tools.js.map +1 -0
- package/dist/src/mcp/server-with-wrapper.js +32 -0
- package/dist/src/mcp/server-with-wrapper.js.map +1 -0
- package/dist/src/mcp/server-wrapper-mode.js +26 -0
- package/dist/src/mcp/server-wrapper-mode.js.map +1 -0
- package/dist/src/mcp/server.js +539 -0
- package/dist/src/mcp/server.js.map +1 -0
- package/dist/src/mcp/session-manager.js +338 -0
- package/dist/src/mcp/session-manager.js.map +1 -0
- package/dist/src/mcp/sparc-modes.js +455 -0
- package/dist/src/mcp/sparc-modes.js.map +1 -0
- package/dist/src/mcp/swarm-tools.js +903 -0
- package/dist/src/mcp/swarm-tools.js.map +1 -0
- package/dist/src/mcp/tests/mcp-integration.test.js +493 -0
- package/dist/src/mcp/tests/mcp-integration.test.js.map +1 -0
- package/dist/src/mcp/tools.js +426 -0
- package/dist/src/mcp/tools.js.map +1 -0
- package/dist/src/mcp/transports/base.js +5 -0
- package/dist/src/mcp/transports/base.js.map +1 -0
- package/dist/src/mcp/transports/http.js +414 -0
- package/dist/src/mcp/transports/http.js.map +1 -0
- package/dist/src/mcp/transports/stdio.js +217 -0
- package/dist/src/mcp/transports/stdio.js.map +1 -0
- package/dist/src/memory/advanced-memory-manager.js +1522 -0
- package/dist/src/memory/advanced-memory-manager.js.map +1 -0
- package/dist/src/memory/backends/base.js +5 -0
- package/dist/src/memory/backends/base.js.map +1 -0
- package/dist/src/memory/backends/markdown.js +235 -0
- package/dist/src/memory/backends/markdown.js.map +1 -0
- package/dist/src/memory/backends/sqlite.js +295 -0
- package/dist/src/memory/backends/sqlite.js.map +1 -0
- package/dist/src/memory/cache.js +177 -0
- package/dist/src/memory/cache.js.map +1 -0
- package/dist/src/memory/distributed-memory.js +745 -0
- package/dist/src/memory/distributed-memory.js.map +1 -0
- package/dist/src/memory/indexer.js +184 -0
- package/dist/src/memory/indexer.js.map +1 -0
- package/dist/src/memory/manager.js +457 -0
- package/dist/src/memory/manager.js.map +1 -0
- package/dist/src/memory/sqlite-enhanced-backend.js +529 -0
- package/dist/src/memory/sqlite-enhanced-backend.js.map +1 -0
- package/dist/src/memory/swarm-memory.js +446 -0
- package/dist/src/memory/swarm-memory.js.map +1 -0
- package/dist/src/migration/index.js +94 -0
- package/dist/src/migration/index.js.map +1 -0
- package/dist/src/migration/logger.js +110 -0
- package/dist/src/migration/logger.js.map +1 -0
- package/dist/src/migration/migration-analyzer.js +255 -0
- package/dist/src/migration/migration-analyzer.js.map +1 -0
- package/dist/src/migration/migration-runner.js +511 -0
- package/dist/src/migration/migration-runner.js.map +1 -0
- package/dist/src/migration/migration-validator.js +272 -0
- package/dist/src/migration/migration-validator.js.map +1 -0
- package/dist/src/migration/progress-reporter.js +139 -0
- package/dist/src/migration/progress-reporter.js.map +1 -0
- package/dist/src/migration/rollback-manager.js +310 -0
- package/dist/src/migration/rollback-manager.js.map +1 -0
- package/dist/src/migration/tests/migration-system.test.js +9 -0
- package/dist/src/migration/tests/migration-system.test.js.map +1 -0
- package/dist/src/migration/types.js +5 -0
- package/dist/src/migration/types.js.map +1 -0
- package/dist/src/monitoring/diagnostics.js +532 -0
- package/dist/src/monitoring/diagnostics.js.map +1 -0
- package/dist/src/monitoring/health-check.js +355 -0
- package/dist/src/monitoring/health-check.js.map +1 -0
- package/dist/src/monitoring/phase4/analytics/consensus-tracker.js +764 -0
- package/dist/src/monitoring/phase4/analytics/consensus-tracker.js.map +1 -0
- package/dist/src/monitoring/phase4/analytics/performance-assessor.js +859 -0
- package/dist/src/monitoring/phase4/analytics/performance-assessor.js.map +1 -0
- package/dist/src/monitoring/phase4/analytics/truth-score-analyzer.js +667 -0
- package/dist/src/monitoring/phase4/analytics/truth-score-analyzer.js.map +1 -0
- package/dist/src/monitoring/phase4/dashboard/monitoring-dashboard.js +1008 -0
- package/dist/src/monitoring/phase4/dashboard/monitoring-dashboard.js.map +1 -0
- package/dist/src/monitoring/phase4/rollout-decision-engine.js +849 -0
- package/dist/src/monitoring/phase4/rollout-decision-engine.js.map +1 -0
- package/dist/src/monitoring/real-time-feedback-system.js +688 -0
- package/dist/src/monitoring/real-time-feedback-system.js.map +1 -0
- package/dist/src/monitoring/real-time-monitor.js +981 -0
- package/dist/src/monitoring/real-time-monitor.js.map +1 -0
- package/dist/src/monitoring/regression/RegressionDetector.js +525 -0
- package/dist/src/monitoring/regression/RegressionDetector.js.map +1 -0
- package/dist/src/neural/NeuralDomainMapper.js +1137 -0
- package/dist/src/neural/NeuralDomainMapper.js.map +1 -0
- package/dist/src/neural/index.js +418 -0
- package/dist/src/neural/index.js.map +1 -0
- package/dist/src/neural/integration.js +590 -0
- package/dist/src/neural/integration.js.map +1 -0
- package/dist/src/providers/anthropic-provider.js +245 -0
- package/dist/src/providers/anthropic-provider.js.map +1 -0
- package/dist/src/providers/base-provider.js +389 -0
- package/dist/src/providers/base-provider.js.map +1 -0
- package/dist/src/providers/cohere-provider.js +405 -0
- package/dist/src/providers/cohere-provider.js.map +1 -0
- package/dist/src/providers/google-provider.js +376 -0
- package/dist/src/providers/google-provider.js.map +1 -0
- package/dist/src/providers/index.js +18 -0
- package/dist/src/providers/index.js.map +1 -0
- package/dist/src/providers/ollama-provider.js +400 -0
- package/dist/src/providers/ollama-provider.js.map +1 -0
- package/dist/src/providers/openai-provider.js +364 -0
- package/dist/src/providers/openai-provider.js.map +1 -0
- package/dist/src/providers/provider-manager.js +487 -0
- package/dist/src/providers/provider-manager.js.map +1 -0
- package/dist/src/providers/types.js +55 -0
- package/dist/src/providers/types.js.map +1 -0
- package/dist/src/providers/utils.js +343 -0
- package/dist/src/providers/utils.js.map +1 -0
- package/dist/src/quality-gates/automated-review-system.js +645 -0
- package/dist/src/quality-gates/automated-review-system.js.map +1 -0
- package/dist/src/resources/resource-manager.js +1275 -0
- package/dist/src/resources/resource-manager.js.map +1 -0
- package/dist/src/rollback/recovery-manager.js +1065 -0
- package/dist/src/rollback/recovery-manager.js.map +1 -0
- package/dist/src/services/agent-manager.js +308 -0
- package/dist/src/services/agent-manager.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/hook-manager.js +506 -0
- package/dist/src/services/agentic-flow-hooks/hook-manager.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/index.js +322 -0
- package/dist/src/services/agentic-flow-hooks/index.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/llm-hooks.js +445 -0
- package/dist/src/services/agentic-flow-hooks/llm-hooks.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/memory-hooks.js +558 -0
- package/dist/src/services/agentic-flow-hooks/memory-hooks.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/neural-hooks.js +595 -0
- package/dist/src/services/agentic-flow-hooks/neural-hooks.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/performance-hooks.js +640 -0
- package/dist/src/services/agentic-flow-hooks/performance-hooks.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/types.js +8 -0
- package/dist/src/services/agentic-flow-hooks/types.js.map +1 -0
- package/dist/src/services/agentic-flow-hooks/workflow-hooks.js +746 -0
- package/dist/src/services/agentic-flow-hooks/workflow-hooks.js.map +1 -0
- package/dist/src/services/performance-metrics-collector.js +529 -0
- package/dist/src/services/performance-metrics-collector.js.map +1 -0
- package/dist/src/services/swarm-coordinator.js +431 -0
- package/dist/src/services/swarm-coordinator.js.map +1 -0
- package/dist/src/services/swarm-memory-manager.js +513 -0
- package/dist/src/services/swarm-memory-manager.js.map +1 -0
- package/dist/src/services/swarm-relaunch-manager.js +408 -0
- package/dist/src/services/swarm-relaunch-manager.js.map +1 -0
- package/dist/src/services/task-handoff-service.js +361 -0
- package/dist/src/services/task-handoff-service.js.map +1 -0
- package/dist/src/swarm/__tests__/integration.test.js +229 -0
- package/dist/src/swarm/__tests__/integration.test.js.map +1 -0
- package/dist/src/swarm/__tests__/prompt-copier.test.js +346 -0
- package/dist/src/swarm/__tests__/prompt-copier.test.js.map +1 -0
- package/dist/src/swarm/advanced-orchestrator.js +1093 -0
- package/dist/src/swarm/advanced-orchestrator.js.map +1 -0
- package/dist/src/swarm/claude-code-interface.js +959 -0
- package/dist/src/swarm/claude-code-interface.js.map +1 -0
- package/dist/src/swarm/claude-flow-executor.js +218 -0
- package/dist/src/swarm/claude-flow-executor.js.map +1 -0
- package/dist/src/swarm/coordinator.js +3001 -0
- package/dist/src/swarm/coordinator.js.map +1 -0
- package/dist/src/swarm/direct-executor.js +1169 -0
- package/dist/src/swarm/direct-executor.js.map +1 -0
- package/dist/src/swarm/executor-v2.js +312 -0
- package/dist/src/swarm/executor-v2.js.map +1 -0
- package/dist/src/swarm/executor.js +813 -0
- package/dist/src/swarm/executor.js.map +1 -0
- package/dist/src/swarm/hive-mind-integration.js +700 -0
- package/dist/src/swarm/hive-mind-integration.js.map +1 -0
- package/dist/src/swarm/index.js +43 -0
- package/dist/src/swarm/index.js.map +1 -0
- package/dist/src/swarm/json-output-aggregator.js +269 -0
- package/dist/src/swarm/json-output-aggregator.js.map +1 -0
- package/dist/src/swarm/mcp-integration-wrapper.js +623 -0
- package/dist/src/swarm/mcp-integration-wrapper.js.map +1 -0
- package/dist/src/swarm/memory.js +1119 -0
- package/dist/src/swarm/memory.js.map +1 -0
- package/dist/src/swarm/optimizations/__tests__/optimization.test.js +350 -0
- package/dist/src/swarm/optimizations/__tests__/optimization.test.js.map +1 -0
- package/dist/src/swarm/optimizations/async-file-manager.js +273 -0
- package/dist/src/swarm/optimizations/async-file-manager.js.map +1 -0
- package/dist/src/swarm/optimizations/circular-buffer.js +148 -0
- package/dist/src/swarm/optimizations/circular-buffer.js.map +1 -0
- package/dist/src/swarm/optimizations/connection-pool.js +239 -0
- package/dist/src/swarm/optimizations/connection-pool.js.map +1 -0
- package/dist/src/swarm/optimizations/index.js +30 -0
- package/dist/src/swarm/optimizations/index.js.map +1 -0
- package/dist/src/swarm/optimizations/optimized-executor.js +318 -0
- package/dist/src/swarm/optimizations/optimized-executor.js.map +1 -0
- package/dist/src/swarm/optimizations/ttl-map.js +223 -0
- package/dist/src/swarm/optimizations/ttl-map.js.map +1 -0
- package/dist/src/swarm/prompt-cli.js +202 -0
- package/dist/src/swarm/prompt-cli.js.map +1 -0
- package/dist/src/swarm/prompt-copier-enhanced.js +193 -0
- package/dist/src/swarm/prompt-copier-enhanced.js.map +1 -0
- package/dist/src/swarm/prompt-copier.js +376 -0
- package/dist/src/swarm/prompt-copier.js.map +1 -0
- package/dist/src/swarm/prompt-manager.js +287 -0
- package/dist/src/swarm/prompt-manager.js.map +1 -0
- package/dist/src/swarm/prompt-utils.js +299 -0
- package/dist/src/swarm/prompt-utils.js.map +1 -0
- package/dist/src/swarm/result-aggregator.js +713 -0
- package/dist/src/swarm/result-aggregator.js.map +1 -0
- package/dist/src/swarm/sparc-executor.js +1557 -0
- package/dist/src/swarm/sparc-executor.js.map +1 -0
- package/dist/src/swarm/strategies/auto.js +751 -0
- package/dist/src/swarm/strategies/auto.js.map +1 -0
- package/dist/src/swarm/strategies/base.js +117 -0
- package/dist/src/swarm/strategies/base.js.map +1 -0
- package/dist/src/swarm/strategies/research.js +911 -0
- package/dist/src/swarm/strategies/research.js.map +1 -0
- package/dist/src/swarm/strategies/strategy-metrics-patch.js +4 -0
- package/dist/src/swarm/strategies/strategy-metrics-patch.js.map +1 -0
- package/dist/src/swarm/types.js +54 -0
- package/dist/src/swarm/types.js.map +1 -0
- package/dist/src/swarm/workers/copy-worker.js +58 -0
- package/dist/src/swarm/workers/copy-worker.js.map +1 -0
- package/dist/src/swarm-fullstack/adapters/chrome-mcp-adapter.js +412 -0
- package/dist/src/swarm-fullstack/adapters/chrome-mcp-adapter.js.map +1 -0
- package/dist/src/swarm-fullstack/adapters/shadcn-mcp-adapter.js +560 -0
- package/dist/src/swarm-fullstack/adapters/shadcn-mcp-adapter.js.map +1 -0
- package/dist/src/swarm-fullstack/cli/fullstack-cli.js +582 -0
- package/dist/src/swarm-fullstack/cli/fullstack-cli.js.map +1 -0
- package/dist/src/swarm-fullstack/config/fullstack-config.js +369 -0
- package/dist/src/swarm-fullstack/config/fullstack-config.js.map +1 -0
- package/dist/src/swarm-fullstack/core/dynamic-agent-spawner.js +687 -0
- package/dist/src/swarm-fullstack/core/dynamic-agent-spawner.js.map +1 -0
- package/dist/src/swarm-fullstack/core/enhanced-swarm-message-router.js +589 -0
- package/dist/src/swarm-fullstack/core/enhanced-swarm-message-router.js.map +1 -0
- package/dist/src/swarm-fullstack/core/fullstack-orchestrator.js +538 -0
- package/dist/src/swarm-fullstack/core/fullstack-orchestrator.js.map +1 -0
- package/dist/src/swarm-fullstack/types/index.js +8 -0
- package/dist/src/swarm-fullstack/types/index.js.map +1 -0
- package/dist/src/task/commands.js +130 -0
- package/dist/src/task/commands.js.map +1 -0
- package/dist/src/task/coordination.js +737 -0
- package/dist/src/task/coordination.js.map +1 -0
- package/dist/src/task/engine.js +490 -0
- package/dist/src/task/engine.js.map +1 -0
- package/dist/src/task/index.js +269 -0
- package/dist/src/task/index.js.map +1 -0
- package/dist/src/task/types.js +5 -0
- package/dist/src/task/types.js.map +1 -0
- package/dist/src/terminal/adapters/base.js +5 -0
- package/dist/src/terminal/adapters/base.js.map +1 -0
- package/dist/src/terminal/adapters/native.js +473 -0
- package/dist/src/terminal/adapters/native.js.map +1 -0
- package/dist/src/terminal/adapters/vscode.js +285 -0
- package/dist/src/terminal/adapters/vscode.js.map +1 -0
- package/dist/src/terminal/manager.js +237 -0
- package/dist/src/terminal/manager.js.map +1 -0
- package/dist/src/terminal/pool.js +209 -0
- package/dist/src/terminal/pool.js.map +1 -0
- package/dist/src/terminal/session.js +211 -0
- package/dist/src/terminal/session.js.map +1 -0
- package/dist/src/terminal/vscode-bridge.js +186 -0
- package/dist/src/terminal/vscode-bridge.js.map +1 -0
- package/dist/src/testing/performance/PerformanceTestRunner.js +401 -0
- package/dist/src/testing/performance/PerformanceTestRunner.js.map +1 -0
- package/dist/src/testing-integration/chrome-mcp-integration.js +556 -0
- package/dist/src/testing-integration/chrome-mcp-integration.js.map +1 -0
- package/dist/src/testing-integration/continuous-test-runner.js +509 -0
- package/dist/src/testing-integration/continuous-test-runner.js.map +1 -0
- package/dist/src/tests/validation-consistency.test.js +52 -0
- package/dist/src/tests/validation-consistency.test.js.map +1 -0
- package/dist/src/topology/adaptive-coordinator.js +691 -0
- package/dist/src/topology/adaptive-coordinator.js.map +1 -0
- package/dist/src/topology/communication-bridge.js +551 -0
- package/dist/src/topology/communication-bridge.js.map +1 -0
- package/dist/src/topology/enhanced-hierarchical-coordinator.js +1732 -0
- package/dist/src/topology/enhanced-hierarchical-coordinator.js.map +1 -0
- package/dist/src/topology/enhanced-mesh-coordinator.js +1271 -0
- package/dist/src/topology/enhanced-mesh-coordinator.js.map +1 -0
- package/dist/src/topology/topology-manager.js +797 -0
- package/dist/src/topology/topology-manager.js.map +1 -0
- package/dist/src/topology/types.js +8 -0
- package/dist/src/topology/types.js.map +1 -0
- package/dist/src/types/agent-lifecycle-types.js +172 -0
- package/dist/src/types/agent-lifecycle-types.js.map +1 -0
- package/dist/src/types/agent-types.js +11 -0
- package/dist/src/types/agent-types.js.map +1 -0
- package/dist/src/types/cliffy.d.js +9 -0
- package/dist/src/types/cliffy.d.js.map +1 -0
- package/dist/src/types/global.d.js +5 -0
- package/dist/src/types/global.d.js.map +1 -0
- package/dist/src/types/index.js +16 -0
- package/dist/src/types/index.js.map +1 -0
- package/dist/src/types/mcp.d.js +3 -0
- package/dist/src/types/mcp.d.js.map +1 -0
- package/dist/src/types/vscode.d.js +4 -0
- package/dist/src/types/vscode.d.js.map +1 -0
- package/dist/src/ui/hive-dashboard.js +284 -0
- package/dist/src/ui/hive-dashboard.js.map +1 -0
- package/dist/src/utils/error-handler.js +27 -0
- package/dist/src/utils/error-handler.js.map +1 -0
- package/dist/src/utils/errors.js +195 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/src/utils/formatters.js +66 -0
- package/dist/src/utils/formatters.js.map +1 -0
- package/dist/src/utils/helpers.js +451 -0
- package/dist/src/utils/helpers.js.map +1 -0
- package/dist/src/utils/paths.js +43 -0
- package/dist/src/utils/paths.js.map +1 -0
- package/dist/src/utils/type-guards.js +119 -0
- package/dist/src/utils/type-guards.js.map +1 -0
- package/dist/src/utils/types.js +38 -0
- package/dist/src/utils/types.js.map +1 -0
- package/dist/src/verification/agent-scorer.js +633 -0
- package/dist/src/verification/agent-scorer.js.map +1 -0
- package/dist/src/verification/alert-manager.js +1126 -0
- package/dist/src/verification/alert-manager.js.map +1 -0
- package/dist/src/verification/api/types/index.js +6 -0
- package/dist/src/verification/api/types/index.js.map +1 -0
- package/dist/src/verification/checkpoint-manager.js +519 -0
- package/dist/src/verification/checkpoint-manager.js.map +1 -0
- package/dist/src/verification/cli-integration.js +500 -0
- package/dist/src/verification/cli-integration.js.map +1 -0
- package/dist/src/verification/conflict-resolver.js +534 -0
- package/dist/src/verification/conflict-resolver.js.map +1 -0
- package/dist/src/verification/crdt-coordinator.js +506 -0
- package/dist/src/verification/crdt-coordinator.js.map +1 -0
- package/dist/src/verification/dashboard-exporter.js +876 -0
- package/dist/src/verification/dashboard-exporter.js.map +1 -0
- package/dist/src/verification/demo.js +320 -0
- package/dist/src/verification/demo.js.map +1 -0
- package/dist/src/verification/examples.js +508 -0
- package/dist/src/verification/examples.js.map +1 -0
- package/dist/src/verification/hooks.js +961 -0
- package/dist/src/verification/hooks.js.map +1 -0
- package/dist/src/verification/index.js +73 -0
- package/dist/src/verification/index.js.map +1 -0
- package/dist/src/verification/interfaces.js +7 -0
- package/dist/src/verification/interfaces.js.map +1 -0
- package/dist/src/verification/memory-manager.js +510 -0
- package/dist/src/verification/memory-manager.js.map +1 -0
- package/dist/src/verification/middleware.js +579 -0
- package/dist/src/verification/middleware.js.map +1 -0
- package/dist/src/verification/rollback-engine.js +511 -0
- package/dist/src/verification/rollback-engine.js.map +1 -0
- package/dist/src/verification/rollback.js +1710 -0
- package/dist/src/verification/rollback.js.map +1 -0
- package/dist/src/verification/security-bypass-test.js +704 -0
- package/dist/src/verification/security-bypass-test.js.map +1 -0
- package/dist/src/verification/security.js +1125 -0
- package/dist/src/verification/security.js.map +1 -0
- package/dist/src/verification/simple-hooks.js +189 -0
- package/dist/src/verification/simple-hooks.js.map +1 -0
- package/dist/src/verification/system-tracker.js +657 -0
- package/dist/src/verification/system-tracker.js.map +1 -0
- package/dist/src/verification/telemetry.js +922 -0
- package/dist/src/verification/telemetry.js.map +1 -0
- package/dist/src/verification/test-verification.js +43 -0
- package/dist/src/verification/test-verification.js.map +1 -0
- package/dist/src/verification/tests/e2e/verification-pipeline.test.js +1027 -0
- package/dist/src/verification/tests/e2e/verification-pipeline.test.js.map +1 -0
- package/dist/src/verification/tests/integration/cross-agent-communication.test.js +638 -0
- package/dist/src/verification/tests/integration/cross-agent-communication.test.js.map +1 -0
- package/dist/src/verification/tests/mocks/false-reporting-scenarios.test.js +1029 -0
- package/dist/src/verification/tests/mocks/false-reporting-scenarios.test.js.map +1 -0
- package/dist/src/verification/tests/performance/verification-overhead.test.js +587 -0
- package/dist/src/verification/tests/performance/verification-overhead.test.js.map +1 -0
- package/dist/src/verification/tests/unit/truth-scoring.test.js +579 -0
- package/dist/src/verification/tests/unit/truth-scoring.test.js.map +1 -0
- package/dist/src/verification/tests.js +611 -0
- package/dist/src/verification/tests.js.map +1 -0
- package/dist/src/verification/truth-scorer.js +584 -0
- package/dist/src/verification/truth-scorer.js.map +1 -0
- package/dist/src/verification/types.js +56 -0
- package/dist/src/verification/types.js.map +1 -0
- package/dist/src/verification/verification-pipeline.js +884 -0
- package/dist/src/verification/verification-pipeline.js.map +1 -0
- package/dist/src/web/messaging/agent-status-tracker.js +447 -0
- package/dist/src/web/messaging/agent-status-tracker.js.map +1 -0
- package/dist/src/web/messaging/human-intervention-system.js +298 -0
- package/dist/src/web/messaging/human-intervention-system.js.map +1 -0
- package/dist/src/web/messaging/message-filter.js +289 -0
- package/dist/src/web/messaging/message-filter.js.map +1 -0
- package/dist/src/web/messaging/swarm-message-router.js +320 -0
- package/dist/src/web/messaging/swarm-message-router.js.map +1 -0
- package/dist/src/web/messaging/transparency-logger.js +415 -0
- package/dist/src/web/messaging/transparency-logger.js.map +1 -0
- package/dist/src/web/portal-server.js +440 -0
- package/dist/src/web/portal-server.js.map +1 -0
- package/dist/src/web/server.js +311 -0
- package/dist/src/web/server.js.map +1 -0
- package/dist/src/web/websocket/websocket-manager.js +509 -0
- package/dist/src/web/websocket/websocket-manager.js.map +1 -0
- package/dist/src/workflows/feature-lifecycle-manager.js +386 -0
- package/dist/src/workflows/feature-lifecycle-manager.js.map +1 -0
- package/dist/src/workflows/fullstack-coordination-manager.js +801 -0
- package/dist/src/workflows/fullstack-coordination-manager.js.map +1 -0
- package/dist/src/workflows/iterative-development-orchestrator.js +1128 -0
- package/dist/src/workflows/iterative-development-orchestrator.js.map +1 -0
- package/dist/src/workflows/progressive-rollout-manager.js +710 -0
- package/dist/src/workflows/progressive-rollout-manager.js.map +1 -0
- package/package.json +264 -0
- package/scripts/README.md +339 -0
- package/scripts/post-install-claude-md.js +50 -0
- package/src/commands/dependency-recommendations.js +551 -0
- package/src/commands/suggest-improvements.js +492 -0
- package/src/commands/suggest-templates.js +916 -0
- package/src/npx/claude-md-protection.js +169 -0
- package/wiki/INDEX.md +264 -0
- package/wiki/NAVIGATION.md +270 -0
- package/wiki/README.md +101 -0
- package/wiki/accessibility/README.md +103 -0
- package/wiki/accessibility/assistive-tech/screen-reader-support.md +912 -0
- package/wiki/accessibility/automation/agent-testing-automation.md +880 -0
- package/wiki/accessibility/guidelines/wcag-compliance.md +278 -0
- package/wiki/accessibility/i18n/internationalization-strategies.md +1022 -0
- package/wiki/accessibility/motor-accessibility/keyboard-navigation.md +1182 -0
- package/wiki/accessibility/patterns/inclusive-design-patterns.md +715 -0
- package/wiki/accessibility/testing/automated-testing.md +665 -0
- package/wiki/accessibility/visual-design/color-contrast.md +926 -0
- package/wiki/accessibility/workflows/accessibility-first-development.md +916 -0
- package/wiki/accessibility/workflows/inclusive-design-review.md +835 -0
- package/wiki/api-reference/README.md +565 -0
- package/wiki/api-reference/agent-management-api.md +931 -0
- package/wiki/api-reference/cli-api.md +630 -0
- package/wiki/api-reference/configuration-api.md +1355 -0
- package/wiki/api-reference/examples-code-samples.md +2241 -0
- package/wiki/api-reference/hooks-coordination-api.md +1406 -0
- package/wiki/api-reference/mcp-tool-specifications.md +944 -0
- package/wiki/api-reference/plugin-development.md +1695 -0
- package/wiki/api-reference/technical-architecture.md +1729 -0
- package/wiki/command-reference/README.md +305 -0
- package/wiki/command-reference/agent-commands.md +571 -0
- package/wiki/command-reference/cli-commands.md +516 -0
- package/wiki/command-reference/command-syntax.md +676 -0
- package/wiki/command-reference/expert/README.md +616 -0
- package/wiki/command-reference/expert-tier.md +791 -0
- package/wiki/command-reference/intermediate/README.md +628 -0
- package/wiki/command-reference/intermediate-tier.md +1024 -0
- package/wiki/command-reference/mcp-integration.md +412 -0
- package/wiki/command-reference/mcp-tools/README.md +1743 -0
- package/wiki/command-reference/mcp-tools/dual-access-workflows.md +911 -0
- package/wiki/command-reference/mcp-tools/index.md +201 -0
- package/wiki/command-reference/mcp-tools/integration-patterns.md +830 -0
- package/wiki/command-reference/mcp-tools/quick-reference.md +383 -0
- package/wiki/command-reference/mcp-tools/session-management.md +1183 -0
- package/wiki/command-reference/mcp-tools/task-tool-integration.md +827 -0
- package/wiki/command-reference/novice/README.md +661 -0
- package/wiki/command-reference/novice-tier.md +1142 -0
- package/wiki/command-reference/progression-guide.md +772 -0
- package/wiki/command-reference/troubleshooting.md +803 -0
- package/wiki/command-reference/workflows.md +752 -0
- package/wiki/community/README.md +328 -0
- package/wiki/community/contributing/README.md +623 -0
- package/wiki/community/contributing/code-of-conduct.md +388 -0
- package/wiki/community/contributing/collaboration-workflows.md +1 -0
- package/wiki/community/contributing/issue-reporting.md +1 -0
- package/wiki/community/contributing/onboarding-guide.md +1 -0
- package/wiki/community/contributing/recognition-system.md +1 -0
- package/wiki/community/discussions/README.md +54 -0
- package/wiki/community/learning-resources.md +476 -0
- package/wiki/community/showcase/README.md +1 -0
- package/wiki/core-concepts/README.md +656 -0
- package/wiki/core-concepts/agent-feedback-hooks/README.md +298 -0
- package/wiki/core-concepts/agents/README.md +392 -0
- package/wiki/core-concepts/agents/agent-creation-guide.md +431 -0
- package/wiki/core-concepts/agents.md +301 -0
- package/wiki/core-concepts/architecture.md +227 -0
- package/wiki/core-concepts/hooks-lifecycle/README.md +543 -0
- package/wiki/core-concepts/integration.md +507 -0
- package/wiki/core-concepts/memory-system/README.md +521 -0
- package/wiki/core-concepts/performance.md +463 -0
- package/wiki/core-concepts/sparc-methodology/README.md +465 -0
- package/wiki/core-concepts/sparc-workflow.md +407 -0
- package/wiki/core-concepts/swarm-coordination/README.md +525 -0
- package/wiki/core-concepts/swarm-coordination.md +453 -0
- package/wiki/cost-optimization/enterprise-cost-management.md +1356 -0
- package/wiki/deployment/enterprise-deployment-patterns.md +1739 -0
- package/wiki/enterprise-architecture/enterprise-architecture-overview.md +348 -0
- package/wiki/enterprise-architecture/enterprise-scaling-patterns.md +1184 -0
- package/wiki/examples/README.md +288 -0
- package/wiki/examples/automation/cicd-pipeline/README.md +1265 -0
- package/wiki/examples/basic/hello-world/README.md +434 -0
- package/wiki/examples/basic-projects/README.md +427 -0
- package/wiki/examples/enterprise-integration/README.md +602 -0
- package/wiki/examples/integration-patterns.md +825 -0
- package/wiki/examples/legacy-migration/README.md +656 -0
- package/wiki/examples/multi-cloud/README.md +1071 -0
- package/wiki/examples/performance-benchmarks.md +729 -0
- package/wiki/examples/performance-optimization/README.md +1214 -0
- package/wiki/examples/projects/rest-api/README.md +845 -0
- package/wiki/examples/real-time-collaboration/README.md +1092 -0
- package/wiki/examples/scenarios/ecommerce/README.md +1273 -0
- package/wiki/examples/swarm-patterns.md +1026 -0
- package/wiki/examples/templates/download-system.md +993 -0
- package/wiki/examples/templates/javascript/README.md +487 -0
- package/wiki/examples/templates/javascript/package.json +119 -0
- package/wiki/examples/troubleshooting/README.md +1317 -0
- package/wiki/examples/utilities/patterns/README.md +1347 -0
- package/wiki/examples/videos/01-setup.md +403 -0
- package/wiki/examples/workflow-automation/README.md +1023 -0
- package/wiki/getting-started/README.md +398 -0
- package/wiki/getting-started/benefits.md +451 -0
- package/wiki/getting-started/claude-code-mcp/README.md +319 -0
- package/wiki/getting-started/claude-code-mcp/setup.md +431 -0
- package/wiki/getting-started/claude-code-mcp/usage-examples.md +501 -0
- package/wiki/getting-started/cli-access/README.md +300 -0
- package/wiki/getting-started/cli-access/first-commands.md +319 -0
- package/wiki/getting-started/installation/README.md +469 -0
- package/wiki/getting-started/installation/troubleshooting.md +617 -0
- package/wiki/getting-started/learning-path.md +494 -0
- package/wiki/getting-started/learning-plan-generator.md +434 -0
- package/wiki/getting-started/quick-start/README.md +255 -0
- package/wiki/getting-started/quick-start/cli-tutorial.md +680 -0
- package/wiki/getting-started/quick-start/mcp-tutorial.md +544 -0
- package/wiki/governance/multi-project-coordination.md +820 -0
- package/wiki/languages/README.md +349 -0
- package/wiki/languages/go/README.md +124 -0
- package/wiki/languages/go/examples/README.md +1066 -0
- package/wiki/languages/go/frameworks/README.md +708 -0
- package/wiki/languages/go/integration/README.md +748 -0
- package/wiki/languages/go/microservices/README.md +1185 -0
- package/wiki/languages/go/performance/README.md +1310 -0
- package/wiki/languages/go/setup/README.md +397 -0
- package/wiki/languages/go/systems/README.md +1116 -0
- package/wiki/languages/go/testing/README.md +999 -0
- package/wiki/languages/java/README.md +217 -0
- package/wiki/languages/java/claude-flow-integration.md +1220 -0
- package/wiki/languages/java/enterprise-java.md +1247 -0
- package/wiki/languages/java/examples.md +1712 -0
- package/wiki/languages/java/microservices.md +1600 -0
- package/wiki/languages/java/performance.md +1122 -0
- package/wiki/languages/java/project-setup.md +504 -0
- package/wiki/languages/java/spring-boot.md +756 -0
- package/wiki/languages/java/testing.md +1323 -0
- package/wiki/languages/javascript/README.md +575 -0
- package/wiki/languages/javascript/api/README.md +1445 -0
- package/wiki/languages/javascript/backend/README.md +748 -0
- package/wiki/languages/javascript/frontend/README.md +1048 -0
- package/wiki/languages/javascript/integration.md +1107 -0
- package/wiki/languages/javascript/setup/README.md +438 -0
- package/wiki/languages/javascript/testing/README.md +1775 -0
- package/wiki/languages/python/README.md +1002 -0
- package/wiki/languages/python/data-science/README.md +1317 -0
- package/wiki/languages/python/examples/README.md +911 -0
- package/wiki/languages/python/integration.md +1515 -0
- package/wiki/languages/python/mcp-integration.md +843 -0
- package/wiki/languages/python/setup/README.md +622 -0
- package/wiki/languages/python/testing/README.md +1680 -0
- package/wiki/languages/python/web-development/README.md +974 -0
- package/wiki/languages/rust/README.md +936 -0
- package/wiki/languages/rust/examples/cli-mcp-workflows.md +850 -0
- package/wiki/languages/rust/examples/rest-api.md +1927 -0
- package/wiki/languages/rust/setup/cargo-integration.md +780 -0
- package/wiki/languages/rust/testing/quality-validation.md +1098 -0
- package/wiki/languages/rust/web-development/axum.md +1497 -0
- package/wiki/languages/rust/workflows/systems-programming.md +1189 -0
- package/wiki/languages/typescript/README.md +581 -0
- package/wiki/languages/typescript/automation.md +1070 -0
- package/wiki/languages/typescript/coordination.md +971 -0
- package/wiki/languages/typescript/enterprise.md +1368 -0
- package/wiki/languages/typescript/frameworks.md +970 -0
- package/wiki/languages/typescript/migration.md +1384 -0
- package/wiki/languages/typescript/patterns.md +694 -0
- package/wiki/languages/typescript/performance.md +1195 -0
- package/wiki/languages/typescript/setup.md +516 -0
- package/wiki/languages/typescript/workflows.md +481 -0
- package/wiki/monitoring/enterprise-observability.md +1141 -0
- package/wiki/security/enterprise-security-framework.md +1174 -0
- package/wiki/team-coordination/team-scaling-strategies.md +1486 -0
- package/wiki/troubleshooting/README.md +654 -0
- package/wiki/troubleshooting/common-issues/README.md +659 -0
- package/wiki/troubleshooting/common-issues.md +458 -0
- package/wiki/troubleshooting/error-resolution.md +763 -0
- package/wiki/troubleshooting/performance-optimization.md +540 -0
- package/wiki/tutorials/README.md +607 -0
- package/wiki/tutorials/advanced/01-multi-agent-orchestration-patterns.md +585 -0
- package/wiki/tutorials/advanced/02-enterprise-architecture-development.md +661 -0
- package/wiki/tutorials/advanced/03-advanced-sparc-methodology.md +595 -0
- package/wiki/tutorials/advanced/04-performance-optimization-workflows.md +613 -0
- package/wiki/tutorials/advanced/05-custom-agent-development.md +681 -0
- package/wiki/tutorials/advanced/06-legacy-system-integration.md +574 -0
- package/wiki/tutorials/advanced/07-production-deployment-monitoring.md +684 -0
- package/wiki/tutorials/advanced/08-enterprise-scenarios.md +700 -0
- package/wiki/tutorials/advanced/README.md +577 -0
- package/wiki/tutorials/advanced/performance-optimization.md +476 -0
- package/wiki/tutorials/advanced/swarm-orchestration.md +627 -0
- package/wiki/tutorials/beginner/01-first-project.md +532 -0
- package/wiki/tutorials/beginner/02-basic-workflows.md +523 -0
- package/wiki/tutorials/beginner/03-simple-automation.md +641 -0
- package/wiki/tutorials/beginner/04-quality-testing.md +984 -0
- package/wiki/tutorials/beginner/README.md +388 -0
- package/wiki/tutorials/exercises/ecommerce-platform.md +1370 -0
- package/wiki/tutorials/intermediate/01-multi-agent-teams.md +961 -0
- package/wiki/tutorials/intermediate/README.md +452 -0
- package/wiki/tutorials/intermediate/optimization.md +402 -0
- package/wiki/tutorials/skill-assessment.md +522 -0
- package/wiki/tutorials/skill-competency-matrix.md +548 -0
- package/wiki/tutorials/troubleshooting/command-cheatsheet.md +425 -0
- package/wiki/tutorials/troubleshooting/setup-issues.md +717 -0
- package/wiki/video-tutorials/README.md +202 -0
- package/wiki/video-tutorials/accessibility/README.md +1349 -0
- package/wiki/video-tutorials/community/README.md +1366 -0
- package/wiki/video-tutorials/content-organization/README.md +1295 -0
- package/wiki/video-tutorials/distribution/README.md +1093 -0
- package/wiki/video-tutorials/editing/README.md +751 -0
- package/wiki/video-tutorials/interactive/README.md +1151 -0
- package/wiki/video-tutorials/multi-language/README.md +1384 -0
- package/wiki/video-tutorials/planning/README.md +461 -0
- package/wiki/video-tutorials/recording/README.md +619 -0
- package/wiki/video-tutorials/technical-specs/README.md +1018 -0
|
@@ -0,0 +1,1349 @@
|
|
|
1
|
+
# Accessibility Considerations for Video Content
|
|
2
|
+
|
|
3
|
+
**Comprehensive guide to creating inclusive video tutorials that are accessible to all learners, regardless of abilities or assistive technologies.**
|
|
4
|
+
|
|
5
|
+
## 🌍 Accessibility Overview
|
|
6
|
+
|
|
7
|
+
Accessible video content ensures that all learners can effectively engage with tutorials. This guide covers WCAG 2.1 compliance, assistive technology support, and inclusive design principles for video-based learning materials.
|
|
8
|
+
|
|
9
|
+
## 📋 Legal and Standards Framework
|
|
10
|
+
|
|
11
|
+
### Compliance Requirements
|
|
12
|
+
|
|
13
|
+
#### 📜 WCAG 2.1 Guidelines
|
|
14
|
+
```markdown
|
|
15
|
+
**Level AA Compliance (Required):**
|
|
16
|
+
|
|
17
|
+
**Perceivable:**
|
|
18
|
+
- ✅ Text alternatives for all visual content
|
|
19
|
+
- ✅ Captions for all audio content
|
|
20
|
+
- ✅ Audio descriptions for visual information
|
|
21
|
+
- ✅ Color contrast ratio of at least 4.5:1
|
|
22
|
+
- ✅ Text can be resized up to 200% without loss of functionality
|
|
23
|
+
|
|
24
|
+
**Operable:**
|
|
25
|
+
- ✅ All functionality available via keyboard
|
|
26
|
+
- ✅ No content that causes seizures or physical reactions
|
|
27
|
+
- ✅ Users can pause, stop, or hide moving content
|
|
28
|
+
- ✅ Users have enough time to read and use content
|
|
29
|
+
|
|
30
|
+
**Understandable:**
|
|
31
|
+
- ✅ Text is readable and understandable
|
|
32
|
+
- ✅ Content appears and operates in predictable ways
|
|
33
|
+
- ✅ Users are helped to avoid and correct mistakes
|
|
34
|
+
|
|
35
|
+
**Robust:**
|
|
36
|
+
- ✅ Content can be interpreted by assistive technologies
|
|
37
|
+
- ✅ Content remains accessible as technologies advance
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
#### 🌎 International Standards
|
|
41
|
+
```markdown
|
|
42
|
+
**Section 508 (US Federal)**
|
|
43
|
+
- Video and multimedia content must be accessible
|
|
44
|
+
- Captions required for all audio content
|
|
45
|
+
- Audio descriptions for visual content
|
|
46
|
+
- Keyboard navigation for all interactive elements
|
|
47
|
+
|
|
48
|
+
**EN 301 549 (European)**
|
|
49
|
+
- Aligned with WCAG 2.1 Level AA
|
|
50
|
+
- Additional requirements for public sector
|
|
51
|
+
- Mobile accessibility considerations
|
|
52
|
+
|
|
53
|
+
**AODA (Ontario, Canada)**
|
|
54
|
+
- Level AA compliance for public organizations
|
|
55
|
+
- Enhanced requirements for educational content
|
|
56
|
+
- Regular accessibility audits required
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Assistive Technology Support
|
|
60
|
+
|
|
61
|
+
#### 🔊 Screen Readers
|
|
62
|
+
```markdown
|
|
63
|
+
**Supported Technologies:**
|
|
64
|
+
- **NVDA** (Windows, Free): Most common screen reader
|
|
65
|
+
- **JAWS** (Windows, Commercial): Professional screen reader
|
|
66
|
+
- **VoiceOver** (macOS/iOS): Built-in Apple screen reader
|
|
67
|
+
- **TalkBack** (Android): Built-in Android screen reader
|
|
68
|
+
- **Orca** (Linux): Open source screen reader
|
|
69
|
+
|
|
70
|
+
**Optimization Techniques:**
|
|
71
|
+
- Provide comprehensive audio descriptions
|
|
72
|
+
- Use semantic HTML structure
|
|
73
|
+
- Include detailed alternative text
|
|
74
|
+
- Ensure logical reading order
|
|
75
|
+
- Test with actual screen reader users
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
#### 🎵 Audio Enhancement
|
|
79
|
+
```markdown
|
|
80
|
+
**Hearing Assistance:**
|
|
81
|
+
- **Hearing Aids**: Compatible audio frequencies
|
|
82
|
+
- **Cochlear Implants**: Clear speech, minimal background noise
|
|
83
|
+
- **Assistive Listening Devices**: Audio amplification
|
|
84
|
+
- **Bone Conduction**: Alternative audio delivery
|
|
85
|
+
|
|
86
|
+
**Technical Requirements:**
|
|
87
|
+
- High-quality audio (48kHz, 16-bit minimum)
|
|
88
|
+
- Clear speech without compression artifacts
|
|
89
|
+
- Minimal background noise (-50dB noise floor)
|
|
90
|
+
- Frequency range optimized for speech (300-3400Hz)
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## 💬 Caption and Subtitle Standards
|
|
94
|
+
|
|
95
|
+
### Caption Creation Process
|
|
96
|
+
|
|
97
|
+
#### 🔍 Manual Captioning (Recommended)
|
|
98
|
+
```markdown
|
|
99
|
+
**Professional Captioning Workflow:**
|
|
100
|
+
|
|
101
|
+
1. **Transcription Phase:**
|
|
102
|
+
- Verbatim transcript of all spoken content
|
|
103
|
+
- Include speaker identification
|
|
104
|
+
- Note important sound effects
|
|
105
|
+
- Mark music and background audio
|
|
106
|
+
|
|
107
|
+
2. **Caption Timing:**
|
|
108
|
+
- Maximum 2 lines per caption
|
|
109
|
+
- 32-42 characters per line optimal
|
|
110
|
+
- Display for 1-6 seconds per caption
|
|
111
|
+
- Sync within 100ms of audio
|
|
112
|
+
|
|
113
|
+
3. **Caption Formatting:**
|
|
114
|
+
```vtt
|
|
115
|
+
WEBVTT
|
|
116
|
+
|
|
117
|
+
00:00:00.000 --> 00:00:03.500
|
|
118
|
+
Welcome to claude-flow tutorial series.
|
|
119
|
+
|
|
120
|
+
00:00:03.500 --> 00:00:07.200
|
|
121
|
+
Today we'll learn how to set up
|
|
122
|
+
your first development environment.
|
|
123
|
+
|
|
124
|
+
00:00:07.200 --> 00:00:09.800
|
|
125
|
+
[TYPING SOUNDS]
|
|
126
|
+
|
|
127
|
+
00:00:09.800 --> 00:00:13.100
|
|
128
|
+
Let's start by opening our terminal.
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
4. **Quality Assurance:**
|
|
132
|
+
- Review for accuracy and timing
|
|
133
|
+
- Test with actual video content
|
|
134
|
+
- Verify readability at different speeds
|
|
135
|
+
- Check for cultural sensitivity
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
#### 🤖 Automated Captioning Tools
|
|
139
|
+
```markdown
|
|
140
|
+
**AI-Powered Solutions:**
|
|
141
|
+
|
|
142
|
+
**YouTube Auto-Captions:**
|
|
143
|
+
- Accuracy: 85-95% for clear English speech
|
|
144
|
+
- Supports 13+ languages
|
|
145
|
+
- Requires manual review and correction
|
|
146
|
+
- Free but limited customization
|
|
147
|
+
|
|
148
|
+
**Rev.ai API:**
|
|
149
|
+
```javascript
|
|
150
|
+
// Rev.ai automatic captioning integration
|
|
151
|
+
const RevAI = require('revai-node-sdk');
|
|
152
|
+
|
|
153
|
+
const client = new RevAI.RevAIApiClient('your-api-token');
|
|
154
|
+
|
|
155
|
+
const submitJob = async (audioUrl) => {
|
|
156
|
+
const job = await client.submitJobUrl(audioUrl, {
|
|
157
|
+
source_config: {
|
|
158
|
+
url: audioUrl
|
|
159
|
+
},
|
|
160
|
+
options: {
|
|
161
|
+
language: 'en',
|
|
162
|
+
speaker_channels_count: 1,
|
|
163
|
+
custom_vocabularies: [{
|
|
164
|
+
phrases: ['claude-flow', 'MCP server', 'swarm coordination']
|
|
165
|
+
}]
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
return job.id;
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
const getCaptions = async (jobId) => {
|
|
172
|
+
const transcript = await client.getTranscriptObject(jobId);
|
|
173
|
+
return convertToWebVTT(transcript);
|
|
174
|
+
};
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
**Otter.ai:**
|
|
178
|
+
- Real-time transcription
|
|
179
|
+
- Speaker identification
|
|
180
|
+
- Custom vocabulary support
|
|
181
|
+
- Integration with popular platforms
|
|
182
|
+
|
|
183
|
+
**Assembly AI:**
|
|
184
|
+
- High accuracy speech recognition
|
|
185
|
+
- Automatic punctuation
|
|
186
|
+
- Custom language models
|
|
187
|
+
- Bulk processing capabilities
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
#### 🌍 Multi-Language Captions
|
|
191
|
+
```markdown
|
|
192
|
+
**Translation Workflow:**
|
|
193
|
+
|
|
194
|
+
1. **Primary Language Captions** (English)
|
|
195
|
+
- Create accurate, well-timed captions
|
|
196
|
+
- Include cultural context notes
|
|
197
|
+
- Review for technical terminology
|
|
198
|
+
|
|
199
|
+
2. **Professional Translation**
|
|
200
|
+
- Use qualified technical translators
|
|
201
|
+
- Maintain technical accuracy
|
|
202
|
+
- Consider cultural adaptation
|
|
203
|
+
- Review by native speakers
|
|
204
|
+
|
|
205
|
+
3. **Localization Considerations:**
|
|
206
|
+
```vtt
|
|
207
|
+
WEBVTT
|
|
208
|
+
NOTE Translation: Spanish (Mexico)
|
|
209
|
+
NOTE Translator: Maria Rodriguez, Certified Technical Translator
|
|
210
|
+
NOTE Review Date: 2024-09-26
|
|
211
|
+
|
|
212
|
+
00:00:00.000 --> 00:00:03.500
|
|
213
|
+
Bienvenidos a la serie de tutoriales de claude-flow.
|
|
214
|
+
|
|
215
|
+
00:00:03.500 --> 00:00:07.200
|
|
216
|
+
Hoy aprenderemos cómo configurar
|
|
217
|
+
su primer entorno de desarrollo.
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
4. **Quality Assurance:**
|
|
221
|
+
- Native speaker review
|
|
222
|
+
- Technical accuracy verification
|
|
223
|
+
- Cultural appropriateness check
|
|
224
|
+
- Timing adjustment for language differences
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
### Audio Description Implementation
|
|
228
|
+
|
|
229
|
+
#### 🎨 Visual Information Narration
|
|
230
|
+
```markdown
|
|
231
|
+
**Audio Description Standards:**
|
|
232
|
+
|
|
233
|
+
**What to Describe:**
|
|
234
|
+
- Actions happening on screen
|
|
235
|
+
- Visual elements crucial to understanding
|
|
236
|
+
- Text that appears (if not read aloud)
|
|
237
|
+
- Visual feedback and system responses
|
|
238
|
+
- Charts, graphs, and diagrams
|
|
239
|
+
- Speaker appearance and gestures (if relevant)
|
|
240
|
+
|
|
241
|
+
**Audio Description Script Example:**
|
|
242
|
+
```
|
|
243
|
+
Narrator: "The instructor opens a terminal window with a black background."
|
|
244
|
+
[Pause for typing sounds]
|
|
245
|
+
Narrator: "A command prompt appears with a dollar sign."
|
|
246
|
+
Instructor: "Now let's install claude-flow by typing npm install..."
|
|
247
|
+
Narrator: "Green text appears showing successful installation."
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
**Technical Implementation:**
|
|
251
|
+
```javascript
|
|
252
|
+
// Extended audio track with descriptions
|
|
253
|
+
const audioDescriptionTrack = {
|
|
254
|
+
src: 'tutorial-with-descriptions.mp3',
|
|
255
|
+
kind: 'descriptions',
|
|
256
|
+
srclang: 'en',
|
|
257
|
+
label: 'English Audio Descriptions'
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
// Video.js implementation
|
|
261
|
+
player.addRemoteTextTrack(audioDescriptionTrack, false);
|
|
262
|
+
```
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
#### 🔊 Extended Audio Implementation
|
|
266
|
+
```html
|
|
267
|
+
<!-- HTML5 video with audio description track -->
|
|
268
|
+
<video controls width="800" height="450">
|
|
269
|
+
<source src="tutorial.mp4" type="video/mp4">
|
|
270
|
+
|
|
271
|
+
<!-- Standard audio -->
|
|
272
|
+
<track kind="captions" src="captions-en.vtt" srclang="en" label="English" default>
|
|
273
|
+
|
|
274
|
+
<!-- Audio descriptions -->
|
|
275
|
+
<track kind="descriptions" src="descriptions-en.vtt" srclang="en" label="Audio Descriptions">
|
|
276
|
+
|
|
277
|
+
<!-- Multiple languages -->
|
|
278
|
+
<track kind="captions" src="captions-es.vtt" srclang="es" label="Español">
|
|
279
|
+
<track kind="descriptions" src="descriptions-es.vtt" srclang="es" label="Descripciones en Español">
|
|
280
|
+
|
|
281
|
+
Your browser does not support the video tag.
|
|
282
|
+
</video>
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
## 🎨 Visual Accessibility Design
|
|
286
|
+
|
|
287
|
+
### Color and Contrast
|
|
288
|
+
|
|
289
|
+
#### 🌈 Color Accessibility Standards
|
|
290
|
+
```css
|
|
291
|
+
/* WCAG 2.1 AA compliant color schemes */
|
|
292
|
+
:root {
|
|
293
|
+
/* High contrast color palette */
|
|
294
|
+
--primary-bg: #ffffff; /* Background white */
|
|
295
|
+
--primary-text: #212121; /* Text dark gray (15.8:1 ratio) */
|
|
296
|
+
--secondary-text: #757575; /* Secondary gray (4.6:1 ratio) */
|
|
297
|
+
--accent-color: #1976d2; /* Blue (4.5:1 ratio) */
|
|
298
|
+
--success-color: #388e3c; /* Green (4.5:1 ratio) */
|
|
299
|
+
--warning-color: #f57c00; /* Orange (4.5:1 ratio) */
|
|
300
|
+
--error-color: #d32f2f; /* Red (4.5:1 ratio) */
|
|
301
|
+
|
|
302
|
+
/* Dark mode alternatives */
|
|
303
|
+
--dark-bg: #121212;
|
|
304
|
+
--dark-text: #ffffff;
|
|
305
|
+
--dark-secondary: #b3b3b3;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* Ensure sufficient contrast for all interactive elements */
|
|
309
|
+
.video-controls button {
|
|
310
|
+
background-color: var(--primary-text);
|
|
311
|
+
color: var(--primary-bg);
|
|
312
|
+
border: 2px solid transparent;
|
|
313
|
+
min-height: 44px; /* Touch target size */
|
|
314
|
+
min-width: 44px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.video-controls button:focus {
|
|
318
|
+
outline: 3px solid var(--accent-color);
|
|
319
|
+
outline-offset: 2px;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/* Color-blind friendly indicators */
|
|
323
|
+
.status-indicator {
|
|
324
|
+
display: inline-flex;
|
|
325
|
+
align-items: center;
|
|
326
|
+
gap: 8px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.status-indicator::before {
|
|
330
|
+
content: '';
|
|
331
|
+
width: 12px;
|
|
332
|
+
height: 12px;
|
|
333
|
+
border-radius: 50%;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.status-success::before {
|
|
337
|
+
background-color: var(--success-color);
|
|
338
|
+
/* Add pattern for color-blind users */
|
|
339
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M2 6l3 3 5-5" stroke="white" stroke-width="2" fill="none"/></svg>');
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.status-error::before {
|
|
343
|
+
background-color: var(--error-color);
|
|
344
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M3 3l6 6M9 3l-6 6" stroke="white" stroke-width="2"/></svg>');
|
|
345
|
+
}
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
#### 🔍 Contrast Testing Tools
|
|
349
|
+
```javascript
|
|
350
|
+
// Automated contrast checking
|
|
351
|
+
const ContrastChecker = {
|
|
352
|
+
// Calculate contrast ratio between two colors
|
|
353
|
+
getContrastRatio: (color1, color2) => {
|
|
354
|
+
const luminance1 = ContrastChecker.getLuminance(color1);
|
|
355
|
+
const luminance2 = ContrastChecker.getLuminance(color2);
|
|
356
|
+
|
|
357
|
+
const lighter = Math.max(luminance1, luminance2);
|
|
358
|
+
const darker = Math.min(luminance1, luminance2);
|
|
359
|
+
|
|
360
|
+
return (lighter + 0.05) / (darker + 0.05);
|
|
361
|
+
},
|
|
362
|
+
|
|
363
|
+
// Get relative luminance of a color
|
|
364
|
+
getLuminance: (color) => {
|
|
365
|
+
const rgb = ContrastChecker.hexToRgb(color);
|
|
366
|
+
const [r, g, b] = rgb.map(c => {
|
|
367
|
+
c = c / 255;
|
|
368
|
+
return c <= 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
|
|
369
|
+
});
|
|
370
|
+
|
|
371
|
+
return 0.2126 * r + 0.7152 * g + 0.0722 * b;
|
|
372
|
+
},
|
|
373
|
+
|
|
374
|
+
// Check if color combination meets WCAG standards
|
|
375
|
+
checkWCAGCompliance: (foreground, background) => {
|
|
376
|
+
const ratio = ContrastChecker.getContrastRatio(foreground, background);
|
|
377
|
+
|
|
378
|
+
return {
|
|
379
|
+
ratio: ratio.toFixed(2),
|
|
380
|
+
AA: ratio >= 4.5,
|
|
381
|
+
AAA: ratio >= 7,
|
|
382
|
+
largeTextAA: ratio >= 3,
|
|
383
|
+
largeTextAAA: ratio >= 4.5
|
|
384
|
+
};
|
|
385
|
+
}
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
// Usage in video player UI
|
|
389
|
+
const playerColors = {
|
|
390
|
+
background: '#ffffff',
|
|
391
|
+
text: '#212121',
|
|
392
|
+
buttons: '#1976d2'
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
const compliance = ContrastChecker.checkWCAGCompliance(
|
|
396
|
+
playerColors.text,
|
|
397
|
+
playerColors.background
|
|
398
|
+
);
|
|
399
|
+
|
|
400
|
+
console.log('Text contrast compliance:', compliance);
|
|
401
|
+
// Output: { ratio: '15.80', AA: true, AAA: true, largeTextAA: true, largeTextAAA: true }
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
### Typography and Readability
|
|
405
|
+
|
|
406
|
+
#### 🔤 Font and Text Standards
|
|
407
|
+
```css
|
|
408
|
+
/* Accessible typography for video overlays */
|
|
409
|
+
.video-overlay-text {
|
|
410
|
+
/* Font selection */
|
|
411
|
+
font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
|
|
412
|
+
|
|
413
|
+
/* Size and spacing */
|
|
414
|
+
font-size: clamp(16px, 2.5vw, 24px); /* Responsive, minimum 16px */
|
|
415
|
+
line-height: 1.5; /* Improved readability */
|
|
416
|
+
letter-spacing: 0.025em; /* Slight spacing for clarity */
|
|
417
|
+
|
|
418
|
+
/* Color and contrast */
|
|
419
|
+
color: var(--primary-text);
|
|
420
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
421
|
+
|
|
422
|
+
/* Visual enhancement */
|
|
423
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
424
|
+
padding: 12px 16px;
|
|
425
|
+
border-radius: 8px;
|
|
426
|
+
|
|
427
|
+
/* Prevent text selection issues */
|
|
428
|
+
user-select: text;
|
|
429
|
+
-webkit-user-select: text;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
/* Ensure readability at different zoom levels */
|
|
433
|
+
@media (min-resolution: 2dppx) {
|
|
434
|
+
.video-overlay-text {
|
|
435
|
+
font-weight: 400; /* Slightly bolder on high-DPI displays */
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/* Support for user font size preferences */
|
|
440
|
+
@media (prefers-reduced-data: reduce) {
|
|
441
|
+
.video-overlay-text {
|
|
442
|
+
font-family: system-ui, sans-serif; /* Use system fonts */
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/* Dyslexia-friendly alternative */
|
|
447
|
+
.video-overlay-text.dyslexia-friendly {
|
|
448
|
+
font-family: 'OpenDyslexic', 'Comic Sans MS', cursive;
|
|
449
|
+
font-size: 1.1em; /* Slightly larger */
|
|
450
|
+
line-height: 1.6; /* More spacing */
|
|
451
|
+
letter-spacing: 0.05em; /* Increased character spacing */
|
|
452
|
+
}
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
#### 📱 Responsive Text Scaling
|
|
456
|
+
```javascript
|
|
457
|
+
// User font size preference detection and implementation
|
|
458
|
+
class AccessibleTextScaling {
|
|
459
|
+
constructor() {
|
|
460
|
+
this.baseSize = 16; // Default base font size
|
|
461
|
+
this.userPreference = this.detectUserFontSize();
|
|
462
|
+
this.scaleFactor = this.userPreference / this.baseSize;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
detectUserFontSize() {
|
|
466
|
+
// Create temporary element to measure user's preferred font size
|
|
467
|
+
const testElement = document.createElement('div');
|
|
468
|
+
testElement.style.cssText = `
|
|
469
|
+
position: absolute;
|
|
470
|
+
visibility: hidden;
|
|
471
|
+
font-size: 1rem;
|
|
472
|
+
line-height: 1;
|
|
473
|
+
`;
|
|
474
|
+
testElement.textContent = 'M';
|
|
475
|
+
|
|
476
|
+
document.body.appendChild(testElement);
|
|
477
|
+
const computedSize = parseFloat(getComputedStyle(testElement).fontSize);
|
|
478
|
+
document.body.removeChild(testElement);
|
|
479
|
+
|
|
480
|
+
return computedSize;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
applyScaling() {
|
|
484
|
+
const videoOverlays = document.querySelectorAll('.video-overlay-text');
|
|
485
|
+
|
|
486
|
+
videoOverlays.forEach(overlay => {
|
|
487
|
+
const currentSize = parseFloat(getComputedStyle(overlay).fontSize);
|
|
488
|
+
const newSize = currentSize * this.scaleFactor;
|
|
489
|
+
overlay.style.fontSize = `${newSize}px`;
|
|
490
|
+
});
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
// Respond to user zoom changes
|
|
494
|
+
handleZoomChange() {
|
|
495
|
+
window.addEventListener('resize', () => {
|
|
496
|
+
// Reapply scaling when window is resized (often indicates zoom change)
|
|
497
|
+
this.applyScaling();
|
|
498
|
+
});
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
// Initialize accessible text scaling
|
|
503
|
+
const textScaling = new AccessibleTextScaling();
|
|
504
|
+
textScaling.applyScaling();
|
|
505
|
+
textScaling.handleZoomChange();
|
|
506
|
+
```
|
|
507
|
+
|
|
508
|
+
## ⌨️ Keyboard Navigation
|
|
509
|
+
|
|
510
|
+
### Video Player Controls
|
|
511
|
+
|
|
512
|
+
#### 🎮 Keyboard Shortcuts Implementation
|
|
513
|
+
```javascript
|
|
514
|
+
// Comprehensive keyboard navigation for video players
|
|
515
|
+
class AccessibleVideoPlayer {
|
|
516
|
+
constructor(videoElement) {
|
|
517
|
+
this.video = videoElement;
|
|
518
|
+
this.isFullscreen = false;
|
|
519
|
+
this.setupKeyboardControls();
|
|
520
|
+
this.setupFocusManagement();
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
setupKeyboardControls() {
|
|
524
|
+
this.video.addEventListener('keydown', (event) => {
|
|
525
|
+
// Prevent default browser behavior for our custom shortcuts
|
|
526
|
+
const handledKeys = [
|
|
527
|
+
'Space', 'ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown',
|
|
528
|
+
'KeyM', 'KeyF', 'KeyC', 'Escape', 'Home', 'End'
|
|
529
|
+
];
|
|
530
|
+
|
|
531
|
+
if (handledKeys.includes(event.code)) {
|
|
532
|
+
event.preventDefault();
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
switch (event.code) {
|
|
536
|
+
case 'Space':
|
|
537
|
+
this.togglePlayPause();
|
|
538
|
+
break;
|
|
539
|
+
case 'ArrowLeft':
|
|
540
|
+
this.seek(-5); // Seek backward 5 seconds
|
|
541
|
+
break;
|
|
542
|
+
case 'ArrowRight':
|
|
543
|
+
this.seek(5); // Seek forward 5 seconds
|
|
544
|
+
break;
|
|
545
|
+
case 'ArrowUp':
|
|
546
|
+
this.adjustVolume(0.1); // Increase volume 10%
|
|
547
|
+
break;
|
|
548
|
+
case 'ArrowDown':
|
|
549
|
+
this.adjustVolume(-0.1); // Decrease volume 10%
|
|
550
|
+
break;
|
|
551
|
+
case 'KeyM':
|
|
552
|
+
this.toggleMute();
|
|
553
|
+
break;
|
|
554
|
+
case 'KeyF':
|
|
555
|
+
this.toggleFullscreen();
|
|
556
|
+
break;
|
|
557
|
+
case 'KeyC':
|
|
558
|
+
this.toggleCaptions();
|
|
559
|
+
break;
|
|
560
|
+
case 'Home':
|
|
561
|
+
this.seek(0); // Go to beginning
|
|
562
|
+
break;
|
|
563
|
+
case 'End':
|
|
564
|
+
this.seek(this.video.duration); // Go to end
|
|
565
|
+
break;
|
|
566
|
+
case 'Escape':
|
|
567
|
+
if (this.isFullscreen) {
|
|
568
|
+
this.exitFullscreen();
|
|
569
|
+
}
|
|
570
|
+
break;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
// Announce action to screen readers
|
|
574
|
+
this.announceAction(event.code);
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
setupFocusManagement() {
|
|
579
|
+
// Ensure video player is focusable
|
|
580
|
+
this.video.setAttribute('tabindex', '0');
|
|
581
|
+
|
|
582
|
+
// Create focus indicator
|
|
583
|
+
this.video.addEventListener('focus', () => {
|
|
584
|
+
this.video.style.outline = '3px solid #1976d2';
|
|
585
|
+
this.video.style.outlineOffset = '2px';
|
|
586
|
+
});
|
|
587
|
+
|
|
588
|
+
this.video.addEventListener('blur', () => {
|
|
589
|
+
this.video.style.outline = 'none';
|
|
590
|
+
});
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
announceAction(keyCode) {
|
|
594
|
+
const announcements = {
|
|
595
|
+
'Space': this.video.paused ? 'Video paused' : 'Video playing',
|
|
596
|
+
'ArrowLeft': 'Seeking backward 5 seconds',
|
|
597
|
+
'ArrowRight': 'Seeking forward 5 seconds',
|
|
598
|
+
'ArrowUp': 'Volume increased',
|
|
599
|
+
'ArrowDown': 'Volume decreased',
|
|
600
|
+
'KeyM': this.video.muted ? 'Audio muted' : 'Audio unmuted',
|
|
601
|
+
'KeyF': 'Toggling fullscreen',
|
|
602
|
+
'KeyC': 'Toggling captions'
|
|
603
|
+
};
|
|
604
|
+
|
|
605
|
+
const message = announcements[keyCode];
|
|
606
|
+
if (message) {
|
|
607
|
+
this.announceToScreenReader(message);
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
announceToScreenReader(message) {
|
|
612
|
+
const announcement = document.createElement('div');
|
|
613
|
+
announcement.setAttribute('aria-live', 'polite');
|
|
614
|
+
announcement.setAttribute('aria-atomic', 'true');
|
|
615
|
+
announcement.style.cssText = `
|
|
616
|
+
position: absolute;
|
|
617
|
+
left: -10000px;
|
|
618
|
+
width: 1px;
|
|
619
|
+
height: 1px;
|
|
620
|
+
overflow: hidden;
|
|
621
|
+
`;
|
|
622
|
+
announcement.textContent = message;
|
|
623
|
+
|
|
624
|
+
document.body.appendChild(announcement);
|
|
625
|
+
|
|
626
|
+
// Remove after announcement
|
|
627
|
+
setTimeout(() => {
|
|
628
|
+
document.body.removeChild(announcement);
|
|
629
|
+
}, 1000);
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
// Initialize accessible video player
|
|
634
|
+
document.querySelectorAll('video').forEach(video => {
|
|
635
|
+
new AccessibleVideoPlayer(video);
|
|
636
|
+
});
|
|
637
|
+
```
|
|
638
|
+
|
|
639
|
+
#### 🗺️ Interactive Element Navigation
|
|
640
|
+
```html
|
|
641
|
+
<!-- Accessible video player controls -->
|
|
642
|
+
<div class="video-player-container" role="application" aria-label="Video Tutorial Player">
|
|
643
|
+
<video
|
|
644
|
+
id="tutorial-video"
|
|
645
|
+
tabindex="0"
|
|
646
|
+
aria-describedby="video-description"
|
|
647
|
+
controls
|
|
648
|
+
>
|
|
649
|
+
<source src="tutorial.mp4" type="video/mp4">
|
|
650
|
+
<track kind="captions" src="captions.vtt" srclang="en" label="English" default>
|
|
651
|
+
</video>
|
|
652
|
+
|
|
653
|
+
<div id="video-description" class="sr-only">
|
|
654
|
+
Tutorial video: Setting up claude-flow development environment.
|
|
655
|
+
Use space to play/pause, arrow keys to seek and adjust volume,
|
|
656
|
+
M to mute, F for fullscreen, C for captions.
|
|
657
|
+
</div>
|
|
658
|
+
|
|
659
|
+
<!-- Custom accessible controls -->
|
|
660
|
+
<div class="video-controls" role="toolbar" aria-label="Video controls">
|
|
661
|
+
<button
|
|
662
|
+
type="button"
|
|
663
|
+
class="play-pause-btn"
|
|
664
|
+
aria-label="Play video"
|
|
665
|
+
aria-pressed="false"
|
|
666
|
+
>
|
|
667
|
+
<span class="sr-only">Play</span>
|
|
668
|
+
<svg aria-hidden="true" focusable="false">
|
|
669
|
+
<!-- Play icon -->
|
|
670
|
+
</svg>
|
|
671
|
+
</button>
|
|
672
|
+
|
|
673
|
+
<div class="time-display" aria-label="Video time">
|
|
674
|
+
<span id="current-time">0:00</span>
|
|
675
|
+
<span aria-hidden="true">/</span>
|
|
676
|
+
<span id="duration">10:30</span>
|
|
677
|
+
</div>
|
|
678
|
+
|
|
679
|
+
<div class="progress-container" role="slider"
|
|
680
|
+
aria-label="Video progress"
|
|
681
|
+
aria-valuemin="0"
|
|
682
|
+
aria-valuemax="630"
|
|
683
|
+
aria-valuenow="0"
|
|
684
|
+
tabindex="0">
|
|
685
|
+
<div class="progress-bar">
|
|
686
|
+
<div class="progress-fill"></div>
|
|
687
|
+
<div class="progress-handle" aria-hidden="true"></div>
|
|
688
|
+
</div>
|
|
689
|
+
</div>
|
|
690
|
+
|
|
691
|
+
<button
|
|
692
|
+
type="button"
|
|
693
|
+
class="volume-btn"
|
|
694
|
+
aria-label="Mute audio"
|
|
695
|
+
aria-pressed="false"
|
|
696
|
+
>
|
|
697
|
+
<span class="sr-only">Volume</span>
|
|
698
|
+
<svg aria-hidden="true" focusable="false">
|
|
699
|
+
<!-- Volume icon -->
|
|
700
|
+
</svg>
|
|
701
|
+
</button>
|
|
702
|
+
|
|
703
|
+
<button
|
|
704
|
+
type="button"
|
|
705
|
+
class="captions-btn"
|
|
706
|
+
aria-label="Toggle captions"
|
|
707
|
+
aria-pressed="false"
|
|
708
|
+
>
|
|
709
|
+
<span class="sr-only">Captions</span>
|
|
710
|
+
<svg aria-hidden="true" focusable="false">
|
|
711
|
+
<!-- Captions icon -->
|
|
712
|
+
</svg>
|
|
713
|
+
</button>
|
|
714
|
+
|
|
715
|
+
<button
|
|
716
|
+
type="button"
|
|
717
|
+
class="fullscreen-btn"
|
|
718
|
+
aria-label="Enter fullscreen"
|
|
719
|
+
>
|
|
720
|
+
<span class="sr-only">Fullscreen</span>
|
|
721
|
+
<svg aria-hidden="true" focusable="false">
|
|
722
|
+
<!-- Fullscreen icon -->
|
|
723
|
+
</svg>
|
|
724
|
+
</button>
|
|
725
|
+
</div>
|
|
726
|
+
|
|
727
|
+
<!-- Chapter navigation -->
|
|
728
|
+
<nav class="chapter-navigation" aria-label="Video chapters">
|
|
729
|
+
<ol>
|
|
730
|
+
<li>
|
|
731
|
+
<button type="button" class="chapter-btn" data-time="0">
|
|
732
|
+
<span class="chapter-title">Introduction</span>
|
|
733
|
+
<span class="chapter-time">0:00</span>
|
|
734
|
+
</button>
|
|
735
|
+
</li>
|
|
736
|
+
<li>
|
|
737
|
+
<button type="button" class="chapter-btn" data-time="120">
|
|
738
|
+
<span class="chapter-title">Installation</span>
|
|
739
|
+
<span class="chapter-time">2:00</span>
|
|
740
|
+
</button>
|
|
741
|
+
</li>
|
|
742
|
+
<li>
|
|
743
|
+
<button type="button" class="chapter-btn" data-time="300">
|
|
744
|
+
<span class="chapter-title">Configuration</span>
|
|
745
|
+
<span class="chapter-time">5:00</span>
|
|
746
|
+
</button>
|
|
747
|
+
</li>
|
|
748
|
+
</ol>
|
|
749
|
+
</nav>
|
|
750
|
+
</div>
|
|
751
|
+
```
|
|
752
|
+
|
|
753
|
+
## 📏 Screen Reader Optimization
|
|
754
|
+
|
|
755
|
+
### Content Structure and Semantics
|
|
756
|
+
|
|
757
|
+
#### 🏧 Semantic HTML Structure
|
|
758
|
+
```html
|
|
759
|
+
<!-- Properly structured tutorial page -->
|
|
760
|
+
<!DOCTYPE html>
|
|
761
|
+
<html lang="en">
|
|
762
|
+
<head>
|
|
763
|
+
<meta charset="UTF-8">
|
|
764
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
765
|
+
<title>Claude Flow Setup Tutorial - Video Learning Series</title>
|
|
766
|
+
|
|
767
|
+
<!-- Skip navigation for screen readers -->
|
|
768
|
+
<a href="#main-content" class="skip-link">Skip to main content</a>
|
|
769
|
+
</head>
|
|
770
|
+
<body>
|
|
771
|
+
<header role="banner">
|
|
772
|
+
<nav role="navigation" aria-label="Main navigation">
|
|
773
|
+
<ul>
|
|
774
|
+
<li><a href="/">Home</a></li>
|
|
775
|
+
<li><a href="/tutorials" aria-current="page">Tutorials</a></li>
|
|
776
|
+
<li><a href="/docs">Documentation</a></li>
|
|
777
|
+
</ul>
|
|
778
|
+
</nav>
|
|
779
|
+
</header>
|
|
780
|
+
|
|
781
|
+
<main id="main-content" role="main">
|
|
782
|
+
<article>
|
|
783
|
+
<header>
|
|
784
|
+
<h1>Setting Up Claude Flow Development Environment</h1>
|
|
785
|
+
<div class="tutorial-meta">
|
|
786
|
+
<p>
|
|
787
|
+
<strong>Duration:</strong> 10 minutes 30 seconds<br>
|
|
788
|
+
<strong>Difficulty:</strong> Beginner<br>
|
|
789
|
+
<strong>Prerequisites:</strong> Node.js 18+
|
|
790
|
+
</p>
|
|
791
|
+
</div>
|
|
792
|
+
</header>
|
|
793
|
+
|
|
794
|
+
<section aria-labelledby="video-section">
|
|
795
|
+
<h2 id="video-section">Tutorial Video</h2>
|
|
796
|
+
|
|
797
|
+
<!-- Accessible video player (see previous example) -->
|
|
798
|
+
<div class="video-player-container">
|
|
799
|
+
<!-- Video player implementation -->
|
|
800
|
+
</div>
|
|
801
|
+
|
|
802
|
+
<!-- Video transcript -->
|
|
803
|
+
<section aria-labelledby="transcript-heading">
|
|
804
|
+
<h3 id="transcript-heading">Video Transcript</h3>
|
|
805
|
+
<div class="transcript" role="document">
|
|
806
|
+
<p>
|
|
807
|
+
<span class="timestamp" aria-label="0 minutes 0 seconds">[00:00]</span>
|
|
808
|
+
Welcome to the claude-flow tutorial series.
|
|
809
|
+
I'm your instructor, and today we'll set up your development environment.
|
|
810
|
+
</p>
|
|
811
|
+
<p>
|
|
812
|
+
<span class="timestamp" aria-label="0 minutes 15 seconds">[00:15]</span>
|
|
813
|
+
First, let's check that you have Node.js installed.
|
|
814
|
+
Open your terminal and type: node --version
|
|
815
|
+
</p>
|
|
816
|
+
<!-- Continue transcript... -->
|
|
817
|
+
</div>
|
|
818
|
+
</section>
|
|
819
|
+
</section>
|
|
820
|
+
|
|
821
|
+
<section aria-labelledby="resources-heading">
|
|
822
|
+
<h2 id="resources-heading">Additional Resources</h2>
|
|
823
|
+
<ul>
|
|
824
|
+
<li><a href="/docs/installation">Installation Documentation</a></li>
|
|
825
|
+
<li><a href="/tutorials/next-steps">Next Steps Tutorial</a></li>
|
|
826
|
+
<li><a href="/support">Get Help and Support</a></li>
|
|
827
|
+
</ul>
|
|
828
|
+
</section>
|
|
829
|
+
</article>
|
|
830
|
+
</main>
|
|
831
|
+
|
|
832
|
+
<aside role="complementary" aria-labelledby="related-heading">
|
|
833
|
+
<h2 id="related-heading">Related Tutorials</h2>
|
|
834
|
+
<nav aria-label="Related tutorials">
|
|
835
|
+
<ul>
|
|
836
|
+
<li><a href="/tutorials/first-agent">Creating Your First Agent</a></li>
|
|
837
|
+
<li><a href="/tutorials/swarm-basics">Swarm Coordination Basics</a></li>
|
|
838
|
+
</ul>
|
|
839
|
+
</nav>
|
|
840
|
+
</aside>
|
|
841
|
+
|
|
842
|
+
<footer role="contentinfo">
|
|
843
|
+
<p>© 2024 Claude Flow. All rights reserved.</p>
|
|
844
|
+
</footer>
|
|
845
|
+
</body>
|
|
846
|
+
</html>
|
|
847
|
+
```
|
|
848
|
+
|
|
849
|
+
#### 📝 ARIA Live Regions
|
|
850
|
+
```javascript
|
|
851
|
+
// Screen reader announcements for video events
|
|
852
|
+
class ScreenReaderAnnouncements {
|
|
853
|
+
constructor() {
|
|
854
|
+
this.setupLiveRegions();
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
setupLiveRegions() {
|
|
858
|
+
// Create polite announcement region
|
|
859
|
+
this.politeRegion = document.createElement('div');
|
|
860
|
+
this.politeRegion.setAttribute('aria-live', 'polite');
|
|
861
|
+
this.politeRegion.setAttribute('aria-atomic', 'false');
|
|
862
|
+
this.politeRegion.className = 'sr-only';
|
|
863
|
+
document.body.appendChild(this.politeRegion);
|
|
864
|
+
|
|
865
|
+
// Create assertive announcement region (for urgent updates)
|
|
866
|
+
this.assertiveRegion = document.createElement('div');
|
|
867
|
+
this.assertiveRegion.setAttribute('aria-live', 'assertive');
|
|
868
|
+
this.assertiveRegion.setAttribute('aria-atomic', 'true');
|
|
869
|
+
this.assertiveRegion.className = 'sr-only';
|
|
870
|
+
document.body.appendChild(this.assertiveRegion);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
announcePolitely(message) {
|
|
874
|
+
this.politeRegion.textContent = message;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
announceUrgently(message) {
|
|
878
|
+
this.assertiveRegion.textContent = message;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
announceProgress(current, total) {
|
|
882
|
+
const percentage = Math.round((current / total) * 100);
|
|
883
|
+
this.announcePolitely(`Video progress: ${percentage}% complete`);
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
announceChapterChange(chapterTitle) {
|
|
887
|
+
this.announcePolitely(`Now viewing: ${chapterTitle}`);
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
announceError(errorMessage) {
|
|
891
|
+
this.announceUrgently(`Error: ${errorMessage}`);
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
// Video player integration with screen reader announcements
|
|
896
|
+
class AccessibleVideoPlayerWithAnnouncements extends AccessibleVideoPlayer {
|
|
897
|
+
constructor(videoElement) {
|
|
898
|
+
super(videoElement);
|
|
899
|
+
this.announcer = new ScreenReaderAnnouncements();
|
|
900
|
+
this.setupProgressAnnouncements();
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
setupProgressAnnouncements() {
|
|
904
|
+
let lastAnnouncedPercentage = 0;
|
|
905
|
+
|
|
906
|
+
this.video.addEventListener('timeupdate', () => {
|
|
907
|
+
const currentPercentage = Math.floor((this.video.currentTime / this.video.duration) * 100);
|
|
908
|
+
|
|
909
|
+
// Announce progress every 25%
|
|
910
|
+
if (currentPercentage >= lastAnnouncedPercentage + 25) {
|
|
911
|
+
this.announcer.announceProgress(this.video.currentTime, this.video.duration);
|
|
912
|
+
lastAnnouncedPercentage = currentPercentage;
|
|
913
|
+
}
|
|
914
|
+
});
|
|
915
|
+
|
|
916
|
+
this.video.addEventListener('ended', () => {
|
|
917
|
+
this.announcer.announcePolitely('Video completed');
|
|
918
|
+
});
|
|
919
|
+
|
|
920
|
+
this.video.addEventListener('error', () => {
|
|
921
|
+
this.announcer.announceError('Video failed to load');
|
|
922
|
+
});
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
```
|
|
926
|
+
|
|
927
|
+
## 🔧 Assistive Technology Testing
|
|
928
|
+
|
|
929
|
+
### Testing Methodology
|
|
930
|
+
|
|
931
|
+
#### 🧪 Manual Testing Process
|
|
932
|
+
```markdown
|
|
933
|
+
**Screen Reader Testing Checklist:**
|
|
934
|
+
|
|
935
|
+
**NVDA (Windows):**
|
|
936
|
+
- [ ] Install NVDA (free from nvaccess.org)
|
|
937
|
+
- [ ] Test with Firefox (recommended browser)
|
|
938
|
+
- [ ] Navigate video using only keyboard
|
|
939
|
+
- [ ] Verify all content is announced
|
|
940
|
+
- [ ] Test caption reading functionality
|
|
941
|
+
- [ ] Check chapter navigation
|
|
942
|
+
|
|
943
|
+
**Testing Script:**
|
|
944
|
+
1. Start NVDA with Ctrl+Alt+N
|
|
945
|
+
2. Navigate to tutorial page
|
|
946
|
+
3. Use H key to jump between headings
|
|
947
|
+
4. Use Tab to navigate interactive elements
|
|
948
|
+
5. Test video controls with keyboard only
|
|
949
|
+
6. Verify captions are read when enabled
|
|
950
|
+
7. Test transcript navigation
|
|
951
|
+
|
|
952
|
+
**VoiceOver (macOS):**
|
|
953
|
+
- [ ] Enable VoiceOver with Cmd+F5
|
|
954
|
+
- [ ] Test with Safari (best compatibility)
|
|
955
|
+
- [ ] Use VO+Arrow keys to navigate
|
|
956
|
+
- [ ] Test video player controls
|
|
957
|
+
- [ ] Verify rotor navigation works
|
|
958
|
+
|
|
959
|
+
**JAWS (Windows):**
|
|
960
|
+
- [ ] Test with Internet Explorer/Edge
|
|
961
|
+
- [ ] Use virtual cursor navigation
|
|
962
|
+
- [ ] Test forms mode for video controls
|
|
963
|
+
- [ ] Verify heading navigation (H key)
|
|
964
|
+
- [ ] Test table navigation if applicable
|
|
965
|
+
```
|
|
966
|
+
|
|
967
|
+
#### 🤖 Automated Testing Tools
|
|
968
|
+
```javascript
|
|
969
|
+
// Accessibility testing with axe-core
|
|
970
|
+
const axe = require('@axe-core/puppeteer');
|
|
971
|
+
const puppeteer = require('puppeteer');
|
|
972
|
+
|
|
973
|
+
class AccessibilityTester {
|
|
974
|
+
async testVideoTutorialPage(url) {
|
|
975
|
+
const browser = await puppeteer.launch();
|
|
976
|
+
const page = await browser.newPage();
|
|
977
|
+
|
|
978
|
+
try {
|
|
979
|
+
await page.goto(url, { waitUntil: 'networkidle0' });
|
|
980
|
+
|
|
981
|
+
// Inject axe-core
|
|
982
|
+
await axe.injectAxe(page);
|
|
983
|
+
|
|
984
|
+
// Run accessibility analysis
|
|
985
|
+
const results = await axe.analyzeAxe(page, {
|
|
986
|
+
tags: ['wcag2a', 'wcag2aa', 'wcag21aa'],
|
|
987
|
+
rules: {
|
|
988
|
+
// Enable specific rules for video content
|
|
989
|
+
'video-caption': { enabled: true },
|
|
990
|
+
'audio-caption': { enabled: true },
|
|
991
|
+
'video-description': { enabled: true },
|
|
992
|
+
'color-contrast': { enabled: true },
|
|
993
|
+
'keyboard-navigation': { enabled: true }
|
|
994
|
+
}
|
|
995
|
+
});
|
|
996
|
+
|
|
997
|
+
// Generate report
|
|
998
|
+
this.generateAccessibilityReport(results);
|
|
999
|
+
|
|
1000
|
+
return results;
|
|
1001
|
+
} finally {
|
|
1002
|
+
await browser.close();
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
generateAccessibilityReport(results) {
|
|
1007
|
+
console.log('Accessibility Test Results:');
|
|
1008
|
+
console.log(`Violations: ${results.violations.length}`);
|
|
1009
|
+
console.log(`Passes: ${results.passes.length}`);
|
|
1010
|
+
console.log(`Incomplete: ${results.incomplete.length}`);
|
|
1011
|
+
|
|
1012
|
+
if (results.violations.length > 0) {
|
|
1013
|
+
console.log('\nViolations:');
|
|
1014
|
+
results.violations.forEach(violation => {
|
|
1015
|
+
console.log(`- ${violation.description}`);
|
|
1016
|
+
console.log(` Impact: ${violation.impact}`);
|
|
1017
|
+
console.log(` Help: ${violation.helpUrl}`);
|
|
1018
|
+
});
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
// Usage
|
|
1024
|
+
const tester = new AccessibilityTester();
|
|
1025
|
+
tester.testVideoTutorialPage('https://example.com/tutorial');
|
|
1026
|
+
```
|
|
1027
|
+
|
|
1028
|
+
### User Testing with Disabilities
|
|
1029
|
+
|
|
1030
|
+
#### 👥 Inclusive User Testing Process
|
|
1031
|
+
```markdown
|
|
1032
|
+
**Recruiting Test Participants:**
|
|
1033
|
+
|
|
1034
|
+
**Vision Impairments:**
|
|
1035
|
+
- Screen reader users (various technologies)
|
|
1036
|
+
- Low vision users (screen magnification)
|
|
1037
|
+
- Color blind users
|
|
1038
|
+
- Blind users (audio-only experience)
|
|
1039
|
+
|
|
1040
|
+
**Hearing Impairments:**
|
|
1041
|
+
- Deaf users (caption dependency)
|
|
1042
|
+
- Hard of hearing users (audio enhancement)
|
|
1043
|
+
- Audio processing difficulties
|
|
1044
|
+
|
|
1045
|
+
**Motor Impairments:**
|
|
1046
|
+
- Keyboard-only navigation users
|
|
1047
|
+
- Switch device users
|
|
1048
|
+
- Limited mobility users
|
|
1049
|
+
- Tremor or precision difficulties
|
|
1050
|
+
|
|
1051
|
+
**Cognitive Impairments:**
|
|
1052
|
+
- Learning disabilities
|
|
1053
|
+
- Attention disorders
|
|
1054
|
+
- Memory difficulties
|
|
1055
|
+
- Processing speed variations
|
|
1056
|
+
|
|
1057
|
+
**Testing Protocol:**
|
|
1058
|
+
1. **Pre-test Interview** (10 minutes)
|
|
1059
|
+
- Understanding user's assistive technology setup
|
|
1060
|
+
- Preferred interaction methods
|
|
1061
|
+
- Experience with video tutorials
|
|
1062
|
+
|
|
1063
|
+
2. **Guided Task Testing** (30 minutes)
|
|
1064
|
+
- Complete tutorial start to finish
|
|
1065
|
+
- Navigate video controls
|
|
1066
|
+
- Use interactive elements
|
|
1067
|
+
- Access additional resources
|
|
1068
|
+
|
|
1069
|
+
3. **Post-test Interview** (15 minutes)
|
|
1070
|
+
- Identify barriers and difficulties
|
|
1071
|
+
- Suggest improvements
|
|
1072
|
+
- Rate overall accessibility
|
|
1073
|
+
```
|
|
1074
|
+
|
|
1075
|
+
#### 📝 Testing Documentation
|
|
1076
|
+
```markdown
|
|
1077
|
+
**Accessibility Test Report Template:**
|
|
1078
|
+
|
|
1079
|
+
**Test Information:**
|
|
1080
|
+
- Date: [Test date]
|
|
1081
|
+
- Tester: [Name and assistive technology used]
|
|
1082
|
+
- Browser/OS: [Technical environment]
|
|
1083
|
+
- Tutorial: [Specific tutorial tested]
|
|
1084
|
+
|
|
1085
|
+
**Accessibility Ratings:**
|
|
1086
|
+
- Overall Experience: [1-5 scale]
|
|
1087
|
+
- Video Player Accessibility: [1-5 scale]
|
|
1088
|
+
- Content Clarity: [1-5 scale]
|
|
1089
|
+
- Navigation Ease: [1-5 scale]
|
|
1090
|
+
|
|
1091
|
+
**Specific Findings:**
|
|
1092
|
+
|
|
1093
|
+
**Barriers Encountered:**
|
|
1094
|
+
1. [Specific issue description]
|
|
1095
|
+
- Severity: High/Medium/Low
|
|
1096
|
+
- Workaround available: Yes/No
|
|
1097
|
+
- Suggested fix: [Recommendation]
|
|
1098
|
+
|
|
1099
|
+
**Positive Aspects:**
|
|
1100
|
+
1. [What worked well]
|
|
1101
|
+
2. [Accessibility features appreciated]
|
|
1102
|
+
|
|
1103
|
+
**Recommendations:**
|
|
1104
|
+
1. [Priority improvement]
|
|
1105
|
+
2. [Nice-to-have enhancement]
|
|
1106
|
+
|
|
1107
|
+
**Technical Notes:**
|
|
1108
|
+
- Assistive technology compatibility
|
|
1109
|
+
- Browser-specific issues
|
|
1110
|
+
- Performance observations
|
|
1111
|
+
```
|
|
1112
|
+
|
|
1113
|
+
## 📊 Accessibility Metrics and Monitoring
|
|
1114
|
+
|
|
1115
|
+
### Key Performance Indicators
|
|
1116
|
+
|
|
1117
|
+
#### 📈 Accessibility KPIs
|
|
1118
|
+
```javascript
|
|
1119
|
+
// Accessibility metrics tracking
|
|
1120
|
+
class AccessibilityMetrics {
|
|
1121
|
+
constructor() {
|
|
1122
|
+
this.metrics = {
|
|
1123
|
+
captionUsage: 0,
|
|
1124
|
+
keyboardNavigation: 0,
|
|
1125
|
+
screenReaderSessions: 0,
|
|
1126
|
+
assistiveTechErrors: [],
|
|
1127
|
+
completionRates: {
|
|
1128
|
+
screenReader: [],
|
|
1129
|
+
keyboardOnly: [],
|
|
1130
|
+
voiceControl: []
|
|
1131
|
+
}
|
|
1132
|
+
};
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
trackCaptionUsage() {
|
|
1136
|
+
const video = document.querySelector('video');
|
|
1137
|
+
const tracks = video.textTracks;
|
|
1138
|
+
|
|
1139
|
+
for (let track of tracks) {
|
|
1140
|
+
track.addEventListener('cuechange', () => {
|
|
1141
|
+
if (track.mode === 'showing') {
|
|
1142
|
+
this.metrics.captionUsage++;
|
|
1143
|
+
this.sendMetric('caption_enabled', {
|
|
1144
|
+
timestamp: Date.now(),
|
|
1145
|
+
language: track.language
|
|
1146
|
+
});
|
|
1147
|
+
}
|
|
1148
|
+
});
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
trackKeyboardNavigation() {
|
|
1153
|
+
let keyboardUsed = false;
|
|
1154
|
+
|
|
1155
|
+
document.addEventListener('keydown', (event) => {
|
|
1156
|
+
// Track if user is navigating with keyboard
|
|
1157
|
+
const navigationKeys = [
|
|
1158
|
+
'Tab', 'Enter', 'Space', 'ArrowUp', 'ArrowDown',
|
|
1159
|
+
'ArrowLeft', 'ArrowRight', 'Home', 'End'
|
|
1160
|
+
];
|
|
1161
|
+
|
|
1162
|
+
if (navigationKeys.includes(event.key)) {
|
|
1163
|
+
if (!keyboardUsed) {
|
|
1164
|
+
keyboardUsed = true;
|
|
1165
|
+
this.metrics.keyboardNavigation++;
|
|
1166
|
+
this.sendMetric('keyboard_navigation_detected');
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
});
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
detectScreenReader() {
|
|
1173
|
+
// Multiple methods to detect screen reader usage
|
|
1174
|
+
const indicators = {
|
|
1175
|
+
// Check for screen reader specific CSS
|
|
1176
|
+
mediaQuery: window.matchMedia('(prefers-reduced-motion: reduce)').matches,
|
|
1177
|
+
|
|
1178
|
+
// Check for high contrast mode
|
|
1179
|
+
highContrast: window.matchMedia('(-ms-high-contrast: active)').matches,
|
|
1180
|
+
|
|
1181
|
+
// Check for screen reader specific user agent strings
|
|
1182
|
+
userAgent: /NVDA|JAWS|VoiceOver|TalkBack|Orca/.test(navigator.userAgent),
|
|
1183
|
+
|
|
1184
|
+
// Check for screen reader specific APIs
|
|
1185
|
+
speechSynthesis: 'speechSynthesis' in window
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
const screenReaderLikely = Object.values(indicators).some(Boolean);
|
|
1189
|
+
|
|
1190
|
+
if (screenReaderLikely) {
|
|
1191
|
+
this.metrics.screenReaderSessions++;
|
|
1192
|
+
this.sendMetric('screen_reader_session_detected', indicators);
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
trackCompletionByAccessMethod(accessMethod, completed) {
|
|
1197
|
+
this.metrics.completionRates[accessMethod].push({
|
|
1198
|
+
completed: completed,
|
|
1199
|
+
timestamp: Date.now()
|
|
1200
|
+
});
|
|
1201
|
+
|
|
1202
|
+
this.sendMetric('tutorial_completion', {
|
|
1203
|
+
accessMethod: accessMethod,
|
|
1204
|
+
completed: completed
|
|
1205
|
+
});
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
generateAccessibilityReport() {
|
|
1209
|
+
return {
|
|
1210
|
+
totalSessions: this.getTotalSessions(),
|
|
1211
|
+
accessibilityUsage: {
|
|
1212
|
+
captions: this.metrics.captionUsage,
|
|
1213
|
+
keyboard: this.metrics.keyboardNavigation,
|
|
1214
|
+
screenReader: this.metrics.screenReaderSessions
|
|
1215
|
+
},
|
|
1216
|
+
completionRates: this.calculateCompletionRates(),
|
|
1217
|
+
commonIssues: this.analyzeErrors(),
|
|
1218
|
+
recommendations: this.generateRecommendations()
|
|
1219
|
+
};
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
sendMetric(eventType, data = {}) {
|
|
1223
|
+
fetch('/api/accessibility-metrics', {
|
|
1224
|
+
method: 'POST',
|
|
1225
|
+
headers: { 'Content-Type': 'application/json' },
|
|
1226
|
+
body: JSON.stringify({
|
|
1227
|
+
event: eventType,
|
|
1228
|
+
timestamp: Date.now(),
|
|
1229
|
+
data: data
|
|
1230
|
+
})
|
|
1231
|
+
});
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
// Initialize accessibility tracking
|
|
1236
|
+
const accessibilityTracker = new AccessibilityMetrics();
|
|
1237
|
+
accessibilityTracker.trackCaptionUsage();
|
|
1238
|
+
accessibilityTracker.trackKeyboardNavigation();
|
|
1239
|
+
accessibilityTracker.detectScreenReader();
|
|
1240
|
+
```
|
|
1241
|
+
|
|
1242
|
+
### Continuous Monitoring
|
|
1243
|
+
|
|
1244
|
+
#### 🔄 Automated Accessibility Monitoring
|
|
1245
|
+
```javascript
|
|
1246
|
+
// Automated accessibility monitoring system
|
|
1247
|
+
class AccessibilityMonitor {
|
|
1248
|
+
constructor() {
|
|
1249
|
+
this.checkInterval = 24 * 60 * 60 * 1000; // 24 hours
|
|
1250
|
+
this.setupMonitoring();
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
setupMonitoring() {
|
|
1254
|
+
setInterval(() => {
|
|
1255
|
+
this.runAccessibilityAudit();
|
|
1256
|
+
}, this.checkInterval);
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
async runAccessibilityAudit() {
|
|
1260
|
+
const tutorialPages = await this.getTutorialPages();
|
|
1261
|
+
const results = [];
|
|
1262
|
+
|
|
1263
|
+
for (const page of tutorialPages) {
|
|
1264
|
+
try {
|
|
1265
|
+
const audit = await this.auditPage(page.url);
|
|
1266
|
+
results.push({
|
|
1267
|
+
url: page.url,
|
|
1268
|
+
title: page.title,
|
|
1269
|
+
audit: audit,
|
|
1270
|
+
timestamp: Date.now()
|
|
1271
|
+
});
|
|
1272
|
+
} catch (error) {
|
|
1273
|
+
console.error(`Failed to audit ${page.url}:`, error);
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
this.processAuditResults(results);
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
async auditPage(url) {
|
|
1281
|
+
// Use multiple accessibility testing tools
|
|
1282
|
+
const audits = await Promise.all([
|
|
1283
|
+
this.runAxeAudit(url),
|
|
1284
|
+
this.runLighthouseAudit(url),
|
|
1285
|
+
this.checkCaptionAvailability(url),
|
|
1286
|
+
this.validateKeyboardNavigation(url)
|
|
1287
|
+
]);
|
|
1288
|
+
|
|
1289
|
+
return {
|
|
1290
|
+
axe: audits[0],
|
|
1291
|
+
lighthouse: audits[1],
|
|
1292
|
+
captions: audits[2],
|
|
1293
|
+
keyboard: audits[3]
|
|
1294
|
+
};
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
processAuditResults(results) {
|
|
1298
|
+
const report = {
|
|
1299
|
+
timestamp: Date.now(),
|
|
1300
|
+
summary: this.generateSummary(results),
|
|
1301
|
+
issues: this.extractIssues(results),
|
|
1302
|
+
trends: this.analyzeTrends(results),
|
|
1303
|
+
recommendations: this.generateActionItems(results)
|
|
1304
|
+
};
|
|
1305
|
+
|
|
1306
|
+
// Send alerts for critical issues
|
|
1307
|
+
const criticalIssues = report.issues.filter(issue => issue.severity === 'critical');
|
|
1308
|
+
if (criticalIssues.length > 0) {
|
|
1309
|
+
this.sendAccessibilityAlert(criticalIssues);
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
// Store report for historical analysis
|
|
1313
|
+
this.storeReport(report);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
sendAccessibilityAlert(issues) {
|
|
1317
|
+
const alertData = {
|
|
1318
|
+
subject: 'Critical Accessibility Issues Detected',
|
|
1319
|
+
issues: issues,
|
|
1320
|
+
timestamp: Date.now(),
|
|
1321
|
+
action_required: true
|
|
1322
|
+
};
|
|
1323
|
+
|
|
1324
|
+
// Send to monitoring system/email/Slack
|
|
1325
|
+
fetch('/api/alerts/accessibility', {
|
|
1326
|
+
method: 'POST',
|
|
1327
|
+
headers: { 'Content-Type': 'application/json' },
|
|
1328
|
+
body: JSON.stringify(alertData)
|
|
1329
|
+
});
|
|
1330
|
+
}
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
// Initialize continuous monitoring
|
|
1334
|
+
const accessibilityMonitor = new AccessibilityMonitor();
|
|
1335
|
+
```
|
|
1336
|
+
|
|
1337
|
+
---
|
|
1338
|
+
|
|
1339
|
+
## 🚀 Quick Start
|
|
1340
|
+
|
|
1341
|
+
**New to accessibility?** Start with [WCAG Basics](./wcag-basics.md) and [Caption Creation Guide](./caption-guide.md).
|
|
1342
|
+
|
|
1343
|
+
**Want to test your content?** Use the [Accessibility Testing Checklist](./testing-checklist.md) and [Screen Reader Testing Guide](./screen-reader-testing.md).
|
|
1344
|
+
|
|
1345
|
+
**Need implementation help?** Check [Technical Implementation](./technical-implementation.md) and [Code Examples](./code-examples.md).
|
|
1346
|
+
|
|
1347
|
+
---
|
|
1348
|
+
|
|
1349
|
+
*Accessible video content ensures that all learners can benefit from your tutorials. Invest in accessibility from the start to create truly inclusive educational experiences.*
|