strray-ai 1.22.68 → 1.22.69
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/.opencode/AGENTS-consumer.md +1 -1
- package/.opencode/codex.codex +1 -1
- package/.opencode/commands/dependency-audit.md +3 -3
- package/.opencode/commands/pre-commit-introspection.sh +2 -2
- package/.opencode/enforcer-config.json +2 -2
- package/.opencode/skills/registry.json +1 -1
- package/.opencode/strray/codex.json +1 -1
- package/.opencode/strray/config.json +1 -1
- package/.opencode/strray/features.json +1 -1
- package/.opencode/strray/integrations.json +3 -3
- package/.strray/codex.json +1 -1
- package/.strray/features.json +1 -1
- package/.strray/inference/governance-state.json +1 -1
- package/.strray/inference/inference-cycle-history.json +420 -0
- package/.strray/inference/inference-cycle-state.json +1 -1
- package/.strray/inference/latest-workflow.json +1 -1
- package/.strray/inference/workflow-1780494127539.json +195 -0
- package/.strray/inference/workflow-1780494127578.json +195 -0
- package/.strray/inference/workflow-1780494363191.json +195 -0
- package/.strray/inference/workflow-1780494363234.json +195 -0
- package/.strray/inference/workflow-1780497447176.json +195 -0
- package/.strray/inference/workflow-1780497447235.json +195 -0
- package/.strray/inference/workflow-status.json +1 -1
- package/AGENTS-consumer.md +1 -1
- package/AGENTS.md +10 -1
- package/README.md +6 -4
- package/dist/AGENTS.md +10 -1
- package/dist/CHANGELOG.md +21 -0
- package/dist/README.md +6 -4
- package/dist/agents/architect.d.ts +2 -0
- package/dist/agents/backend-engineer.d.ts +8 -0
- package/dist/agents/bug-triage-specialist.d.ts +2 -0
- package/dist/agents/code-analyzer.d.ts +7 -0
- package/dist/agents/code-reviewer.d.ts +2 -0
- package/dist/agents/content-creator.d.ts +9 -0
- package/dist/agents/database-engineer.d.ts +8 -0
- package/dist/agents/devops-engineer.d.ts +8 -0
- package/dist/agents/frontend-engineer.d.ts +8 -0
- package/dist/agents/frontend-ui-ux-engineer.d.ts +8 -0
- package/dist/agents/growth-strategist.d.ts +8 -0
- package/dist/agents/index.d.ts +24 -0
- package/dist/agents/librarian-agents-updater.d.ts +30 -0
- package/dist/agents/log-monitor.d.ts +2 -0
- package/dist/agents/mobile-developer.d.ts +9 -0
- package/dist/agents/multimodal-looker.d.ts +9 -0
- package/dist/agents/performance-engineer.d.ts +8 -0
- package/dist/agents/refactorer.d.ts +2 -0
- package/dist/agents/registry.d.ts +35 -0
- package/dist/agents/researcher.d.ts +2 -0
- package/dist/agents/security-auditor.d.ts +2 -0
- package/dist/agents/seo-consultant.d.ts +8 -0
- package/dist/agents/strategist.d.ts +7 -0
- package/dist/agents/tech-writer.d.ts +8 -0
- package/dist/agents/testing-lead.d.ts +2 -0
- package/dist/agents/types.d.ts +45 -0
- package/dist/analytics/consent-manager.d.ts +93 -0
- package/dist/analytics/emerging-pattern-detector.d.ts +67 -0
- package/dist/analytics/pattern-learning-engine.d.ts +80 -0
- package/dist/analytics/pattern-performance-tracker.d.ts +97 -0
- package/dist/analytics/predictive-analytics.d.ts +41 -0
- package/dist/analytics/prompt-pattern-analyzer.d.ts +99 -0
- package/dist/analytics/routing-performance-analyzer.d.ts +101 -0
- package/dist/analytics/routing-refiner.d.ts +104 -0
- package/dist/analytics/routing-refiner.js +1 -1
- package/dist/analytics/simple-pattern-analyzer.d.ts +80 -0
- package/dist/architect/architect-tools.d.ts +70 -0
- package/dist/architect/architectural-integrity.d.ts +20 -0
- package/dist/benchmark/performance-benchmark.d.ts +112 -0
- package/dist/cli/commands/analytics-disable.d.ts +9 -0
- package/dist/cli/commands/analytics-enable-action.d.ts +8 -0
- package/dist/cli/commands/analytics-preview.d.ts +9 -0
- package/dist/cli/commands/analytics-status.d.ts +9 -0
- package/dist/cli/commands/antigravity-status.d.ts +9 -0
- package/dist/cli/commands/archive-logs.d.ts +24 -0
- package/dist/cli/commands/credible-init.d.ts +11 -0
- package/dist/cli/commands/grok-install.d.ts +7 -0
- package/dist/cli/commands/hermes-install.d.ts +2 -0
- package/dist/cli/commands/mcp-install.d.ts +4 -0
- package/dist/cli/commands/openclaw-install.d.ts +2 -0
- package/dist/cli/commands/opencode-install.d.ts +2 -0
- package/dist/cli/commands/plugin-commands.d.ts +19 -0
- package/dist/cli/commands/publish-agent.d.ts +15 -0
- package/dist/cli/commands/security-audit.d.ts +23 -0
- package/dist/cli/commands/skill-install.d.ts +5 -0
- package/dist/cli/commands/status.d.ts +41 -0
- package/dist/cli/commands/storyteller.d.ts +19 -0
- package/dist/cli/index.d.ts +7 -0
- package/dist/cli/server.d.ts +1 -0
- package/dist/config/default-agents.d.ts +12 -0
- package/dist/core/activity-logger.d.ts +72 -0
- package/dist/core/adaptive-kernel.d.ts +109 -0
- package/dist/core/agent-spawn-gate.d.ts +56 -0
- package/dist/core/boot-orchestrator.d.ts +120 -0
- package/dist/core/boot-orchestrator.js +1 -1
- package/dist/core/codex-formatter.d.ts +96 -0
- package/dist/core/codex-injector.d.ts +74 -0
- package/dist/core/config-loader.d.ts +70 -0
- package/dist/core/config-paths.d.ts +61 -0
- package/dist/core/context-loader.d.ts +121 -0
- package/dist/core/context-validator.d.ts +53 -0
- package/dist/core/features-config.d.ts +462 -0
- package/dist/core/features-config.js +1 -1
- package/dist/core/framework-logger.d.ts +76 -0
- package/dist/core/index.d.ts +5 -0
- package/dist/core/kernel-patterns.d.ts +130 -0
- package/dist/core/logging-config.d.ts +10 -0
- package/dist/core/model-router.d.ts +61 -0
- package/dist/core/orchestrator.d.ts +71 -0
- package/dist/core/strray-activation.d.ts +17 -0
- package/dist/core/system-prompt-generator.d.ts +35 -0
- package/dist/core/trace-context.d.ts +12 -0
- package/dist/delegation/agent-delegator.d.ts +186 -0
- package/dist/delegation/agent-expertise.d.ts +16 -0
- package/dist/delegation/analytics/index.d.ts +12 -0
- package/dist/delegation/analytics/learning-engine.d.ts +85 -0
- package/dist/delegation/analytics/outcome-tracker.d.ts +118 -0
- package/dist/delegation/analytics/routing-analytics.d.ts +61 -0
- package/dist/delegation/ast-code-parser.d.ts +174 -0
- package/dist/delegation/codebase-context-analyzer.d.ts +164 -0
- package/dist/delegation/complexity-analyzer.d.ts +111 -0
- package/dist/delegation/complexity-core.d.ts +119 -0
- package/dist/delegation/config/types.d.ts +247 -0
- package/dist/delegation/dependency-graph-builder.d.ts +95 -0
- package/dist/delegation/index.d.ts +25 -0
- package/dist/delegation/index.js +1 -1
- package/dist/delegation/metrics-aggregator.d.ts +92 -0
- package/dist/delegation/session-coordinator.d.ts +133 -0
- package/dist/delegation/strategy-selector.d.ts +28 -0
- package/dist/delegation/voting-coordinator.d.ts +49 -0
- package/dist/delegation/voting-types.d.ts +155 -0
- package/dist/delegation/weighted-voting-aggregator.d.ts +37 -0
- package/dist/enforcement/core/index.d.ts +15 -0
- package/dist/enforcement/core/rule-executor.d.ts +158 -0
- package/dist/enforcement/core/rule-hierarchy.d.ts +146 -0
- package/dist/enforcement/core/rule-registry.d.ts +197 -0
- package/dist/enforcement/core/violation-fixer.d.ts +106 -0
- package/dist/enforcement/enforcer-tools.d.ts +78 -0
- package/dist/enforcement/index.d.ts +23 -0
- package/dist/enforcement/loaders/agent-triage-loader.d.ts +99 -0
- package/dist/enforcement/loaders/agents-md-validation-loader.d.ts +76 -0
- package/dist/enforcement/loaders/base-loader.d.ts +83 -0
- package/dist/enforcement/loaders/codex-loader.d.ts +77 -0
- package/dist/enforcement/loaders/index.d.ts +37 -0
- package/dist/enforcement/loaders/loader-orchestrator.d.ts +97 -0
- package/dist/enforcement/loaders/processor-loader.d.ts +60 -0
- package/dist/enforcement/rule-enforcer.d.ts +142 -0
- package/dist/enforcement/test-auto-healing.d.ts +83 -0
- package/dist/enforcement/types.d.ts +501 -0
- package/dist/enforcement/validators/architecture-validators.d.ts +155 -0
- package/dist/enforcement/validators/base-validator.d.ts +88 -0
- package/dist/enforcement/validators/code-quality-validators.d.ts +89 -0
- package/dist/enforcement/validators/index.d.ts +15 -0
- package/dist/enforcement/validators/security-validators.d.ts +53 -0
- package/dist/enforcement/validators/testing-validators.d.ts +81 -0
- package/dist/enforcement/validators/validator-registry.d.ts +92 -0
- package/dist/governance/governance-core.d.ts +46 -0
- package/dist/governance/governance-core.js +48 -1
- package/dist/governance/governance-service.d.ts +36 -0
- package/dist/governance/governance-service.js +5 -0
- package/dist/governance/governance-types.d.ts +65 -0
- package/dist/index.d.ts +28 -0
- package/dist/inference/deploy-verifier.d.ts +26 -0
- package/dist/inference/index.d.ts +10 -0
- package/dist/inference/inference-accumulator.d.ts +29 -0
- package/dist/inference/inference-cycle.d.ts +112 -0
- package/dist/inference/semantic-patterns.d.ts +7 -0
- package/dist/inference/session-capture.d.ts +32 -0
- package/dist/integrations/base/ExampleIntegration.d.ts +47 -0
- package/dist/integrations/base/Integration.d.ts +267 -0
- package/dist/integrations/base/index.d.ts +12 -0
- package/dist/integrations/base/registry.d.ts +273 -0
- package/dist/integrations/base/types.d.ts +168 -0
- package/dist/integrations/governance/governance-client.d.ts +76 -0
- package/dist/integrations/governance/governance-client.js +5 -0
- package/dist/integrations/governance/index.d.ts +99 -0
- package/dist/integrations/governance/index.js +12 -0
- package/dist/integrations/governance/types.d.ts +211 -0
- package/dist/integrations/grok/grok-cli.d.ts +25 -0
- package/dist/integrations/openclaw/api-server.d.ts +87 -0
- package/dist/integrations/openclaw/client.d.ts +122 -0
- package/dist/integrations/openclaw/config.d.ts +96 -0
- package/dist/integrations/openclaw/hooks/strray-hooks.d.ts +124 -0
- package/dist/integrations/openclaw/index.d.ts +101 -0
- package/dist/integrations/openclaw/types.d.ts +426 -0
- package/dist/integrations/plugins/index.d.ts +10 -0
- package/dist/integrations/plugins/plugin-integration.d.ts +289 -0
- package/dist/integrations/plugins/plugin-registry.d.ts +224 -0
- package/dist/mcps/agent-resolver.d.ts +46 -0
- package/dist/mcps/architect-tools.server.d.ts +17 -0
- package/dist/mcps/architect-tools.server.js +1 -1
- package/dist/mcps/auto-format.server.d.ts +19 -0
- package/dist/mcps/auto-format.server.js +1 -1
- package/dist/mcps/boot-orchestrator.server.d.ts +49 -0
- package/dist/mcps/boot-orchestrator.server.js +1 -1
- package/dist/mcps/config/config-loader.d.ts +52 -0
- package/dist/mcps/config/config-validator.d.ts +40 -0
- package/dist/mcps/config/index.d.ts +31 -0
- package/dist/mcps/config/plugin-server-registry.d.ts +127 -0
- package/dist/mcps/config/server-config-registry.d.ts +51 -0
- package/dist/mcps/connection/connection-manager.d.ts +39 -0
- package/dist/mcps/connection/connection-pool.d.ts +64 -0
- package/dist/mcps/connection/mcp-connection.d.ts +66 -0
- package/dist/mcps/connection/process-spawner.d.ts +24 -0
- package/dist/mcps/enforcer-tools.server.d.ts +27 -0
- package/dist/mcps/enforcer-tools.server.js +1 -1
- package/dist/mcps/estimation.server.d.ts +21 -0
- package/dist/mcps/estimation.server.js +1 -1
- package/dist/mcps/framework-compliance-audit.server.d.ts +22 -0
- package/dist/mcps/framework-compliance-audit.server.js +1 -1
- package/dist/mcps/framework-help.server.d.ts +14 -0
- package/dist/mcps/framework-help.server.js +1 -1
- package/dist/mcps/governance.server.d.ts +32 -0
- package/dist/mcps/governance.server.js +1 -1
- package/dist/mcps/in-process-skill-registry.d.ts +14 -0
- package/dist/mcps/knowledge-skills/api-design.server.d.ts +15 -0
- package/dist/mcps/knowledge-skills/api-design.server.js +1 -1
- package/dist/mcps/knowledge-skills/architecture-patterns.server.d.ts +15 -0
- package/dist/mcps/knowledge-skills/architecture-patterns.server.js +1 -1
- package/dist/mcps/knowledge-skills/bug-triage-specialist.server.d.ts +33 -0
- package/dist/mcps/knowledge-skills/bug-triage-specialist.server.js +1 -1
- package/dist/mcps/knowledge-skills/code-analyzer.server.d.ts +31 -0
- package/dist/mcps/knowledge-skills/code-analyzer.server.js +1 -1
- package/dist/mcps/knowledge-skills/code-review.server.d.ts +46 -0
- package/dist/mcps/knowledge-skills/code-review.server.js +1 -1
- package/dist/mcps/knowledge-skills/content-creator.server.d.ts +13 -0
- package/dist/mcps/knowledge-skills/content-creator.server.js +1 -1
- package/dist/mcps/knowledge-skills/database-design.server.d.ts +43 -0
- package/dist/mcps/knowledge-skills/database-design.server.js +1 -1
- package/dist/mcps/knowledge-skills/devops-deployment.server.d.ts +43 -0
- package/dist/mcps/knowledge-skills/devops-deployment.server.js +1 -1
- package/dist/mcps/knowledge-skills/git-workflow.server.d.ts +15 -0
- package/dist/mcps/knowledge-skills/git-workflow.server.js +1 -1
- package/dist/mcps/knowledge-skills/growth-strategist.server.d.ts +13 -0
- package/dist/mcps/knowledge-skills/growth-strategist.server.js +1 -1
- package/dist/mcps/knowledge-skills/log-monitor.server.d.ts +24 -0
- package/dist/mcps/knowledge-skills/log-monitor.server.js +1 -1
- package/dist/mcps/knowledge-skills/mobile-development.server.d.ts +19 -0
- package/dist/mcps/knowledge-skills/mobile-development.server.js +1 -1
- package/dist/mcps/knowledge-skills/multimodal-looker.server.d.ts +55 -0
- package/dist/mcps/knowledge-skills/multimodal-looker.server.js +1 -1
- package/dist/mcps/knowledge-skills/performance-optimization.server.d.ts +72 -0
- package/dist/mcps/knowledge-skills/performance-optimization.server.js +1 -1
- package/dist/mcps/knowledge-skills/project-analysis.server.d.ts +37 -0
- package/dist/mcps/knowledge-skills/project-analysis.server.js +1 -1
- package/dist/mcps/knowledge-skills/refactoring-strategies.server.d.ts +33 -0
- package/dist/mcps/knowledge-skills/refactoring-strategies.server.js +1 -1
- package/dist/mcps/knowledge-skills/security-audit.server.d.ts +48 -0
- package/dist/mcps/knowledge-skills/security-audit.server.js +1 -1
- package/dist/mcps/knowledge-skills/seo-consultant.server.d.ts +26 -0
- package/dist/mcps/knowledge-skills/seo-consultant.server.js +1 -1
- package/dist/mcps/knowledge-skills/session-management.server.d.ts +23 -0
- package/dist/mcps/knowledge-skills/session-management.server.js +1 -1
- package/dist/mcps/knowledge-skills/skill-invocation.server.d.ts +29 -0
- package/dist/mcps/knowledge-skills/skill-invocation.server.js +1 -1
- package/dist/mcps/knowledge-skills/strategist.server.d.ts +17 -0
- package/dist/mcps/knowledge-skills/strategist.server.js +1 -1
- package/dist/mcps/knowledge-skills/tech-writer.server.d.ts +47 -0
- package/dist/mcps/knowledge-skills/tech-writer.server.js +2 -2
- package/dist/mcps/knowledge-skills/testing-best-practices.server.d.ts +36 -0
- package/dist/mcps/knowledge-skills/testing-best-practices.server.js +1 -1
- package/dist/mcps/knowledge-skills/testing-strategy.server.d.ts +47 -0
- package/dist/mcps/knowledge-skills/testing-strategy.server.js +1 -1
- package/dist/mcps/knowledge-skills/ui-ux-design.server.d.ts +69 -0
- package/dist/mcps/knowledge-skills/ui-ux-design.server.js +1 -1
- package/dist/mcps/lint.server.d.ts +17 -0
- package/dist/mcps/lint.server.js +1 -1
- package/dist/mcps/mcp-client.d.ts +157 -0
- package/dist/mcps/model-health-check.server.d.ts +16 -0
- package/dist/mcps/model-health-check.server.js +1 -1
- package/dist/mcps/orchestrator/config/agent-capabilities.d.ts +35 -0
- package/dist/mcps/orchestrator/execution/execution-planner.d.ts +62 -0
- package/dist/mcps/orchestrator/handlers/complexity-handler.d.ts +32 -0
- package/dist/mcps/orchestrator/handlers/status-handler.d.ts +69 -0
- package/dist/mcps/orchestrator/handlers/task-handler.d.ts +52 -0
- package/dist/mcps/orchestrator/server.d.ts +38 -0
- package/dist/mcps/orchestrator/types.d.ts +79 -0
- package/dist/mcps/orchestrator.server.d.ts +10 -0
- package/dist/mcps/performance-analysis.server.d.ts +27 -0
- package/dist/mcps/performance-analysis.server.js +1 -1
- package/dist/mcps/processor-pipeline.server.d.ts +31 -0
- package/dist/mcps/processor-pipeline.server.js +1 -1
- package/dist/mcps/protocol/protocol-constants.d.ts +46 -0
- package/dist/mcps/registry.json +1 -1
- package/dist/mcps/researcher.server.d.ts +31 -0
- package/dist/mcps/researcher.server.js +1 -1
- package/dist/mcps/security-scan.server.d.ts +20 -0
- package/dist/mcps/security-scan.server.js +1 -1
- package/dist/mcps/simulation/index.d.ts +12 -0
- package/dist/mcps/simulation/server-simulations.d.ts +39 -0
- package/dist/mcps/simulation/simulation-engine.d.ts +51 -0
- package/dist/mcps/state-manager.server.d.ts +28 -0
- package/dist/mcps/state-manager.server.js +1 -1
- package/dist/mcps/tools/index.d.ts +14 -0
- package/dist/mcps/tools/tool-cache.d.ts +53 -0
- package/dist/mcps/tools/tool-discovery.d.ts +27 -0
- package/dist/mcps/tools/tool-executor.d.ts +41 -0
- package/dist/mcps/tools/tool-registry.d.ts +42 -0
- package/dist/mcps/types/index.d.ts +13 -0
- package/dist/mcps/types/json-rpc.types.d.ts +35 -0
- package/dist/mcps/types/mcp.types.d.ts +105 -0
- package/dist/metrics/agent-metrics.d.ts +181 -0
- package/dist/metrics/index.d.ts +6 -0
- package/dist/monitoring/advanced-profiler.d.ts +51 -0
- package/dist/monitoring/memory-monitor.d.ts +113 -0
- package/dist/monitoring/nudge-watchdog.d.ts +88 -0
- package/dist/monitoring/test-auto-generation-monitor.d.ts +64 -0
- package/dist/orchestrator/agent-spawn-governor.d.ts +127 -0
- package/dist/orchestrator/enhanced-multi-agent-orchestrator.d.ts +156 -0
- package/dist/orchestrator/intelligent-commit-batcher.d.ts +114 -0
- package/dist/orchestrator/multi-agent-orchestration-coordinator.d.ts +127 -0
- package/dist/orchestrator/orchestrator.d.ts +142 -0
- package/dist/orchestrator/self-direction-activation.d.ts +109 -0
- package/dist/orchestrator/universal-librarian-consultation.d.ts +98 -0
- package/dist/orchestrator/universal-registry-bridge.d.ts +85 -0
- package/dist/orchestrator/universal-registry-bridge.js +1 -1
- package/dist/performance/performance-budget-enforcer.d.ts +158 -0
- package/dist/performance/performance-regression-tester.d.ts +108 -0
- package/dist/postprocessor/PostProcessor.d.ts +108 -0
- package/dist/postprocessor/analysis/FailureAnalysisEngine.d.ts +39 -0
- package/dist/postprocessor/autofix/AutoFixEngine.d.ts +48 -0
- package/dist/postprocessor/autofix/FixValidator.d.ts +23 -0
- package/dist/postprocessor/config.d.ts +6 -0
- package/dist/postprocessor/escalation/EscalationEngine.d.ts +154 -0
- package/dist/postprocessor/monitoring/MonitoringEngine.d.ts +40 -0
- package/dist/postprocessor/redeploy/RedeployCoordinator.d.ts +91 -0
- package/dist/postprocessor/services/RegressionAnalysisService.d.ts +40 -0
- package/dist/postprocessor/success/SuccessHandler.d.ts +57 -0
- package/dist/postprocessor/triggers/APITrigger.d.ts +35 -0
- package/dist/postprocessor/triggers/GitHookTrigger.d.ts +38 -0
- package/dist/postprocessor/triggers/WebhookTrigger.d.ts +47 -0
- package/dist/postprocessor/types.d.ts +227 -0
- package/dist/processors/doc-write-guard.d.ts +6 -0
- package/dist/processors/implementations/agents-md-validation-processor.d.ts +63 -0
- package/dist/processors/implementations/async-pattern-processor.d.ts +48 -0
- package/dist/processors/implementations/codex-compliance-processor.d.ts +7 -0
- package/dist/processors/implementations/commit-batcher-processor.d.ts +13 -0
- package/dist/processors/implementations/console-log-guard-processor.d.ts +33 -0
- package/dist/processors/implementations/coverage-analysis-processor.d.ts +20 -0
- package/dist/processors/implementations/error-boundary-processor.d.ts +7 -0
- package/dist/processors/implementations/inference-improvement-processor.d.ts +36 -0
- package/dist/processors/implementations/log-protection-processor.d.ts +30 -0
- package/dist/processors/implementations/nudge-processor.d.ts +22 -0
- package/dist/processors/implementations/performance-budget-processor.d.ts +50 -0
- package/dist/processors/implementations/postprocessor-chain-validator.d.ts +46 -0
- package/dist/processors/implementations/pre-validate-processor.d.ts +7 -0
- package/dist/processors/implementations/publish-preflight-processor.d.ts +38 -0
- package/dist/processors/implementations/refactoring-logging-processor-wrapper.d.ts +7 -0
- package/dist/processors/implementations/refactoring-logging-processor.d.ts +31 -0
- package/dist/processors/implementations/regression-testing-processor.d.ts +20 -0
- package/dist/processors/implementations/session-summary-processor.d.ts +27 -0
- package/dist/processors/implementations/spawn-governance-processor.d.ts +58 -0
- package/dist/processors/implementations/state-validation-processor.d.ts +11 -0
- package/dist/processors/implementations/storytelling-trigger-processor.d.ts +42 -0
- package/dist/processors/implementations/test-auto-creation-processor.d.ts +17 -0
- package/dist/processors/implementations/test-execution-processor.d.ts +11 -0
- package/dist/processors/implementations/typescript-compilation-processor.d.ts +38 -0
- package/dist/processors/implementations/version-compliance-processor.d.ts +112 -0
- package/dist/processors/processor-interfaces.d.ts +127 -0
- package/dist/processors/processor-manager.d.ts +80 -0
- package/dist/processors/processor-types.d.ts +190 -0
- package/dist/reporting/framework-reporting-system.d.ts +19 -0
- package/dist/reporting/log-parser.d.ts +10 -0
- package/dist/reporting/metrics.d.ts +15 -0
- package/dist/reporting/report-formatter.d.ts +5 -0
- package/dist/reporting/types.d.ts +102 -0
- package/dist/scripts/activate-kernel-pipeline.d.ts +7 -0
- package/dist/scripts/integration.d.ts +37 -0
- package/dist/security/comprehensive-security-audit.d.ts +158 -0
- package/dist/security/index.d.ts +13 -0
- package/dist/security/index.js +1 -1
- package/dist/security/prompt-security-validator.d.ts +44 -0
- package/dist/security/security-agent-coordinator.d.ts +72 -0
- package/dist/security/security-auditor.d.ts +56 -0
- package/dist/security/security-hardener.d.ts +62 -0
- package/dist/security/security-hardening-system.d.ts +239 -0
- package/dist/security/security-headers.d.ts +64 -0
- package/dist/security/security-orchestration-layer.d.ts +119 -0
- package/dist/security/security-scanner.d.ts +119 -0
- package/dist/services/inference-tuner.d.ts +77 -0
- package/dist/session/index.d.ts +3 -0
- package/dist/session/session-cleanup-manager.d.ts +118 -0
- package/dist/session/session-monitor.d.ts +133 -0
- package/dist/session/session-state-manager.d.ts +145 -0
- package/dist/skills/registry.json +1 -1
- package/dist/state/context-providers.d.ts +4 -0
- package/dist/state/index.d.ts +4 -0
- package/dist/state/state-manager.d.ts +42 -0
- package/dist/state/state-types.d.ts +5 -0
- package/dist/testing/memory-regression-suite.d.ts +105 -0
- package/dist/utils/batch-operations.d.ts +25 -0
- package/dist/utils/codex-parser.d.ts +61 -0
- package/dist/utils/command-runner.d.ts +32 -0
- package/dist/utils/import-resolver.d.ts +54 -0
- package/dist/utils/language-detector.d.ts +44 -0
- package/dist/utils/path-resolver.d.ts +48 -0
- package/dist/utils/shutdown-handler.d.ts +27 -0
- package/dist/utils/test-template-generator.d.ts +25 -0
- package/dist/utils/token-manager.d.ts +48 -0
- package/dist/validation/estimation-validator.d.ts +61 -0
- package/dist/validation/report-content-validator.d.ts +42 -0
- package/package.json +1 -1
- package/scripts/node/universal-version-manager.js +9 -9
- package/src/opencode/.strrayrc.json +1 -1
- package/src/opencode/AGENTS-consumer.md +1 -1
- package/src/opencode/codex.codex +1 -1
- package/src/opencode/commands/dependency-audit.md +3 -3
- package/src/opencode/commands/pre-commit-introspection.sh +2 -2
- package/src/opencode/enforcer-config.json +2 -2
- package/src/opencode/strray/codex.json +1 -1
- package/src/opencode/strray/config.json +1 -1
- package/src/opencode/strray/features.json +1 -1
- package/src/opencode/strray/integrations.json +3 -3
- package/.strray/state/state.json +0 -1
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Version Compliance Processor
|
|
3
|
+
*
|
|
4
|
+
* Pre-processor that enforces version compliance rules before allowing
|
|
5
|
+
* commits or publishes. Integrates with 0xRay's processor pipeline.
|
|
6
|
+
*
|
|
7
|
+
* Rules Enforced:
|
|
8
|
+
* 1. Universal Version Manager MUST be 1 ahead of NPM published version
|
|
9
|
+
* 2. package.json SHOULD match UVM (warning if not)
|
|
10
|
+
* 3. Source files MUST be synchronized to UVM version
|
|
11
|
+
* 4. README SHOULD reference current version
|
|
12
|
+
*
|
|
13
|
+
* @processor_type pre
|
|
14
|
+
* @priority 25 (high - runs early, after preValidate, before errorBoundary)
|
|
15
|
+
* @blocking true (blocks on violations)
|
|
16
|
+
*
|
|
17
|
+
* @version 1.0.0
|
|
18
|
+
* @framework 0xRay 1.3.5
|
|
19
|
+
*/
|
|
20
|
+
export interface VersionComplianceResult {
|
|
21
|
+
compliant: boolean;
|
|
22
|
+
npmVersion: string;
|
|
23
|
+
uvmVersion: string;
|
|
24
|
+
pkgVersion: string;
|
|
25
|
+
errors: string[];
|
|
26
|
+
warnings: string[];
|
|
27
|
+
fixes?: VersionFix[];
|
|
28
|
+
}
|
|
29
|
+
export interface VersionFix {
|
|
30
|
+
type: "update-uvm" | "sync-source" | "update-readme";
|
|
31
|
+
description: string;
|
|
32
|
+
command: string;
|
|
33
|
+
autoFixable: boolean;
|
|
34
|
+
}
|
|
35
|
+
export interface VersionInfo {
|
|
36
|
+
major: number;
|
|
37
|
+
minor: number;
|
|
38
|
+
patch: number;
|
|
39
|
+
raw: string;
|
|
40
|
+
}
|
|
41
|
+
export declare class VersionComplianceProcessor {
|
|
42
|
+
private projectRoot;
|
|
43
|
+
private errors;
|
|
44
|
+
private warnings;
|
|
45
|
+
private fixes;
|
|
46
|
+
constructor(projectRoot?: string);
|
|
47
|
+
/**
|
|
48
|
+
* Main execution method - called by ProcessorManager
|
|
49
|
+
*/
|
|
50
|
+
execute(context: {
|
|
51
|
+
tool: string;
|
|
52
|
+
args?: {
|
|
53
|
+
filePath?: string;
|
|
54
|
+
content?: string;
|
|
55
|
+
};
|
|
56
|
+
operation: string;
|
|
57
|
+
}): Promise<{
|
|
58
|
+
success: boolean;
|
|
59
|
+
blocked: boolean;
|
|
60
|
+
message: string;
|
|
61
|
+
result?: VersionComplianceResult;
|
|
62
|
+
}>;
|
|
63
|
+
/**
|
|
64
|
+
* Validate all version compliance rules
|
|
65
|
+
*/
|
|
66
|
+
validateVersionCompliance(): Promise<VersionComplianceResult>;
|
|
67
|
+
/**
|
|
68
|
+
* Get NPM published version
|
|
69
|
+
*/
|
|
70
|
+
private getNpmVersion;
|
|
71
|
+
/**
|
|
72
|
+
* Get Universal Version Manager version
|
|
73
|
+
*/
|
|
74
|
+
private getUvmVersion;
|
|
75
|
+
/**
|
|
76
|
+
* Get package.json version
|
|
77
|
+
*/
|
|
78
|
+
private getPackageVersion;
|
|
79
|
+
/**
|
|
80
|
+
* Get version from source files
|
|
81
|
+
*/
|
|
82
|
+
private getSourceVersion;
|
|
83
|
+
/**
|
|
84
|
+
* Get version from README
|
|
85
|
+
*/
|
|
86
|
+
private getReadmeVersion;
|
|
87
|
+
/**
|
|
88
|
+
* Parse version string into components
|
|
89
|
+
*/
|
|
90
|
+
private parseVersion;
|
|
91
|
+
/**
|
|
92
|
+
* Format version components back to string
|
|
93
|
+
*/
|
|
94
|
+
private formatVersion;
|
|
95
|
+
/**
|
|
96
|
+
* Increment patch version
|
|
97
|
+
*/
|
|
98
|
+
private incrementPatch;
|
|
99
|
+
/**
|
|
100
|
+
* Auto-fix version compliance issues
|
|
101
|
+
*/
|
|
102
|
+
autoFix(): Promise<{
|
|
103
|
+
success: boolean;
|
|
104
|
+
fixed: string[];
|
|
105
|
+
failed: string[];
|
|
106
|
+
}>;
|
|
107
|
+
/**
|
|
108
|
+
* Generate compliance report
|
|
109
|
+
*/
|
|
110
|
+
generateReport(result: VersionComplianceResult): string;
|
|
111
|
+
}
|
|
112
|
+
export declare const versionComplianceProcessor: VersionComplianceProcessor;
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Processor Interface and Base Classes
|
|
3
|
+
*
|
|
4
|
+
* Defines the contract for all processors in the 0xRay framework.
|
|
5
|
+
* Replaces the switch statement anti-pattern in ProcessorManager with
|
|
6
|
+
* polymorphic processor classes.
|
|
7
|
+
*
|
|
8
|
+
* @module processors/interfaces
|
|
9
|
+
* @version 1.0.0
|
|
10
|
+
*/
|
|
11
|
+
import { ProcessorContext, ProcessorResult, LogProtectionProcessorResult, TestExecutionResult, CodexComplianceProcessorResult, VersionComplianceProcessorResult, TestAutoCreationResult, CoverageAnalysisResult } from "./processor-types.js";
|
|
12
|
+
/**
|
|
13
|
+
* Union of all known processor result types for type safety
|
|
14
|
+
*/
|
|
15
|
+
export type ProcessorResultData = LogProtectionProcessorResult | TestExecutionResult | CodexComplianceProcessorResult | VersionComplianceProcessorResult | TestAutoCreationResult | CoverageAnalysisResult;
|
|
16
|
+
/**
|
|
17
|
+
* Processor interface - all processors must implement this
|
|
18
|
+
*/
|
|
19
|
+
export interface IProcessor {
|
|
20
|
+
/** Unique processor identifier */
|
|
21
|
+
readonly name: string;
|
|
22
|
+
/** Processor type: pre or post */
|
|
23
|
+
readonly type: "pre" | "post";
|
|
24
|
+
/** Execution priority (lower = earlier) */
|
|
25
|
+
readonly priority: number;
|
|
26
|
+
/** Whether processor is enabled */
|
|
27
|
+
enabled: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Execute the processor
|
|
30
|
+
* @param context Processor execution context
|
|
31
|
+
* @returns Processor result
|
|
32
|
+
*/
|
|
33
|
+
execute(context: ProcessorContext): Promise<ProcessorResult>;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Base processor class with common functionality
|
|
37
|
+
*/
|
|
38
|
+
export type ProcessorDependency = "stateManager" | "config" | "logger";
|
|
39
|
+
export interface ProcessorDependencies {
|
|
40
|
+
stateManager?: unknown;
|
|
41
|
+
config?: unknown;
|
|
42
|
+
logger?: unknown;
|
|
43
|
+
}
|
|
44
|
+
export declare abstract class BaseProcessor implements IProcessor {
|
|
45
|
+
abstract readonly name: string;
|
|
46
|
+
abstract readonly type: "pre" | "post";
|
|
47
|
+
abstract readonly priority: number;
|
|
48
|
+
enabled: boolean;
|
|
49
|
+
static readonly dependencies?: ProcessorDependency[];
|
|
50
|
+
/**
|
|
51
|
+
* Execute the processor with error handling and metrics
|
|
52
|
+
* @param context Processor execution context
|
|
53
|
+
* @returns Processor result
|
|
54
|
+
*/
|
|
55
|
+
execute(context: ProcessorContext): Promise<ProcessorResult>;
|
|
56
|
+
/**
|
|
57
|
+
* Override this method in subclasses to implement processor logic
|
|
58
|
+
* @param context Processor execution context
|
|
59
|
+
* @returns Processor data
|
|
60
|
+
*/
|
|
61
|
+
protected abstract run(context: ProcessorContext): Promise<unknown>;
|
|
62
|
+
/**
|
|
63
|
+
* Safely extract file path from context
|
|
64
|
+
*/
|
|
65
|
+
protected getFilePath(context: ProcessorContext): string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* Safely extract content from context
|
|
68
|
+
*/
|
|
69
|
+
protected getContent(context: ProcessorContext): string | undefined;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Pre-processor base class
|
|
73
|
+
*/
|
|
74
|
+
export declare abstract class PreProcessor extends BaseProcessor {
|
|
75
|
+
readonly type: "pre";
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Post-processor base class
|
|
79
|
+
*/
|
|
80
|
+
export declare abstract class PostProcessor extends BaseProcessor {
|
|
81
|
+
readonly type: "post";
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Processor registry for managing processor instances
|
|
85
|
+
*/
|
|
86
|
+
export declare class ProcessorRegistry {
|
|
87
|
+
private processors;
|
|
88
|
+
/**
|
|
89
|
+
* Register a processor
|
|
90
|
+
* @param processor Processor instance
|
|
91
|
+
*/
|
|
92
|
+
register(processor: IProcessor): void;
|
|
93
|
+
/**
|
|
94
|
+
* Unregister a processor
|
|
95
|
+
* @param name Processor name
|
|
96
|
+
*/
|
|
97
|
+
unregister(name: string): void;
|
|
98
|
+
/**
|
|
99
|
+
* Get a processor by name
|
|
100
|
+
* @param name Processor name
|
|
101
|
+
* @returns Processor instance or undefined
|
|
102
|
+
*/
|
|
103
|
+
get(name: string): IProcessor | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* Get all registered processors
|
|
106
|
+
* @returns Array of processors
|
|
107
|
+
*/
|
|
108
|
+
getAll(): IProcessor[];
|
|
109
|
+
/**
|
|
110
|
+
* Get processors by type
|
|
111
|
+
* @param type Processor type
|
|
112
|
+
* @returns Array of processors
|
|
113
|
+
*/
|
|
114
|
+
getByType(type: "pre" | "post"): IProcessor[];
|
|
115
|
+
/**
|
|
116
|
+
* Check if processor exists
|
|
117
|
+
* @param name Processor name
|
|
118
|
+
* @returns True if processor exists
|
|
119
|
+
*/
|
|
120
|
+
has(name: string): boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Clear all processors
|
|
123
|
+
*/
|
|
124
|
+
clear(): void;
|
|
125
|
+
}
|
|
126
|
+
export type { ProcessorContext, ProcessorResult } from "./processor-types.js";
|
|
127
|
+
export declare const processorRegistry: ProcessorRegistry;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { StringRayStateManager } from "../state/state-manager.js";
|
|
2
|
+
import { ProcessorRegistration, ProcessorHook } from "./processor-types.js";
|
|
3
|
+
import { IProcessor } from "./processor-interfaces.js";
|
|
4
|
+
export interface StaggerPolicy {
|
|
5
|
+
minIntervalMs: number;
|
|
6
|
+
}
|
|
7
|
+
export interface ProcessorConfig {
|
|
8
|
+
name: string;
|
|
9
|
+
type: "pre" | "post";
|
|
10
|
+
priority: number;
|
|
11
|
+
enabled: boolean;
|
|
12
|
+
timeout?: number;
|
|
13
|
+
retryAttempts?: number;
|
|
14
|
+
hook?: ProcessorHook;
|
|
15
|
+
stagger?: StaggerPolicy;
|
|
16
|
+
}
|
|
17
|
+
export interface ProcessorResult {
|
|
18
|
+
success: boolean;
|
|
19
|
+
data?: unknown;
|
|
20
|
+
error?: string;
|
|
21
|
+
duration: number;
|
|
22
|
+
processorName: string;
|
|
23
|
+
}
|
|
24
|
+
export interface ProcessorHealth {
|
|
25
|
+
name: string;
|
|
26
|
+
status: "healthy" | "degraded" | "failed";
|
|
27
|
+
lastExecution: number;
|
|
28
|
+
successRate: number;
|
|
29
|
+
averageDuration: number;
|
|
30
|
+
errorCount: number;
|
|
31
|
+
}
|
|
32
|
+
export interface ProcessorMetrics {
|
|
33
|
+
totalExecutions: number;
|
|
34
|
+
successfulExecutions: number;
|
|
35
|
+
failedExecutions: number;
|
|
36
|
+
averageDuration: number;
|
|
37
|
+
lastExecutionTime: number;
|
|
38
|
+
healthStatus: ProcessorHealth["status"];
|
|
39
|
+
}
|
|
40
|
+
type ProcessorFactory = {
|
|
41
|
+
execute: (context: Record<string, unknown>) => Promise<unknown>;
|
|
42
|
+
init?: () => Promise<void>;
|
|
43
|
+
};
|
|
44
|
+
export declare class ProcessorManager {
|
|
45
|
+
private processors;
|
|
46
|
+
private metrics;
|
|
47
|
+
private stateManager;
|
|
48
|
+
private activeProcessors;
|
|
49
|
+
private factories;
|
|
50
|
+
private lastExecutionTime;
|
|
51
|
+
constructor(stateManager: StringRayStateManager);
|
|
52
|
+
registerProcessorInstance(processor: IProcessor): boolean;
|
|
53
|
+
discoverProcessors(directory?: string): Promise<string[]>;
|
|
54
|
+
private instantiateWithDeps;
|
|
55
|
+
private registerBuiltInFactories;
|
|
56
|
+
registerFactory(name: string, factory: ProcessorFactory): void;
|
|
57
|
+
registerProcessorWithHook(registration: ProcessorRegistration): void;
|
|
58
|
+
registerProcessor(config: ProcessorConfig): void;
|
|
59
|
+
unregisterProcessor(name: string): void;
|
|
60
|
+
getProcessors(): Map<string, ProcessorConfig>;
|
|
61
|
+
initializeProcessors(): Promise<boolean>;
|
|
62
|
+
private initializeProcessor;
|
|
63
|
+
executePreProcessors(input: {
|
|
64
|
+
tool: string;
|
|
65
|
+
args?: Record<string, unknown>;
|
|
66
|
+
context?: Record<string, unknown>;
|
|
67
|
+
}): Promise<{
|
|
68
|
+
success: boolean;
|
|
69
|
+
results: ProcessorResult[];
|
|
70
|
+
}>;
|
|
71
|
+
executePostProcessors(operation: string, data: any, preResults: ProcessorResult[]): Promise<ProcessorResult[]>;
|
|
72
|
+
private executeProcessor;
|
|
73
|
+
private updateMetrics;
|
|
74
|
+
getProcessorHealth(): ProcessorHealth[];
|
|
75
|
+
private validateProcessorContext;
|
|
76
|
+
resolveProcessorConflicts(conflicts: ProcessorResult[]): ProcessorResult;
|
|
77
|
+
cleanupProcessors(): Promise<void>;
|
|
78
|
+
private cleanupProcessor;
|
|
79
|
+
}
|
|
80
|
+
export {};
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Processor Types
|
|
3
|
+
*
|
|
4
|
+
* Type definitions for the processor activation system.
|
|
5
|
+
* Replaces `any` types with proper interfaces for type safety.
|
|
6
|
+
* This file is the central source of truth for shared processor types
|
|
7
|
+
* to avoid circular dependencies.
|
|
8
|
+
*
|
|
9
|
+
* @version 1.2.0
|
|
10
|
+
* @since 2026-01-07
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Tool argument structure passed to processors
|
|
14
|
+
*/
|
|
15
|
+
export interface ToolInputArgs {
|
|
16
|
+
filePath?: string;
|
|
17
|
+
content?: string;
|
|
18
|
+
operation?: string;
|
|
19
|
+
directory?: string;
|
|
20
|
+
args?: Record<string, string>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Tool input containing execution details
|
|
24
|
+
*/
|
|
25
|
+
export interface ToolInput {
|
|
26
|
+
tool?: string;
|
|
27
|
+
args?: ToolInputArgs;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Processor execution context - used by processors to understand their environment
|
|
31
|
+
*/
|
|
32
|
+
export interface ProcessorContext {
|
|
33
|
+
/** Tool input (for pre-processors) */
|
|
34
|
+
toolInput?: ToolInput;
|
|
35
|
+
/** File path being processed */
|
|
36
|
+
filePath?: string;
|
|
37
|
+
/** Operation being performed */
|
|
38
|
+
operation?: string;
|
|
39
|
+
/** Content being processed */
|
|
40
|
+
content?: string;
|
|
41
|
+
/** Working directory */
|
|
42
|
+
directory?: string;
|
|
43
|
+
/** Tool being executed */
|
|
44
|
+
tool?: string;
|
|
45
|
+
/** Additional context - string, numeric, boolean, or object values */
|
|
46
|
+
[key: string]: ToolInput | ToolInputArgs | string | number | boolean | object | undefined;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Standard result returned by all processors
|
|
50
|
+
* Uses unknown for data to handle any processor-specific return type
|
|
51
|
+
*/
|
|
52
|
+
export interface ProcessorResult {
|
|
53
|
+
success: boolean;
|
|
54
|
+
data?: unknown;
|
|
55
|
+
error?: string;
|
|
56
|
+
duration: number;
|
|
57
|
+
processorName: string;
|
|
58
|
+
}
|
|
59
|
+
export interface PreValidateContext {
|
|
60
|
+
operation: string;
|
|
61
|
+
data?: string;
|
|
62
|
+
syntaxCheck?: boolean;
|
|
63
|
+
codexCompliance?: boolean;
|
|
64
|
+
agentName?: string;
|
|
65
|
+
filesChanged?: string[];
|
|
66
|
+
riskLevel?: "low" | "medium" | "high" | "critical";
|
|
67
|
+
tool?: string;
|
|
68
|
+
directory?: string;
|
|
69
|
+
args?: ToolInputArgs;
|
|
70
|
+
config?: Record<string, unknown>;
|
|
71
|
+
}
|
|
72
|
+
export interface PostValidateContext {
|
|
73
|
+
operation: string;
|
|
74
|
+
data?: string;
|
|
75
|
+
preResults: ProcessorExecutionResult[];
|
|
76
|
+
testResults?: TestResults;
|
|
77
|
+
regressionResults?: RegressionResults;
|
|
78
|
+
stateValidation?: boolean;
|
|
79
|
+
tool?: string;
|
|
80
|
+
directory?: string;
|
|
81
|
+
args?: ToolInputArgs;
|
|
82
|
+
}
|
|
83
|
+
export interface ProcessorHook {
|
|
84
|
+
name: string;
|
|
85
|
+
execute: (context: PreValidateContext | PostValidateContext) => Promise<ProcessorExecutionResult>;
|
|
86
|
+
priority: number;
|
|
87
|
+
enabled: boolean;
|
|
88
|
+
before?: (context: PreValidateContext | PostValidateContext) => Promise<void>;
|
|
89
|
+
after?: (result: ProcessorExecutionResult) => Promise<void>;
|
|
90
|
+
onError?: (error: Error) => Promise<void>;
|
|
91
|
+
}
|
|
92
|
+
export interface ProcessorRegistration {
|
|
93
|
+
name: string;
|
|
94
|
+
type: "pre" | "post";
|
|
95
|
+
hook: ProcessorHook;
|
|
96
|
+
}
|
|
97
|
+
export interface ProcessorExecutionResult {
|
|
98
|
+
success: boolean;
|
|
99
|
+
result?: unknown;
|
|
100
|
+
error?: string;
|
|
101
|
+
duration: number;
|
|
102
|
+
processorName: string;
|
|
103
|
+
data?: unknown;
|
|
104
|
+
}
|
|
105
|
+
export interface ProcessorHealthCheck {
|
|
106
|
+
name: string;
|
|
107
|
+
status: "healthy" | "degraded" | "failed";
|
|
108
|
+
lastRun: number;
|
|
109
|
+
successRate: number;
|
|
110
|
+
averageExecutionTime: number;
|
|
111
|
+
totalRuns: number;
|
|
112
|
+
failedRuns: number;
|
|
113
|
+
}
|
|
114
|
+
export interface TestResults {
|
|
115
|
+
passed: number;
|
|
116
|
+
failed: number;
|
|
117
|
+
total: number;
|
|
118
|
+
duration: number;
|
|
119
|
+
}
|
|
120
|
+
export interface RegressionResults {
|
|
121
|
+
issues: string[];
|
|
122
|
+
passed: boolean;
|
|
123
|
+
}
|
|
124
|
+
export interface VersionComplianceProcessorResult {
|
|
125
|
+
success: boolean;
|
|
126
|
+
errors: string[];
|
|
127
|
+
warnings: string[];
|
|
128
|
+
checkedAt: string;
|
|
129
|
+
}
|
|
130
|
+
export interface CodexComplianceProcessorResult {
|
|
131
|
+
compliant: boolean;
|
|
132
|
+
violations: string[];
|
|
133
|
+
warnings: string[];
|
|
134
|
+
termsChecked: number;
|
|
135
|
+
operation: string;
|
|
136
|
+
timestamp: string;
|
|
137
|
+
error?: boolean;
|
|
138
|
+
}
|
|
139
|
+
export interface ErrorBoundaryResult {
|
|
140
|
+
boundaries: string;
|
|
141
|
+
}
|
|
142
|
+
export interface LogProtectionProcessorResult {
|
|
143
|
+
allowed: boolean;
|
|
144
|
+
reason?: string;
|
|
145
|
+
}
|
|
146
|
+
export interface AgentsMdValidationProcessorResult {
|
|
147
|
+
success: boolean;
|
|
148
|
+
blocked: boolean;
|
|
149
|
+
message?: string;
|
|
150
|
+
errors: string[];
|
|
151
|
+
warnings: string[];
|
|
152
|
+
checkedAt: string;
|
|
153
|
+
}
|
|
154
|
+
export interface TestExecutionResult {
|
|
155
|
+
testsExecuted: number;
|
|
156
|
+
passed: number;
|
|
157
|
+
failed: number;
|
|
158
|
+
exitCode?: number;
|
|
159
|
+
output?: string;
|
|
160
|
+
success: boolean;
|
|
161
|
+
error?: string;
|
|
162
|
+
}
|
|
163
|
+
export interface RegressionTestingResult {
|
|
164
|
+
regressions: string;
|
|
165
|
+
issues: string[];
|
|
166
|
+
}
|
|
167
|
+
export interface StateValidationResult {
|
|
168
|
+
stateValid: boolean;
|
|
169
|
+
}
|
|
170
|
+
export interface RefactoringLoggingResult {
|
|
171
|
+
logged: boolean;
|
|
172
|
+
success: boolean;
|
|
173
|
+
message: string;
|
|
174
|
+
error?: string;
|
|
175
|
+
}
|
|
176
|
+
export interface TestAutoCreationResult {
|
|
177
|
+
success: boolean;
|
|
178
|
+
message?: string;
|
|
179
|
+
data?: string[];
|
|
180
|
+
error?: string;
|
|
181
|
+
}
|
|
182
|
+
export interface CoverageAnalysisResult {
|
|
183
|
+
success: boolean;
|
|
184
|
+
message: string;
|
|
185
|
+
coverage: number;
|
|
186
|
+
}
|
|
187
|
+
export interface RuleViolationEntry {
|
|
188
|
+
rule: string;
|
|
189
|
+
message: string;
|
|
190
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type ReportConfig, type ScheduleConfig, type RealtimeStatus, type CustomReportTemplate } from "./types.js";
|
|
2
|
+
export type { ReportConfig, ReportData, OrchestrationMetrics, ParsedLogEntry, RealtimeStatus, ScheduleConfig, CustomReportTemplate } from "./types.js";
|
|
3
|
+
export declare class FrameworkReportingSystem {
|
|
4
|
+
private logRetentionHours;
|
|
5
|
+
private reportCache;
|
|
6
|
+
generateReport(config: ReportConfig): Promise<string>;
|
|
7
|
+
scheduleAutomatedReports(schedule: ScheduleConfig): void;
|
|
8
|
+
getRealtimeStatus(): Promise<RealtimeStatus>;
|
|
9
|
+
createCustomReport(template: CustomReportTemplate): string;
|
|
10
|
+
private generateReportId;
|
|
11
|
+
private getCachedReport;
|
|
12
|
+
private isCacheValid;
|
|
13
|
+
private cacheReport;
|
|
14
|
+
private collectReportData;
|
|
15
|
+
private saveReportToFile;
|
|
16
|
+
private cleanupOldReports;
|
|
17
|
+
private getIntervalMs;
|
|
18
|
+
}
|
|
19
|
+
export declare const frameworkReportingSystem: FrameworkReportingSystem;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type ParsedLogEntry, type ReportConfig } from "./types.js";
|
|
2
|
+
export declare function levelToStatus(level: string): string;
|
|
3
|
+
export declare function inferAgent(component: string): string;
|
|
4
|
+
export declare function parseLogLine(line: string): ParsedLogEntry | null;
|
|
5
|
+
export declare function frameworkLogToParsedEntry(entry: import("../core/framework-logger.js").FrameworkLogEntry): ParsedLogEntry;
|
|
6
|
+
export declare function readCurrentLogFile(timeRange?: ReportConfig["timeRange"]): Promise<ParsedLogEntry[]>;
|
|
7
|
+
export declare function parseCompressedLogFile(filePath: string, startTime: number, endTime: number): Promise<ParsedLogEntry[]>;
|
|
8
|
+
export declare function readRotatedLogFiles(timeRange?: ReportConfig["timeRange"]): Promise<ParsedLogEntry[]>;
|
|
9
|
+
export declare function getComprehensiveLogs(config: ReportConfig): Promise<ParsedLogEntry[]>;
|
|
10
|
+
export declare function filterLogsByConfig(logs: ParsedLogEntry[], config: ReportConfig): ParsedLogEntry[];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { ParsedLogEntry, OrchestrationMetrics, ReportConfig } from "./types.js";
|
|
2
|
+
export declare function calculateTimeRange(logs: ParsedLogEntry[], timeRange?: ReportConfig["timeRange"]): {
|
|
3
|
+
start: Date;
|
|
4
|
+
end: Date;
|
|
5
|
+
};
|
|
6
|
+
export declare function calculateMetrics(logs: ParsedLogEntry[]): OrchestrationMetrics;
|
|
7
|
+
export declare function calculatePeakActivity(logs: ParsedLogEntry[]): {
|
|
8
|
+
timestamp: Date;
|
|
9
|
+
eventsPerMinute: number;
|
|
10
|
+
};
|
|
11
|
+
export declare function calculateHealthScore(logs: ParsedLogEntry[]): number;
|
|
12
|
+
export declare function generateInsights(logs: ParsedLogEntry[], metrics: OrchestrationMetrics): string[];
|
|
13
|
+
export declare function generateRecommendations(metrics: OrchestrationMetrics): string[];
|
|
14
|
+
export declare function generateAlerts(logs: ParsedLogEntry[]): string[];
|
|
15
|
+
export declare function getHighFrequencyComponents(logs: ParsedLogEntry[]): string[];
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ReportData } from "./types.js";
|
|
2
|
+
import type { ReportConfig } from "./types.js";
|
|
3
|
+
export declare function formatReport(data: ReportData, format: ReportConfig["outputFormat"]): string;
|
|
4
|
+
export declare function formatAsMarkdown(data: ReportData): string;
|
|
5
|
+
export declare function formatAsHtml(data: ReportData): string;
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
export interface ParsedLogEntry {
|
|
2
|
+
timestamp: number;
|
|
3
|
+
component: string;
|
|
4
|
+
action: string;
|
|
5
|
+
message: string;
|
|
6
|
+
level: string;
|
|
7
|
+
status: string;
|
|
8
|
+
agent: string;
|
|
9
|
+
jobId: string | null;
|
|
10
|
+
sessionId?: string | undefined;
|
|
11
|
+
details?: Record<string, unknown> | undefined;
|
|
12
|
+
}
|
|
13
|
+
export interface ReportConfig {
|
|
14
|
+
type: "orchestration" | "agent-usage" | "context-awareness" | "performance" | "full-analysis";
|
|
15
|
+
sessionId?: string;
|
|
16
|
+
jobId?: string;
|
|
17
|
+
timeRange?: {
|
|
18
|
+
start?: Date;
|
|
19
|
+
end?: Date;
|
|
20
|
+
lastHours?: number;
|
|
21
|
+
};
|
|
22
|
+
outputFormat: "markdown" | "json" | "html";
|
|
23
|
+
outputPath?: string;
|
|
24
|
+
includeCharts?: boolean;
|
|
25
|
+
detailedMetrics?: boolean;
|
|
26
|
+
}
|
|
27
|
+
export interface OrchestrationMetrics {
|
|
28
|
+
totalDelegations: number;
|
|
29
|
+
agentUsage: Map<string, number>;
|
|
30
|
+
complexityDistribution: Map<string, number>;
|
|
31
|
+
successRate: number;
|
|
32
|
+
averageResponseTime: number;
|
|
33
|
+
contextOperations: number;
|
|
34
|
+
enhancementSuccessRate: number;
|
|
35
|
+
commandUsage: Map<string, number>;
|
|
36
|
+
toolExecutionStats: {
|
|
37
|
+
totalCommands: number;
|
|
38
|
+
uniqueTools: number;
|
|
39
|
+
mostUsedTool: string;
|
|
40
|
+
toolSuccessRate: Map<string, {
|
|
41
|
+
success: number;
|
|
42
|
+
total: number;
|
|
43
|
+
rate: number;
|
|
44
|
+
}>;
|
|
45
|
+
};
|
|
46
|
+
systemOperationDetails: {
|
|
47
|
+
fileOperations: number;
|
|
48
|
+
searchOperations: number;
|
|
49
|
+
terminalOperations: number;
|
|
50
|
+
analysisOperations: number;
|
|
51
|
+
orchestrationOperations: number;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
export interface ReportData {
|
|
55
|
+
generatedAt: Date;
|
|
56
|
+
timeRange: {
|
|
57
|
+
start: Date;
|
|
58
|
+
end: Date;
|
|
59
|
+
};
|
|
60
|
+
metrics: OrchestrationMetrics;
|
|
61
|
+
chronologicalEvents: ParsedLogEntry[];
|
|
62
|
+
insights: string[];
|
|
63
|
+
recommendations: string[];
|
|
64
|
+
summary: {
|
|
65
|
+
totalEvents: number;
|
|
66
|
+
activeComponents: string[];
|
|
67
|
+
peakActivity: {
|
|
68
|
+
timestamp: Date;
|
|
69
|
+
eventsPerMinute: number;
|
|
70
|
+
};
|
|
71
|
+
healthScore: number;
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
export interface RealtimeStatus {
|
|
75
|
+
activeComponents: string[];
|
|
76
|
+
recentActivity: ParsedLogEntry[];
|
|
77
|
+
healthScore: number;
|
|
78
|
+
alerts: string[];
|
|
79
|
+
}
|
|
80
|
+
export interface ScheduleConfig {
|
|
81
|
+
frequency: "hourly" | "daily" | "weekly";
|
|
82
|
+
types: ReportConfig["type"][];
|
|
83
|
+
outputDir: string;
|
|
84
|
+
retentionDays: number;
|
|
85
|
+
}
|
|
86
|
+
export interface CustomReportTemplate {
|
|
87
|
+
name: string;
|
|
88
|
+
filters: {
|
|
89
|
+
components?: string[];
|
|
90
|
+
actions?: string[];
|
|
91
|
+
status?: string[];
|
|
92
|
+
timeRange?: {
|
|
93
|
+
start: Date;
|
|
94
|
+
end: Date;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
aggregations: {
|
|
98
|
+
groupBy: "component" | "action" | "status" | "hour";
|
|
99
|
+
metrics: ("count" | "avgResponseTime" | "successRate")[];
|
|
100
|
+
};
|
|
101
|
+
visualizations: ("timeline" | "pie-chart" | "bar-chart")[];
|
|
102
|
+
}
|