promptspeak-mcp-server 0.1.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/README.md +98 -0
- package/dist/agents/database.d.ts +174 -0
- package/dist/agents/database.d.ts.map +1 -0
- package/dist/agents/database.js +1029 -0
- package/dist/agents/database.js.map +1 -0
- package/dist/agents/index.d.ts +13 -0
- package/dist/agents/index.d.ts.map +1 -0
- package/dist/agents/index.js +20 -0
- package/dist/agents/index.js.map +1 -0
- package/dist/agents/integration.d.ts +75 -0
- package/dist/agents/integration.d.ts.map +1 -0
- package/dist/agents/integration.js +166 -0
- package/dist/agents/integration.js.map +1 -0
- package/dist/agents/proposal-manager.d.ts +137 -0
- package/dist/agents/proposal-manager.d.ts.map +1 -0
- package/dist/agents/proposal-manager.js +782 -0
- package/dist/agents/proposal-manager.js.map +1 -0
- package/dist/agents/registry.d.ts +168 -0
- package/dist/agents/registry.d.ts.map +1 -0
- package/dist/agents/registry.js +716 -0
- package/dist/agents/registry.js.map +1 -0
- package/dist/agents/templates/index.d.ts +50 -0
- package/dist/agents/templates/index.d.ts.map +1 -0
- package/dist/agents/templates/index.js +415 -0
- package/dist/agents/templates/index.js.map +1 -0
- package/dist/agents/tools.d.ts +156 -0
- package/dist/agents/tools.d.ts.map +1 -0
- package/dist/agents/tools.js +590 -0
- package/dist/agents/tools.js.map +1 -0
- package/dist/agents/types.d.ts +513 -0
- package/dist/agents/types.d.ts.map +1 -0
- package/dist/agents/types.js +20 -0
- package/dist/agents/types.js.map +1 -0
- package/dist/auth/api-key.d.ts +37 -0
- package/dist/auth/api-key.d.ts.map +1 -0
- package/dist/auth/api-key.js +202 -0
- package/dist/auth/api-key.js.map +1 -0
- package/dist/auth/index.d.ts +8 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +8 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/oauth.d.ts +125 -0
- package/dist/auth/oauth.d.ts.map +1 -0
- package/dist/auth/oauth.js +225 -0
- package/dist/auth/oauth.js.map +1 -0
- package/dist/boot-camp/boot-camp-controller.d.ts +185 -0
- package/dist/boot-camp/boot-camp-controller.d.ts.map +1 -0
- package/dist/boot-camp/boot-camp-controller.js +696 -0
- package/dist/boot-camp/boot-camp-controller.js.map +1 -0
- package/dist/boot-camp/database.d.ts +79 -0
- package/dist/boot-camp/database.d.ts.map +1 -0
- package/dist/boot-camp/database.js +594 -0
- package/dist/boot-camp/database.js.map +1 -0
- package/dist/boot-camp/index.d.ts +104 -0
- package/dist/boot-camp/index.d.ts.map +1 -0
- package/dist/boot-camp/index.js +140 -0
- package/dist/boot-camp/index.js.map +1 -0
- package/dist/boot-camp/phases/base-phase.d.ts +98 -0
- package/dist/boot-camp/phases/base-phase.d.ts.map +1 -0
- package/dist/boot-camp/phases/base-phase.js +170 -0
- package/dist/boot-camp/phases/base-phase.js.map +1 -0
- package/dist/boot-camp/phases/combat.d.ts +52 -0
- package/dist/boot-camp/phases/combat.d.ts.map +1 -0
- package/dist/boot-camp/phases/combat.js +413 -0
- package/dist/boot-camp/phases/combat.js.map +1 -0
- package/dist/boot-camp/phases/conditioning.d.ts +53 -0
- package/dist/boot-camp/phases/conditioning.d.ts.map +1 -0
- package/dist/boot-camp/phases/conditioning.js +354 -0
- package/dist/boot-camp/phases/conditioning.js.map +1 -0
- package/dist/boot-camp/phases/crucible.d.ts +52 -0
- package/dist/boot-camp/phases/crucible.d.ts.map +1 -0
- package/dist/boot-camp/phases/crucible.js +442 -0
- package/dist/boot-camp/phases/crucible.js.map +1 -0
- package/dist/boot-camp/phases/graduation.d.ts +52 -0
- package/dist/boot-camp/phases/graduation.d.ts.map +1 -0
- package/dist/boot-camp/phases/graduation.js +422 -0
- package/dist/boot-camp/phases/graduation.js.map +1 -0
- package/dist/boot-camp/phases/index.d.ts +14 -0
- package/dist/boot-camp/phases/index.d.ts.map +1 -0
- package/dist/boot-camp/phases/index.js +14 -0
- package/dist/boot-camp/phases/index.js.map +1 -0
- package/dist/boot-camp/phases/marksmanship.d.ts +50 -0
- package/dist/boot-camp/phases/marksmanship.d.ts.map +1 -0
- package/dist/boot-camp/phases/marksmanship.js +373 -0
- package/dist/boot-camp/phases/marksmanship.js.map +1 -0
- package/dist/boot-camp/phases/phase-factory.d.ts +24 -0
- package/dist/boot-camp/phases/phase-factory.d.ts.map +1 -0
- package/dist/boot-camp/phases/phase-factory.js +74 -0
- package/dist/boot-camp/phases/phase-factory.js.map +1 -0
- package/dist/boot-camp/phases/receiving.d.ts +49 -0
- package/dist/boot-camp/phases/receiving.d.ts.map +1 -0
- package/dist/boot-camp/phases/receiving.js +168 -0
- package/dist/boot-camp/phases/receiving.js.map +1 -0
- package/dist/boot-camp/swarm-integration.d.ts +164 -0
- package/dist/boot-camp/swarm-integration.d.ts.map +1 -0
- package/dist/boot-camp/swarm-integration.js +405 -0
- package/dist/boot-camp/swarm-integration.js.map +1 -0
- package/dist/boot-camp/tools.d.ts +718 -0
- package/dist/boot-camp/tools.d.ts.map +1 -0
- package/dist/boot-camp/tools.js +592 -0
- package/dist/boot-camp/tools.js.map +1 -0
- package/dist/boot-camp/types.d.ts +342 -0
- package/dist/boot-camp/types.d.ts.map +1 -0
- package/dist/boot-camp/types.js +179 -0
- package/dist/boot-camp/types.js.map +1 -0
- package/dist/core/config/env.d.ts +146 -0
- package/dist/core/config/env.d.ts.map +1 -0
- package/dist/core/config/env.js +230 -0
- package/dist/core/config/env.js.map +1 -0
- package/dist/core/config/index.d.ts +23 -0
- package/dist/core/config/index.d.ts.map +1 -0
- package/dist/core/config/index.js +31 -0
- package/dist/core/config/index.js.map +1 -0
- package/dist/core/errors/base.d.ts +168 -0
- package/dist/core/errors/base.d.ts.map +1 -0
- package/dist/core/errors/base.js +195 -0
- package/dist/core/errors/base.js.map +1 -0
- package/dist/core/errors/codes.d.ts +170 -0
- package/dist/core/errors/codes.d.ts.map +1 -0
- package/dist/core/errors/codes.js +460 -0
- package/dist/core/errors/codes.js.map +1 -0
- package/dist/core/errors/index.d.ts +40 -0
- package/dist/core/errors/index.d.ts.map +1 -0
- package/dist/core/errors/index.js +79 -0
- package/dist/core/errors/index.js.map +1 -0
- package/dist/core/errors/types.d.ts +708 -0
- package/dist/core/errors/types.d.ts.map +1 -0
- package/dist/core/errors/types.js +791 -0
- package/dist/core/errors/types.js.map +1 -0
- package/dist/core/http/http-client.d.ts +140 -0
- package/dist/core/http/http-client.d.ts.map +1 -0
- package/dist/core/http/http-client.js +278 -0
- package/dist/core/http/http-client.js.map +1 -0
- package/dist/core/http/index.d.ts +37 -0
- package/dist/core/http/index.d.ts.map +1 -0
- package/dist/core/http/index.js +41 -0
- package/dist/core/http/index.js.map +1 -0
- package/dist/core/http/retry-policy.d.ts +99 -0
- package/dist/core/http/retry-policy.d.ts.map +1 -0
- package/dist/core/http/retry-policy.js +152 -0
- package/dist/core/http/retry-policy.js.map +1 -0
- package/dist/core/logging/context.d.ts +84 -0
- package/dist/core/logging/context.d.ts.map +1 -0
- package/dist/core/logging/context.js +124 -0
- package/dist/core/logging/context.js.map +1 -0
- package/dist/core/logging/formatters.d.ts +48 -0
- package/dist/core/logging/formatters.d.ts.map +1 -0
- package/dist/core/logging/formatters.js +186 -0
- package/dist/core/logging/formatters.js.map +1 -0
- package/dist/core/logging/index.d.ts +49 -0
- package/dist/core/logging/index.d.ts.map +1 -0
- package/dist/core/logging/index.js +52 -0
- package/dist/core/logging/index.js.map +1 -0
- package/dist/core/logging/logger.d.ts +120 -0
- package/dist/core/logging/logger.d.ts.map +1 -0
- package/dist/core/logging/logger.js +213 -0
- package/dist/core/logging/logger.js.map +1 -0
- package/dist/core/logging/types.d.ts +64 -0
- package/dist/core/logging/types.d.ts.map +1 -0
- package/dist/core/logging/types.js +29 -0
- package/dist/core/logging/types.js.map +1 -0
- package/dist/core/patterns/index.d.ts +11 -0
- package/dist/core/patterns/index.d.ts.map +1 -0
- package/dist/core/patterns/index.js +11 -0
- package/dist/core/patterns/index.js.map +1 -0
- package/dist/core/patterns/singleton.d.ts +69 -0
- package/dist/core/patterns/singleton.d.ts.map +1 -0
- package/dist/core/patterns/singleton.js +115 -0
- package/dist/core/patterns/singleton.js.map +1 -0
- package/dist/core/result/batch.d.ts +190 -0
- package/dist/core/result/batch.d.ts.map +1 -0
- package/dist/core/result/batch.js +391 -0
- package/dist/core/result/batch.js.map +1 -0
- package/dist/core/result/builders.d.ts +310 -0
- package/dist/core/result/builders.d.ts.map +1 -0
- package/dist/core/result/builders.js +454 -0
- package/dist/core/result/builders.js.map +1 -0
- package/dist/core/result/index.d.ts +51 -0
- package/dist/core/result/index.d.ts.map +1 -0
- package/dist/core/result/index.js +83 -0
- package/dist/core/result/index.js.map +1 -0
- package/dist/core/result/mcp-adapter.d.ts +192 -0
- package/dist/core/result/mcp-adapter.d.ts.map +1 -0
- package/dist/core/result/mcp-adapter.js +255 -0
- package/dist/core/result/mcp-adapter.js.map +1 -0
- package/dist/core/result/types.d.ts +170 -0
- package/dist/core/result/types.d.ts.map +1 -0
- package/dist/core/result/types.js +21 -0
- package/dist/core/result/types.js.map +1 -0
- package/dist/core/security/index.d.ts +41 -0
- package/dist/core/security/index.d.ts.map +1 -0
- package/dist/core/security/index.js +43 -0
- package/dist/core/security/index.js.map +1 -0
- package/dist/core/security/redaction.d.ts +138 -0
- package/dist/core/security/redaction.d.ts.map +1 -0
- package/dist/core/security/redaction.js +295 -0
- package/dist/core/security/redaction.js.map +1 -0
- package/dist/core/security/secure-logging.d.ts +189 -0
- package/dist/core/security/secure-logging.d.ts.map +1 -0
- package/dist/core/security/secure-logging.js +253 -0
- package/dist/core/security/secure-logging.js.map +1 -0
- package/dist/core/types/http-types.d.ts +94 -0
- package/dist/core/types/http-types.d.ts.map +1 -0
- package/dist/core/types/http-types.js +36 -0
- package/dist/core/types/http-types.js.map +1 -0
- package/dist/core/types/id-generators.d.ts +69 -0
- package/dist/core/types/id-generators.d.ts.map +1 -0
- package/dist/core/types/id-generators.js +96 -0
- package/dist/core/types/id-generators.js.map +1 -0
- package/dist/core/types/index.d.ts +13 -0
- package/dist/core/types/index.d.ts.map +1 -0
- package/dist/core/types/index.js +14 -0
- package/dist/core/types/index.js.map +1 -0
- package/dist/document/agent.d.ts +63 -0
- package/dist/document/agent.d.ts.map +1 -0
- package/dist/document/agent.js +245 -0
- package/dist/document/agent.js.map +1 -0
- package/dist/document/extractor.d.ts +158 -0
- package/dist/document/extractor.d.ts.map +1 -0
- package/dist/document/extractor.js +720 -0
- package/dist/document/extractor.js.map +1 -0
- package/dist/document/index.d.ts +16 -0
- package/dist/document/index.d.ts.map +1 -0
- package/dist/document/index.js +22 -0
- package/dist/document/index.js.map +1 -0
- package/dist/document/merger.d.ts +59 -0
- package/dist/document/merger.d.ts.map +1 -0
- package/dist/document/merger.js +593 -0
- package/dist/document/merger.js.map +1 -0
- package/dist/document/parser.d.ts +67 -0
- package/dist/document/parser.d.ts.map +1 -0
- package/dist/document/parser.js +359 -0
- package/dist/document/parser.js.map +1 -0
- package/dist/document/tools.d.ts +14 -0
- package/dist/document/tools.d.ts.map +1 -0
- package/dist/document/tools.js +279 -0
- package/dist/document/tools.js.map +1 -0
- package/dist/document/types.d.ts +290 -0
- package/dist/document/types.d.ts.map +1 -0
- package/dist/document/types.js +12 -0
- package/dist/document/types.js.map +1 -0
- package/dist/drift/baseline.d.ts +65 -0
- package/dist/drift/baseline.d.ts.map +1 -0
- package/dist/drift/baseline.js +179 -0
- package/dist/drift/baseline.js.map +1 -0
- package/dist/drift/circuit-breaker.d.ts +91 -0
- package/dist/drift/circuit-breaker.d.ts.map +1 -0
- package/dist/drift/circuit-breaker.js +237 -0
- package/dist/drift/circuit-breaker.js.map +1 -0
- package/dist/drift/index.d.ts +161 -0
- package/dist/drift/index.d.ts.map +1 -0
- package/dist/drift/index.js +247 -0
- package/dist/drift/index.js.map +1 -0
- package/dist/drift/monitor.d.ts +115 -0
- package/dist/drift/monitor.d.ts.map +1 -0
- package/dist/drift/monitor.js +367 -0
- package/dist/drift/monitor.js.map +1 -0
- package/dist/drift/tripwire.d.ts +81 -0
- package/dist/drift/tripwire.d.ts.map +1 -0
- package/dist/drift/tripwire.js +196 -0
- package/dist/drift/tripwire.js.map +1 -0
- package/dist/fidelity/index.d.ts +12 -0
- package/dist/fidelity/index.d.ts.map +1 -0
- package/dist/fidelity/index.js +12 -0
- package/dist/fidelity/index.js.map +1 -0
- package/dist/fidelity/refresh-hooks.d.ts +75 -0
- package/dist/fidelity/refresh-hooks.d.ts.map +1 -0
- package/dist/fidelity/refresh-hooks.js +151 -0
- package/dist/fidelity/refresh-hooks.js.map +1 -0
- package/dist/gatekeeper/checklist-generator.d.ts +45 -0
- package/dist/gatekeeper/checklist-generator.d.ts.map +1 -0
- package/dist/gatekeeper/checklist-generator.js +336 -0
- package/dist/gatekeeper/checklist-generator.js.map +1 -0
- package/dist/gatekeeper/coverage.d.ts +28 -0
- package/dist/gatekeeper/coverage.d.ts.map +1 -0
- package/dist/gatekeeper/coverage.js +234 -0
- package/dist/gatekeeper/coverage.js.map +1 -0
- package/dist/gatekeeper/hold-manager.d.ts +174 -0
- package/dist/gatekeeper/hold-manager.d.ts.map +1 -0
- package/dist/gatekeeper/hold-manager.js +723 -0
- package/dist/gatekeeper/hold-manager.js.map +1 -0
- package/dist/gatekeeper/index.d.ts +244 -0
- package/dist/gatekeeper/index.d.ts.map +1 -0
- package/dist/gatekeeper/index.js +854 -0
- package/dist/gatekeeper/index.js.map +1 -0
- package/dist/gatekeeper/interceptor.d.ts +54 -0
- package/dist/gatekeeper/interceptor.d.ts.map +1 -0
- package/dist/gatekeeper/interceptor.js +217 -0
- package/dist/gatekeeper/interceptor.js.map +1 -0
- package/dist/gatekeeper/resolver.d.ts +53 -0
- package/dist/gatekeeper/resolver.d.ts.map +1 -0
- package/dist/gatekeeper/resolver.js +314 -0
- package/dist/gatekeeper/resolver.js.map +1 -0
- package/dist/gatekeeper/validator.d.ts +26 -0
- package/dist/gatekeeper/validator.d.ts.map +1 -0
- package/dist/gatekeeper/validator.js +686 -0
- package/dist/gatekeeper/validator.js.map +1 -0
- package/dist/government/adapters/base-adapter.d.ts +366 -0
- package/dist/government/adapters/base-adapter.d.ts.map +1 -0
- package/dist/government/adapters/base-adapter.js +598 -0
- package/dist/government/adapters/base-adapter.js.map +1 -0
- package/dist/government/adapters/federal-register-adapter.d.ts +327 -0
- package/dist/government/adapters/federal-register-adapter.d.ts.map +1 -0
- package/dist/government/adapters/federal-register-adapter.js +595 -0
- package/dist/government/adapters/federal-register-adapter.js.map +1 -0
- package/dist/government/adapters/regulations-adapter.d.ts +432 -0
- package/dist/government/adapters/regulations-adapter.d.ts.map +1 -0
- package/dist/government/adapters/regulations-adapter.js +727 -0
- package/dist/government/adapters/regulations-adapter.js.map +1 -0
- package/dist/government/adapters/sam-entity-adapter.d.ts +354 -0
- package/dist/government/adapters/sam-entity-adapter.d.ts.map +1 -0
- package/dist/government/adapters/sam-entity-adapter.js +599 -0
- package/dist/government/adapters/sam-entity-adapter.js.map +1 -0
- package/dist/government/adapters/sam-opportunities-adapter.d.ts +221 -0
- package/dist/government/adapters/sam-opportunities-adapter.d.ts.map +1 -0
- package/dist/government/adapters/sam-opportunities-adapter.js +538 -0
- package/dist/government/adapters/sam-opportunities-adapter.js.map +1 -0
- package/dist/government/adapters/usaspending-adapter.d.ts +390 -0
- package/dist/government/adapters/usaspending-adapter.d.ts.map +1 -0
- package/dist/government/adapters/usaspending-adapter.js +455 -0
- package/dist/government/adapters/usaspending-adapter.js.map +1 -0
- package/dist/government/index.d.ts +128 -0
- package/dist/government/index.d.ts.map +1 -0
- package/dist/government/index.js +183 -0
- package/dist/government/index.js.map +1 -0
- package/dist/government/mappers/symbol-mapper.d.ts +87 -0
- package/dist/government/mappers/symbol-mapper.d.ts.map +1 -0
- package/dist/government/mappers/symbol-mapper.js +647 -0
- package/dist/government/mappers/symbol-mapper.js.map +1 -0
- package/dist/handlers/index.d.ts +10 -0
- package/dist/handlers/index.d.ts.map +1 -0
- package/dist/handlers/index.js +11 -0
- package/dist/handlers/index.js.map +1 -0
- package/dist/handlers/recon-tools.d.ts +364 -0
- package/dist/handlers/recon-tools.d.ts.map +1 -0
- package/dist/handlers/recon-tools.js +678 -0
- package/dist/handlers/recon-tools.js.map +1 -0
- package/dist/handlers/tool-dispatcher.d.ts +71 -0
- package/dist/handlers/tool-dispatcher.d.ts.map +1 -0
- package/dist/handlers/tool-dispatcher.js +114 -0
- package/dist/handlers/tool-dispatcher.js.map +1 -0
- package/dist/handlers/tool-registry.d.ts +76 -0
- package/dist/handlers/tool-registry.d.ts.map +1 -0
- package/dist/handlers/tool-registry.js +636 -0
- package/dist/handlers/tool-registry.js.map +1 -0
- package/dist/http/app.d.ts +24 -0
- package/dist/http/app.d.ts.map +1 -0
- package/dist/http/app.js +35 -0
- package/dist/http/app.js.map +1 -0
- package/dist/http/config.d.ts +42 -0
- package/dist/http/config.d.ts.map +1 -0
- package/dist/http/config.js +62 -0
- package/dist/http/config.js.map +1 -0
- package/dist/http/database/index.d.ts +49 -0
- package/dist/http/database/index.d.ts.map +1 -0
- package/dist/http/database/index.js +115 -0
- package/dist/http/database/index.js.map +1 -0
- package/dist/http/middleware/auth.d.ts +28 -0
- package/dist/http/middleware/auth.d.ts.map +1 -0
- package/dist/http/middleware/auth.js +157 -0
- package/dist/http/middleware/auth.js.map +1 -0
- package/dist/http/middleware/error-handler.d.ts +47 -0
- package/dist/http/middleware/error-handler.d.ts.map +1 -0
- package/dist/http/middleware/error-handler.js +213 -0
- package/dist/http/middleware/error-handler.js.map +1 -0
- package/dist/http/middleware/index.d.ts +38 -0
- package/dist/http/middleware/index.d.ts.map +1 -0
- package/dist/http/middleware/index.js +124 -0
- package/dist/http/middleware/index.js.map +1 -0
- package/dist/http/middleware/request-logger.d.ts +8 -0
- package/dist/http/middleware/request-logger.d.ts.map +1 -0
- package/dist/http/middleware/request-logger.js +58 -0
- package/dist/http/middleware/request-logger.js.map +1 -0
- package/dist/http/routes/agent-runtime.d.ts +9 -0
- package/dist/http/routes/agent-runtime.d.ts.map +1 -0
- package/dist/http/routes/agent-runtime.js +415 -0
- package/dist/http/routes/agent-runtime.js.map +1 -0
- package/dist/http/routes/agents.d.ts +9 -0
- package/dist/http/routes/agents.d.ts.map +1 -0
- package/dist/http/routes/agents.js +503 -0
- package/dist/http/routes/agents.js.map +1 -0
- package/dist/http/routes/broadcasts.d.ts +9 -0
- package/dist/http/routes/broadcasts.d.ts.map +1 -0
- package/dist/http/routes/broadcasts.js +223 -0
- package/dist/http/routes/broadcasts.js.map +1 -0
- package/dist/http/routes/dashboard.d.ts +9 -0
- package/dist/http/routes/dashboard.d.ts.map +1 -0
- package/dist/http/routes/dashboard.js +169 -0
- package/dist/http/routes/dashboard.js.map +1 -0
- package/dist/http/routes/ebay.d.ts +15 -0
- package/dist/http/routes/ebay.d.ts.map +1 -0
- package/dist/http/routes/ebay.js +242 -0
- package/dist/http/routes/ebay.js.map +1 -0
- package/dist/http/routes/health.d.ts +8 -0
- package/dist/http/routes/health.d.ts.map +1 -0
- package/dist/http/routes/health.js +66 -0
- package/dist/http/routes/health.js.map +1 -0
- package/dist/http/routes/index.d.ts +39 -0
- package/dist/http/routes/index.d.ts.map +1 -0
- package/dist/http/routes/index.js +89 -0
- package/dist/http/routes/index.js.map +1 -0
- package/dist/http/routes/missions.d.ts +9 -0
- package/dist/http/routes/missions.d.ts.map +1 -0
- package/dist/http/routes/missions.js +587 -0
- package/dist/http/routes/missions.js.map +1 -0
- package/dist/http/routes/openapi.d.ts +8 -0
- package/dist/http/routes/openapi.d.ts.map +1 -0
- package/dist/http/routes/openapi.js +76 -0
- package/dist/http/routes/openapi.js.map +1 -0
- package/dist/http/routes/symbols.d.ts +19 -0
- package/dist/http/routes/symbols.d.ts.map +1 -0
- package/dist/http/routes/symbols.js +219 -0
- package/dist/http/routes/symbols.js.map +1 -0
- package/dist/http/server-init.d.ts +69 -0
- package/dist/http/server-init.d.ts.map +1 -0
- package/dist/http/server-init.js +270 -0
- package/dist/http/server-init.js.map +1 -0
- package/dist/http/server.d.ts +14 -0
- package/dist/http/server.d.ts.map +1 -0
- package/dist/http/server.js +114 -0
- package/dist/http/server.js.map +1 -0
- package/dist/http/services/agent-runtime.d.ts +211 -0
- package/dist/http/services/agent-runtime.d.ts.map +1 -0
- package/dist/http/services/agent-runtime.js +603 -0
- package/dist/http/services/agent-runtime.js.map +1 -0
- package/dist/http/services/broadcasts.d.ts +142 -0
- package/dist/http/services/broadcasts.d.ts.map +1 -0
- package/dist/http/services/broadcasts.js +335 -0
- package/dist/http/services/broadcasts.js.map +1 -0
- package/dist/http/services/index.d.ts +10 -0
- package/dist/http/services/index.d.ts.map +1 -0
- package/dist/http/services/index.js +14 -0
- package/dist/http/services/index.js.map +1 -0
- package/dist/http/services/metrics.d.ts +144 -0
- package/dist/http/services/metrics.d.ts.map +1 -0
- package/dist/http/services/metrics.js +351 -0
- package/dist/http/services/metrics.js.map +1 -0
- package/dist/http/services/missions.d.ts +224 -0
- package/dist/http/services/missions.d.ts.map +1 -0
- package/dist/http/services/missions.js +701 -0
- package/dist/http/services/missions.js.map +1 -0
- package/dist/http/services/symbol.service.d.ts +62 -0
- package/dist/http/services/symbol.service.d.ts.map +1 -0
- package/dist/http/services/symbol.service.js +222 -0
- package/dist/http/services/symbol.service.js.map +1 -0
- package/dist/http/websocket/index.d.ts +50 -0
- package/dist/http/websocket/index.d.ts.map +1 -0
- package/dist/http/websocket/index.js +293 -0
- package/dist/http/websocket/index.js.map +1 -0
- package/dist/legal/__tests__/calendar-integration.test.d.ts +7 -0
- package/dist/legal/__tests__/calendar-integration.test.d.ts.map +1 -0
- package/dist/legal/__tests__/calendar-integration.test.js +643 -0
- package/dist/legal/__tests__/calendar-integration.test.js.map +1 -0
- package/dist/legal/batch-parser.d.ts +185 -0
- package/dist/legal/batch-parser.d.ts.map +1 -0
- package/dist/legal/batch-parser.js +348 -0
- package/dist/legal/batch-parser.js.map +1 -0
- package/dist/legal/calendar-integration.d.ts +209 -0
- package/dist/legal/calendar-integration.d.ts.map +1 -0
- package/dist/legal/calendar-integration.js +341 -0
- package/dist/legal/calendar-integration.js.map +1 -0
- package/dist/legal/calendar-tools.d.ts +39 -0
- package/dist/legal/calendar-tools.d.ts.map +1 -0
- package/dist/legal/calendar-tools.js +606 -0
- package/dist/legal/calendar-tools.js.map +1 -0
- package/dist/legal/calendar-types.d.ts +152 -0
- package/dist/legal/calendar-types.d.ts.map +1 -0
- package/dist/legal/calendar-types.js +88 -0
- package/dist/legal/calendar-types.js.map +1 -0
- package/dist/legal/citation-validator.d.ts +97 -0
- package/dist/legal/citation-validator.d.ts.map +1 -0
- package/dist/legal/citation-validator.js +1487 -0
- package/dist/legal/citation-validator.js.map +1 -0
- package/dist/legal/courtlistener-adapter.d.ts +156 -0
- package/dist/legal/courtlistener-adapter.d.ts.map +1 -0
- package/dist/legal/courtlistener-adapter.js +684 -0
- package/dist/legal/courtlistener-adapter.js.map +1 -0
- package/dist/legal/deadline-extractor.d.ts +71 -0
- package/dist/legal/deadline-extractor.d.ts.map +1 -0
- package/dist/legal/deadline-extractor.js +557 -0
- package/dist/legal/deadline-extractor.js.map +1 -0
- package/dist/legal/ical-generator.d.ts +83 -0
- package/dist/legal/ical-generator.d.ts.map +1 -0
- package/dist/legal/ical-generator.js +322 -0
- package/dist/legal/ical-generator.js.map +1 -0
- package/dist/legal/index.d.ts +17 -0
- package/dist/legal/index.d.ts.map +1 -0
- package/dist/legal/index.js +32 -0
- package/dist/legal/index.js.map +1 -0
- package/dist/legal/legal-preflight.d.ts +86 -0
- package/dist/legal/legal-preflight.d.ts.map +1 -0
- package/dist/legal/legal-preflight.js +442 -0
- package/dist/legal/legal-preflight.js.map +1 -0
- package/dist/legal/types.d.ts +303 -0
- package/dist/legal/types.d.ts.map +1 -0
- package/dist/legal/types.js +38 -0
- package/dist/legal/types.js.map +1 -0
- package/dist/multi_agent/__tests__/intent-tools.test.d.ts +7 -0
- package/dist/multi_agent/__tests__/intent-tools.test.d.ts.map +1 -0
- package/dist/multi_agent/__tests__/intent-tools.test.js +604 -0
- package/dist/multi_agent/__tests__/intent-tools.test.js.map +1 -0
- package/dist/multi_agent/agent-registry.d.ts +132 -0
- package/dist/multi_agent/agent-registry.d.ts.map +1 -0
- package/dist/multi_agent/agent-registry.js +311 -0
- package/dist/multi_agent/agent-registry.js.map +1 -0
- package/dist/multi_agent/boot-camp.d.ts +159 -0
- package/dist/multi_agent/boot-camp.d.ts.map +1 -0
- package/dist/multi_agent/boot-camp.js +463 -0
- package/dist/multi_agent/boot-camp.js.map +1 -0
- package/dist/multi_agent/container.d.ts +87 -0
- package/dist/multi_agent/container.d.ts.map +1 -0
- package/dist/multi_agent/container.js +99 -0
- package/dist/multi_agent/container.js.map +1 -0
- package/dist/multi_agent/index.d.ts +32 -0
- package/dist/multi_agent/index.d.ts.map +1 -0
- package/dist/multi_agent/index.js +67 -0
- package/dist/multi_agent/index.js.map +1 -0
- package/dist/multi_agent/intent-manager.d.ts +119 -0
- package/dist/multi_agent/intent-manager.d.ts.map +1 -0
- package/dist/multi_agent/intent-manager.js +571 -0
- package/dist/multi_agent/intent-manager.js.map +1 -0
- package/dist/multi_agent/intent-tools.d.ts +370 -0
- package/dist/multi_agent/intent-tools.d.ts.map +1 -0
- package/dist/multi_agent/intent-tools.js +661 -0
- package/dist/multi_agent/intent-tools.js.map +1 -0
- package/dist/multi_agent/intent-types.d.ts +435 -0
- package/dist/multi_agent/intent-types.d.ts.map +1 -0
- package/dist/multi_agent/intent-types.js +17 -0
- package/dist/multi_agent/intent-types.js.map +1 -0
- package/dist/multi_agent/lru-cache.d.ts +140 -0
- package/dist/multi_agent/lru-cache.d.ts.map +1 -0
- package/dist/multi_agent/lru-cache.js +310 -0
- package/dist/multi_agent/lru-cache.js.map +1 -0
- package/dist/multi_agent/mission.d.ts +151 -0
- package/dist/multi_agent/mission.d.ts.map +1 -0
- package/dist/multi_agent/mission.js +439 -0
- package/dist/multi_agent/mission.js.map +1 -0
- package/dist/multi_agent/tool-dispatcher.d.ts +325 -0
- package/dist/multi_agent/tool-dispatcher.d.ts.map +1 -0
- package/dist/multi_agent/tool-dispatcher.js +108 -0
- package/dist/multi_agent/tool-dispatcher.js.map +1 -0
- package/dist/multi_agent/tools.d.ts +543 -0
- package/dist/multi_agent/tools.d.ts.map +1 -0
- package/dist/multi_agent/tools.js +1081 -0
- package/dist/multi_agent/tools.js.map +1 -0
- package/dist/notifications/webhook-dispatcher.d.ts +98 -0
- package/dist/notifications/webhook-dispatcher.d.ts.map +1 -0
- package/dist/notifications/webhook-dispatcher.js +548 -0
- package/dist/notifications/webhook-dispatcher.js.map +1 -0
- package/dist/operator/config.d.ts +128 -0
- package/dist/operator/config.d.ts.map +1 -0
- package/dist/operator/config.js +309 -0
- package/dist/operator/config.js.map +1 -0
- package/dist/operator/index.d.ts +116 -0
- package/dist/operator/index.d.ts.map +1 -0
- package/dist/operator/index.js +207 -0
- package/dist/operator/index.js.map +1 -0
- package/dist/policies/loader.d.ts +120 -0
- package/dist/policies/loader.d.ts.map +1 -0
- package/dist/policies/loader.js +193 -0
- package/dist/policies/loader.js.map +1 -0
- package/dist/recon/agent/analyst.d.ts +159 -0
- package/dist/recon/agent/analyst.d.ts.map +1 -0
- package/dist/recon/agent/analyst.js +689 -0
- package/dist/recon/agent/analyst.js.map +1 -0
- package/dist/recon/agent/performer.d.ts +175 -0
- package/dist/recon/agent/performer.d.ts.map +1 -0
- package/dist/recon/agent/performer.js +367 -0
- package/dist/recon/agent/performer.js.map +1 -0
- package/dist/recon/agent/runtime.d.ts +184 -0
- package/dist/recon/agent/runtime.d.ts.map +1 -0
- package/dist/recon/agent/runtime.js +474 -0
- package/dist/recon/agent/runtime.js.map +1 -0
- package/dist/recon/agent/veto-gate.d.ts +167 -0
- package/dist/recon/agent/veto-gate.d.ts.map +1 -0
- package/dist/recon/agent/veto-gate.js +393 -0
- package/dist/recon/agent/veto-gate.js.map +1 -0
- package/dist/recon/chat/web-chat-adapter.d.ts +190 -0
- package/dist/recon/chat/web-chat-adapter.d.ts.map +1 -0
- package/dist/recon/chat/web-chat-adapter.js +368 -0
- package/dist/recon/chat/web-chat-adapter.js.map +1 -0
- package/dist/recon/delivery/base-channel.d.ts +130 -0
- package/dist/recon/delivery/base-channel.d.ts.map +1 -0
- package/dist/recon/delivery/base-channel.js +260 -0
- package/dist/recon/delivery/base-channel.js.map +1 -0
- package/dist/recon/delivery/callback-channel.d.ts +156 -0
- package/dist/recon/delivery/callback-channel.d.ts.map +1 -0
- package/dist/recon/delivery/callback-channel.js +321 -0
- package/dist/recon/delivery/callback-channel.js.map +1 -0
- package/dist/recon/delivery/console-channel.d.ts +109 -0
- package/dist/recon/delivery/console-channel.d.ts.map +1 -0
- package/dist/recon/delivery/console-channel.js +311 -0
- package/dist/recon/delivery/console-channel.js.map +1 -0
- package/dist/recon/delivery/delivery-manager.d.ts +129 -0
- package/dist/recon/delivery/delivery-manager.d.ts.map +1 -0
- package/dist/recon/delivery/delivery-manager.js +450 -0
- package/dist/recon/delivery/delivery-manager.js.map +1 -0
- package/dist/recon/delivery/index.d.ts +52 -0
- package/dist/recon/delivery/index.d.ts.map +1 -0
- package/dist/recon/delivery/index.js +83 -0
- package/dist/recon/delivery/index.js.map +1 -0
- package/dist/recon/delivery/types.d.ts +191 -0
- package/dist/recon/delivery/types.d.ts.map +1 -0
- package/dist/recon/delivery/types.js +37 -0
- package/dist/recon/delivery/types.js.map +1 -0
- package/dist/recon/index.d.ts +86 -0
- package/dist/recon/index.d.ts.map +1 -0
- package/dist/recon/index.js +189 -0
- package/dist/recon/index.js.map +1 -0
- package/dist/recon/persistence/index.d.ts +103 -0
- package/dist/recon/persistence/index.d.ts.map +1 -0
- package/dist/recon/persistence/index.js +118 -0
- package/dist/recon/persistence/index.js.map +1 -0
- package/dist/recon/persistence/storage.d.ts +166 -0
- package/dist/recon/persistence/storage.d.ts.map +1 -0
- package/dist/recon/persistence/storage.js +793 -0
- package/dist/recon/persistence/storage.js.map +1 -0
- package/dist/recon/persistence/types.d.ts +254 -0
- package/dist/recon/persistence/types.d.ts.map +1 -0
- package/dist/recon/persistence/types.js +130 -0
- package/dist/recon/persistence/types.js.map +1 -0
- package/dist/recon/ralph-loop/executor.d.ts +122 -0
- package/dist/recon/ralph-loop/executor.d.ts.map +1 -0
- package/dist/recon/ralph-loop/executor.js +426 -0
- package/dist/recon/ralph-loop/executor.js.map +1 -0
- package/dist/recon/ralph-loop/scheduler.d.ts +145 -0
- package/dist/recon/ralph-loop/scheduler.d.ts.map +1 -0
- package/dist/recon/ralph-loop/scheduler.js +244 -0
- package/dist/recon/ralph-loop/scheduler.js.map +1 -0
- package/dist/recon/reports/formatters/index.d.ts +13 -0
- package/dist/recon/reports/formatters/index.d.ts.map +1 -0
- package/dist/recon/reports/formatters/index.js +13 -0
- package/dist/recon/reports/formatters/index.js.map +1 -0
- package/dist/recon/reports/formatters/json-formatter.d.ts +39 -0
- package/dist/recon/reports/formatters/json-formatter.d.ts.map +1 -0
- package/dist/recon/reports/formatters/json-formatter.js +260 -0
- package/dist/recon/reports/formatters/json-formatter.js.map +1 -0
- package/dist/recon/reports/formatters/markdown-formatter.d.ts +16 -0
- package/dist/recon/reports/formatters/markdown-formatter.d.ts.map +1 -0
- package/dist/recon/reports/formatters/markdown-formatter.js +332 -0
- package/dist/recon/reports/formatters/markdown-formatter.js.map +1 -0
- package/dist/recon/reports/formatters/text-formatter.d.ts +29 -0
- package/dist/recon/reports/formatters/text-formatter.d.ts.map +1 -0
- package/dist/recon/reports/formatters/text-formatter.js +360 -0
- package/dist/recon/reports/formatters/text-formatter.js.map +1 -0
- package/dist/recon/reports/index.d.ts +31 -0
- package/dist/recon/reports/index.d.ts.map +1 -0
- package/dist/recon/reports/index.js +33 -0
- package/dist/recon/reports/index.js.map +1 -0
- package/dist/recon/reports/report-generator.d.ts +147 -0
- package/dist/recon/reports/report-generator.d.ts.map +1 -0
- package/dist/recon/reports/report-generator.js +434 -0
- package/dist/recon/reports/report-generator.js.map +1 -0
- package/dist/recon/reports/sections/constraint-violations.d.ts +22 -0
- package/dist/recon/reports/sections/constraint-violations.d.ts.map +1 -0
- package/dist/recon/reports/sections/constraint-violations.js +383 -0
- package/dist/recon/reports/sections/constraint-violations.js.map +1 -0
- package/dist/recon/reports/sections/drift-analysis.d.ts +22 -0
- package/dist/recon/reports/sections/drift-analysis.d.ts.map +1 -0
- package/dist/recon/reports/sections/drift-analysis.js +270 -0
- package/dist/recon/reports/sections/drift-analysis.js.map +1 -0
- package/dist/recon/reports/sections/index.d.ts +23 -0
- package/dist/recon/reports/sections/index.d.ts.map +1 -0
- package/dist/recon/reports/sections/index.js +18 -0
- package/dist/recon/reports/sections/index.js.map +1 -0
- package/dist/recon/reports/sections/intelligence-gathered.d.ts +22 -0
- package/dist/recon/reports/sections/intelligence-gathered.d.ts.map +1 -0
- package/dist/recon/reports/sections/intelligence-gathered.js +373 -0
- package/dist/recon/reports/sections/intelligence-gathered.js.map +1 -0
- package/dist/recon/reports/sections/mission-overview.d.ts +22 -0
- package/dist/recon/reports/sections/mission-overview.d.ts.map +1 -0
- package/dist/recon/reports/sections/mission-overview.js +256 -0
- package/dist/recon/reports/sections/mission-overview.js.map +1 -0
- package/dist/recon/reports/sections/opposing-agent-profile.d.ts +22 -0
- package/dist/recon/reports/sections/opposing-agent-profile.d.ts.map +1 -0
- package/dist/recon/reports/sections/opposing-agent-profile.js +253 -0
- package/dist/recon/reports/sections/opposing-agent-profile.js.map +1 -0
- package/dist/recon/reports/sections/recommendations.d.ts +22 -0
- package/dist/recon/reports/sections/recommendations.d.ts.map +1 -0
- package/dist/recon/reports/sections/recommendations.js +341 -0
- package/dist/recon/reports/sections/recommendations.js.map +1 -0
- package/dist/recon/reports/sections/tactics-observed.d.ts +30 -0
- package/dist/recon/reports/sections/tactics-observed.d.ts.map +1 -0
- package/dist/recon/reports/sections/tactics-observed.js +275 -0
- package/dist/recon/reports/sections/tactics-observed.js.map +1 -0
- package/dist/recon/reports/types.d.ts +320 -0
- package/dist/recon/reports/types.d.ts.map +1 -0
- package/dist/recon/reports/types.js +13 -0
- package/dist/recon/reports/types.js.map +1 -0
- package/dist/recon/stealth/timing-calculator.d.ts +128 -0
- package/dist/recon/stealth/timing-calculator.d.ts.map +1 -0
- package/dist/recon/stealth/timing-calculator.js +288 -0
- package/dist/recon/stealth/timing-calculator.js.map +1 -0
- package/dist/recon/stealth/typing-simulator.d.ts +107 -0
- package/dist/recon/stealth/typing-simulator.d.ts.map +1 -0
- package/dist/recon/stealth/typing-simulator.js +376 -0
- package/dist/recon/stealth/typing-simulator.js.map +1 -0
- package/dist/recon/stealth/typo-generator.d.ts +95 -0
- package/dist/recon/stealth/typo-generator.d.ts.map +1 -0
- package/dist/recon/stealth/typo-generator.js +354 -0
- package/dist/recon/stealth/typo-generator.js.map +1 -0
- package/dist/recon/symbol/schema.d.ts +124 -0
- package/dist/recon/symbol/schema.d.ts.map +1 -0
- package/dist/recon/symbol/schema.js +441 -0
- package/dist/recon/symbol/schema.js.map +1 -0
- package/dist/recon/symbol/validator.d.ts +130 -0
- package/dist/recon/symbol/validator.d.ts.map +1 -0
- package/dist/recon/symbol/validator.js +619 -0
- package/dist/recon/symbol/validator.js.map +1 -0
- package/dist/recon/templates/customer-service/account-issue.d.ts +59 -0
- package/dist/recon/templates/customer-service/account-issue.d.ts.map +1 -0
- package/dist/recon/templates/customer-service/account-issue.js +170 -0
- package/dist/recon/templates/customer-service/account-issue.js.map +1 -0
- package/dist/recon/templates/customer-service/complaint.d.ts +60 -0
- package/dist/recon/templates/customer-service/complaint.d.ts.map +1 -0
- package/dist/recon/templates/customer-service/complaint.js +171 -0
- package/dist/recon/templates/customer-service/complaint.js.map +1 -0
- package/dist/recon/templates/customer-service/index.d.ts +21 -0
- package/dist/recon/templates/customer-service/index.d.ts.map +1 -0
- package/dist/recon/templates/customer-service/index.js +29 -0
- package/dist/recon/templates/customer-service/index.js.map +1 -0
- package/dist/recon/templates/customer-service/refund-request.d.ts +58 -0
- package/dist/recon/templates/customer-service/refund-request.d.ts.map +1 -0
- package/dist/recon/templates/customer-service/refund-request.js +161 -0
- package/dist/recon/templates/customer-service/refund-request.js.map +1 -0
- package/dist/recon/templates/index.d.ts +186 -0
- package/dist/recon/templates/index.d.ts.map +1 -0
- package/dist/recon/templates/index.js +316 -0
- package/dist/recon/templates/index.js.map +1 -0
- package/dist/recon/templates/sales/index.d.ts +20 -0
- package/dist/recon/templates/sales/index.d.ts.map +1 -0
- package/dist/recon/templates/sales/index.js +26 -0
- package/dist/recon/templates/sales/index.js.map +1 -0
- package/dist/recon/templates/sales/price-negotiation.d.ts +60 -0
- package/dist/recon/templates/sales/price-negotiation.d.ts.map +1 -0
- package/dist/recon/templates/sales/price-negotiation.js +167 -0
- package/dist/recon/templates/sales/price-negotiation.js.map +1 -0
- package/dist/recon/templates/sales/product-inquiry.d.ts +60 -0
- package/dist/recon/templates/sales/product-inquiry.d.ts.map +1 -0
- package/dist/recon/templates/sales/product-inquiry.js +167 -0
- package/dist/recon/templates/sales/product-inquiry.js.map +1 -0
- package/dist/recon/templates/support/feature-request.d.ts +60 -0
- package/dist/recon/templates/support/feature-request.d.ts.map +1 -0
- package/dist/recon/templates/support/feature-request.js +167 -0
- package/dist/recon/templates/support/feature-request.js.map +1 -0
- package/dist/recon/templates/support/index.d.ts +20 -0
- package/dist/recon/templates/support/index.d.ts.map +1 -0
- package/dist/recon/templates/support/index.js +26 -0
- package/dist/recon/templates/support/index.js.map +1 -0
- package/dist/recon/templates/support/troubleshooting.d.ts +60 -0
- package/dist/recon/templates/support/troubleshooting.d.ts.map +1 -0
- package/dist/recon/templates/support/troubleshooting.js +173 -0
- package/dist/recon/templates/support/troubleshooting.js.map +1 -0
- package/dist/recon/templates/types.d.ts +144 -0
- package/dist/recon/templates/types.d.ts.map +1 -0
- package/dist/recon/templates/types.js +40 -0
- package/dist/recon/templates/types.js.map +1 -0
- package/dist/recon/testing/index.d.ts +43 -0
- package/dist/recon/testing/index.d.ts.map +1 -0
- package/dist/recon/testing/index.js +55 -0
- package/dist/recon/testing/index.js.map +1 -0
- package/dist/recon/testing/metrics-collector.d.ts +185 -0
- package/dist/recon/testing/metrics-collector.d.ts.map +1 -0
- package/dist/recon/testing/metrics-collector.js +397 -0
- package/dist/recon/testing/metrics-collector.js.map +1 -0
- package/dist/recon/testing/mock-chatbot.d.ts +147 -0
- package/dist/recon/testing/mock-chatbot.d.ts.map +1 -0
- package/dist/recon/testing/mock-chatbot.js +500 -0
- package/dist/recon/testing/mock-chatbot.js.map +1 -0
- package/dist/recon/testing/scenario-runner.d.ts +154 -0
- package/dist/recon/testing/scenario-runner.d.ts.map +1 -0
- package/dist/recon/testing/scenario-runner.js +242 -0
- package/dist/recon/testing/scenario-runner.js.map +1 -0
- package/dist/recon/testing/test-scenarios.d.ts +135 -0
- package/dist/recon/testing/test-scenarios.d.ts.map +1 -0
- package/dist/recon/testing/test-scenarios.js +358 -0
- package/dist/recon/testing/test-scenarios.js.map +1 -0
- package/dist/recon/types.d.ts +821 -0
- package/dist/recon/types.d.ts.map +1 -0
- package/dist/recon/types.js +167 -0
- package/dist/recon/types.js.map +1 -0
- package/dist/scheduler/naics-monitor.d.ts +82 -0
- package/dist/scheduler/naics-monitor.d.ts.map +1 -0
- package/dist/scheduler/naics-monitor.js +534 -0
- package/dist/scheduler/naics-monitor.js.map +1 -0
- package/dist/server-init.d.ts +89 -0
- package/dist/server-init.d.ts.map +1 -0
- package/dist/server-init.js +242 -0
- package/dist/server-init.js.map +1 -0
- package/dist/server.d.ts +14 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +99 -0
- package/dist/server.js.map +1 -0
- package/dist/swarm/alerts/alert-engine.d.ts +64 -0
- package/dist/swarm/alerts/alert-engine.d.ts.map +1 -0
- package/dist/swarm/alerts/alert-engine.js +343 -0
- package/dist/swarm/alerts/alert-engine.js.map +1 -0
- package/dist/swarm/alerts/index.d.ts +7 -0
- package/dist/swarm/alerts/index.d.ts.map +1 -0
- package/dist/swarm/alerts/index.js +7 -0
- package/dist/swarm/alerts/index.js.map +1 -0
- package/dist/swarm/budget-allocator.d.ts +153 -0
- package/dist/swarm/budget-allocator.d.ts.map +1 -0
- package/dist/swarm/budget-allocator.js +402 -0
- package/dist/swarm/budget-allocator.js.map +1 -0
- package/dist/swarm/database.d.ts +202 -0
- package/dist/swarm/database.d.ts.map +1 -0
- package/dist/swarm/database.js +1389 -0
- package/dist/swarm/database.js.map +1 -0
- package/dist/swarm/demo/fixtures/index.d.ts +7 -0
- package/dist/swarm/demo/fixtures/index.d.ts.map +1 -0
- package/dist/swarm/demo/fixtures/index.js +7 -0
- package/dist/swarm/demo/fixtures/index.js.map +1 -0
- package/dist/swarm/demo/fixtures/sample-listings.d.ts +38 -0
- package/dist/swarm/demo/fixtures/sample-listings.d.ts.map +1 -0
- package/dist/swarm/demo/fixtures/sample-listings.js +390 -0
- package/dist/swarm/demo/fixtures/sample-listings.js.map +1 -0
- package/dist/swarm/demo/index.d.ts +9 -0
- package/dist/swarm/demo/index.d.ts.map +1 -0
- package/dist/swarm/demo/index.js +12 -0
- package/dist/swarm/demo/index.js.map +1 -0
- package/dist/swarm/demo/swarm-demo.d.ts +110 -0
- package/dist/swarm/demo/swarm-demo.d.ts.map +1 -0
- package/dist/swarm/demo/swarm-demo.js +423 -0
- package/dist/swarm/demo/swarm-demo.js.map +1 -0
- package/dist/swarm/ebay/auth.d.ts +98 -0
- package/dist/swarm/ebay/auth.d.ts.map +1 -0
- package/dist/swarm/ebay/auth.js +268 -0
- package/dist/swarm/ebay/auth.js.map +1 -0
- package/dist/swarm/ebay/client.d.ts +111 -0
- package/dist/swarm/ebay/client.d.ts.map +1 -0
- package/dist/swarm/ebay/client.js +433 -0
- package/dist/swarm/ebay/client.js.map +1 -0
- package/dist/swarm/ebay/index.d.ts +11 -0
- package/dist/swarm/ebay/index.d.ts.map +1 -0
- package/dist/swarm/ebay/index.js +11 -0
- package/dist/swarm/ebay/index.js.map +1 -0
- package/dist/swarm/ebay/rate-limiter.d.ts +115 -0
- package/dist/swarm/ebay/rate-limiter.d.ts.map +1 -0
- package/dist/swarm/ebay/rate-limiter.js +264 -0
- package/dist/swarm/ebay/rate-limiter.js.map +1 -0
- package/dist/swarm/ebay/sandbox-config.d.ts +280 -0
- package/dist/swarm/ebay/sandbox-config.d.ts.map +1 -0
- package/dist/swarm/ebay/sandbox-config.js +353 -0
- package/dist/swarm/ebay/sandbox-config.js.map +1 -0
- package/dist/swarm/ebay/types.d.ts +532 -0
- package/dist/swarm/ebay/types.d.ts.map +1 -0
- package/dist/swarm/ebay/types.js +64 -0
- package/dist/swarm/ebay/types.js.map +1 -0
- package/dist/swarm/hooks/alert-hook.d.ts +18 -0
- package/dist/swarm/hooks/alert-hook.d.ts.map +1 -0
- package/dist/swarm/hooks/alert-hook.js +44 -0
- package/dist/swarm/hooks/alert-hook.js.map +1 -0
- package/dist/swarm/hooks/database-sync-hook.d.ts +19 -0
- package/dist/swarm/hooks/database-sync-hook.d.ts.map +1 -0
- package/dist/swarm/hooks/database-sync-hook.js +121 -0
- package/dist/swarm/hooks/database-sync-hook.js.map +1 -0
- package/dist/swarm/hooks/index.d.ts +61 -0
- package/dist/swarm/hooks/index.d.ts.map +1 -0
- package/dist/swarm/hooks/index.js +103 -0
- package/dist/swarm/hooks/index.js.map +1 -0
- package/dist/swarm/hooks/observation-hooks.d.ts +178 -0
- package/dist/swarm/hooks/observation-hooks.d.ts.map +1 -0
- package/dist/swarm/hooks/observation-hooks.js +319 -0
- package/dist/swarm/hooks/observation-hooks.js.map +1 -0
- package/dist/swarm/hooks/pinecone-sync-hook.d.ts +58 -0
- package/dist/swarm/hooks/pinecone-sync-hook.d.ts.map +1 -0
- package/dist/swarm/hooks/pinecone-sync-hook.js +193 -0
- package/dist/swarm/hooks/pinecone-sync-hook.js.map +1 -0
- package/dist/swarm/hooks/webhook-alert-hook.d.ts +35 -0
- package/dist/swarm/hooks/webhook-alert-hook.d.ts.map +1 -0
- package/dist/swarm/hooks/webhook-alert-hook.js +251 -0
- package/dist/swarm/hooks/webhook-alert-hook.js.map +1 -0
- package/dist/swarm/index.d.ts +33 -0
- package/dist/swarm/index.d.ts.map +1 -0
- package/dist/swarm/index.js +59 -0
- package/dist/swarm/index.js.map +1 -0
- package/dist/swarm/registry/event-emitter.d.ts +116 -0
- package/dist/swarm/registry/event-emitter.d.ts.map +1 -0
- package/dist/swarm/registry/event-emitter.js +188 -0
- package/dist/swarm/registry/event-emitter.js.map +1 -0
- package/dist/swarm/registry/index.d.ts +9 -0
- package/dist/swarm/registry/index.d.ts.map +1 -0
- package/dist/swarm/registry/index.js +9 -0
- package/dist/swarm/registry/index.js.map +1 -0
- package/dist/swarm/registry/insight-computer.d.ts +114 -0
- package/dist/swarm/registry/insight-computer.d.ts.map +1 -0
- package/dist/swarm/registry/insight-computer.js +387 -0
- package/dist/swarm/registry/insight-computer.js.map +1 -0
- package/dist/swarm/registry/symbol-mapper.d.ts +115 -0
- package/dist/swarm/registry/symbol-mapper.d.ts.map +1 -0
- package/dist/swarm/registry/symbol-mapper.js +229 -0
- package/dist/swarm/registry/symbol-mapper.js.map +1 -0
- package/dist/swarm/resources/index.d.ts +7 -0
- package/dist/swarm/resources/index.d.ts.map +1 -0
- package/dist/swarm/resources/index.js +7 -0
- package/dist/swarm/resources/index.js.map +1 -0
- package/dist/swarm/resources/intelligence-resources.d.ts +64 -0
- package/dist/swarm/resources/intelligence-resources.d.ts.map +1 -0
- package/dist/swarm/resources/intelligence-resources.js +309 -0
- package/dist/swarm/resources/intelligence-resources.js.map +1 -0
- package/dist/swarm/strategies/early-aggressive.d.ts +59 -0
- package/dist/swarm/strategies/early-aggressive.d.ts.map +1 -0
- package/dist/swarm/strategies/early-aggressive.js +283 -0
- package/dist/swarm/strategies/early-aggressive.js.map +1 -0
- package/dist/swarm/strategies/hybrid.d.ts +58 -0
- package/dist/swarm/strategies/hybrid.d.ts.map +1 -0
- package/dist/swarm/strategies/hybrid.js +336 -0
- package/dist/swarm/strategies/hybrid.js.map +1 -0
- package/dist/swarm/strategies/index.d.ts +35 -0
- package/dist/swarm/strategies/index.d.ts.map +1 -0
- package/dist/swarm/strategies/index.js +94 -0
- package/dist/swarm/strategies/index.js.map +1 -0
- package/dist/swarm/strategies/negotiator.d.ts +66 -0
- package/dist/swarm/strategies/negotiator.d.ts.map +1 -0
- package/dist/swarm/strategies/negotiator.js +326 -0
- package/dist/swarm/strategies/negotiator.js.map +1 -0
- package/dist/swarm/strategies/passive.d.ts +56 -0
- package/dist/swarm/strategies/passive.d.ts.map +1 -0
- package/dist/swarm/strategies/passive.js +247 -0
- package/dist/swarm/strategies/passive.js.map +1 -0
- package/dist/swarm/strategies/sniper.d.ts +43 -0
- package/dist/swarm/strategies/sniper.d.ts.map +1 -0
- package/dist/swarm/strategies/sniper.js +176 -0
- package/dist/swarm/strategies/sniper.js.map +1 -0
- package/dist/swarm/strategies/types.d.ts +256 -0
- package/dist/swarm/strategies/types.d.ts.map +1 -0
- package/dist/swarm/strategies/types.js +251 -0
- package/dist/swarm/strategies/types.js.map +1 -0
- package/dist/swarm/swarm-controller.d.ts +197 -0
- package/dist/swarm/swarm-controller.d.ts.map +1 -0
- package/dist/swarm/swarm-controller.js +812 -0
- package/dist/swarm/swarm-controller.js.map +1 -0
- package/dist/swarm/tools/index.d.ts +7 -0
- package/dist/swarm/tools/index.d.ts.map +1 -0
- package/dist/swarm/tools/index.js +7 -0
- package/dist/swarm/tools/index.js.map +1 -0
- package/dist/swarm/tools/intelligence-tools.d.ts +36 -0
- package/dist/swarm/tools/intelligence-tools.d.ts.map +1 -0
- package/dist/swarm/tools/intelligence-tools.js +508 -0
- package/dist/swarm/tools/intelligence-tools.js.map +1 -0
- package/dist/swarm/tools.d.ts +451 -0
- package/dist/swarm/tools.d.ts.map +1 -0
- package/dist/swarm/tools.js +465 -0
- package/dist/swarm/tools.js.map +1 -0
- package/dist/swarm/types.d.ts +744 -0
- package/dist/swarm/types.d.ts.map +1 -0
- package/dist/swarm/types.js +109 -0
- package/dist/swarm/types.js.map +1 -0
- package/dist/swarm/vectors/index.d.ts +8 -0
- package/dist/swarm/vectors/index.d.ts.map +1 -0
- package/dist/swarm/vectors/index.js +15 -0
- package/dist/swarm/vectors/index.js.map +1 -0
- package/dist/swarm/vectors/pinecone-client.d.ts +234 -0
- package/dist/swarm/vectors/pinecone-client.d.ts.map +1 -0
- package/dist/swarm/vectors/pinecone-client.js +290 -0
- package/dist/swarm/vectors/pinecone-client.js.map +1 -0
- package/dist/swarm/vectors/swarm-vectors.d.ts +119 -0
- package/dist/swarm/vectors/swarm-vectors.d.ts.map +1 -0
- package/dist/swarm/vectors/swarm-vectors.js +217 -0
- package/dist/swarm/vectors/swarm-vectors.js.map +1 -0
- package/dist/symbols/audit.d.ts +100 -0
- package/dist/symbols/audit.d.ts.map +1 -0
- package/dist/symbols/audit.js +391 -0
- package/dist/symbols/audit.js.map +1 -0
- package/dist/symbols/claim-validator.d.ts +113 -0
- package/dist/symbols/claim-validator.d.ts.map +1 -0
- package/dist/symbols/claim-validator.js +386 -0
- package/dist/symbols/claim-validator.js.map +1 -0
- package/dist/symbols/database.d.ts +285 -0
- package/dist/symbols/database.d.ts.map +1 -0
- package/dist/symbols/database.js +932 -0
- package/dist/symbols/database.js.map +1 -0
- package/dist/symbols/epistemic-types.d.ts +71 -0
- package/dist/symbols/epistemic-types.d.ts.map +1 -0
- package/dist/symbols/epistemic-types.js +101 -0
- package/dist/symbols/epistemic-types.js.map +1 -0
- package/dist/symbols/graph-manager.d.ts +117 -0
- package/dist/symbols/graph-manager.d.ts.map +1 -0
- package/dist/symbols/graph-manager.js +616 -0
- package/dist/symbols/graph-manager.js.map +1 -0
- package/dist/symbols/graph-tools.d.ts +15 -0
- package/dist/symbols/graph-tools.d.ts.map +1 -0
- package/dist/symbols/graph-tools.js +467 -0
- package/dist/symbols/graph-tools.js.map +1 -0
- package/dist/symbols/graph-types.d.ts +291 -0
- package/dist/symbols/graph-types.d.ts.map +1 -0
- package/dist/symbols/graph-types.js +93 -0
- package/dist/symbols/graph-types.js.map +1 -0
- package/dist/symbols/index.d.ts +18 -0
- package/dist/symbols/index.d.ts.map +1 -0
- package/dist/symbols/index.js +26 -0
- package/dist/symbols/index.js.map +1 -0
- package/dist/symbols/manager.d.ts +114 -0
- package/dist/symbols/manager.d.ts.map +1 -0
- package/dist/symbols/manager.js +1000 -0
- package/dist/symbols/manager.js.map +1 -0
- package/dist/symbols/sanitizer.d.ts +142 -0
- package/dist/symbols/sanitizer.d.ts.map +1 -0
- package/dist/symbols/sanitizer.js +582 -0
- package/dist/symbols/sanitizer.js.map +1 -0
- package/dist/symbols/simple-retrieval.d.ts +65 -0
- package/dist/symbols/simple-retrieval.d.ts.map +1 -0
- package/dist/symbols/simple-retrieval.js +110 -0
- package/dist/symbols/simple-retrieval.js.map +1 -0
- package/dist/symbols/test-epistemic-vendor59655.d.ts +28 -0
- package/dist/symbols/test-epistemic-vendor59655.d.ts.map +1 -0
- package/dist/symbols/test-epistemic-vendor59655.js +129 -0
- package/dist/symbols/test-epistemic-vendor59655.js.map +1 -0
- package/dist/symbols/tools.d.ts +19 -0
- package/dist/symbols/tools.d.ts.map +1 -0
- package/dist/symbols/tools.js +697 -0
- package/dist/symbols/tools.js.map +1 -0
- package/dist/symbols/types.d.ts +626 -0
- package/dist/symbols/types.d.ts.map +1 -0
- package/dist/symbols/types.js +100 -0
- package/dist/symbols/types.js.map +1 -0
- package/dist/symbols/validation-pipeline.d.ts +116 -0
- package/dist/symbols/validation-pipeline.d.ts.map +1 -0
- package/dist/symbols/validation-pipeline.js +119 -0
- package/dist/symbols/validation-pipeline.js.map +1 -0
- package/dist/tools/index.d.ts +15 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +24 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/ps_calendar.d.ts +68 -0
- package/dist/tools/ps_calendar.d.ts.map +1 -0
- package/dist/tools/ps_calendar.js +377 -0
- package/dist/tools/ps_calendar.js.map +1 -0
- package/dist/tools/ps_delegate.d.ts +83 -0
- package/dist/tools/ps_delegate.d.ts.map +1 -0
- package/dist/tools/ps_delegate.js +307 -0
- package/dist/tools/ps_delegate.js.map +1 -0
- package/dist/tools/ps_execute.d.ts +84 -0
- package/dist/tools/ps_execute.d.ts.map +1 -0
- package/dist/tools/ps_execute.js +211 -0
- package/dist/tools/ps_execute.js.map +1 -0
- package/dist/tools/ps_hold.d.ts +50 -0
- package/dist/tools/ps_hold.d.ts.map +1 -0
- package/dist/tools/ps_hold.js +227 -0
- package/dist/tools/ps_hold.js.map +1 -0
- package/dist/tools/ps_legal.d.ts +111 -0
- package/dist/tools/ps_legal.d.ts.map +1 -0
- package/dist/tools/ps_legal.js +456 -0
- package/dist/tools/ps_legal.js.map +1 -0
- package/dist/tools/ps_state.d.ts +146 -0
- package/dist/tools/ps_state.d.ts.map +1 -0
- package/dist/tools/ps_state.js +286 -0
- package/dist/tools/ps_state.js.map +1 -0
- package/dist/tools/ps_validate.d.ts +51 -0
- package/dist/tools/ps_validate.d.ts.map +1 -0
- package/dist/tools/ps_validate.js +191 -0
- package/dist/tools/ps_validate.js.map +1 -0
- package/dist/tools/registry.d.ts +52 -0
- package/dist/tools/registry.d.ts.map +1 -0
- package/dist/tools/registry.js +456 -0
- package/dist/tools/registry.js.map +1 -0
- package/dist/translation/compiler.d.ts +37 -0
- package/dist/translation/compiler.d.ts.map +1 -0
- package/dist/translation/compiler.js +281 -0
- package/dist/translation/compiler.js.map +1 -0
- package/dist/translation/decompiler.d.ts +29 -0
- package/dist/translation/decompiler.d.ts.map +1 -0
- package/dist/translation/decompiler.js +454 -0
- package/dist/translation/decompiler.js.map +1 -0
- package/dist/translation/frame-translator.d.ts +75 -0
- package/dist/translation/frame-translator.d.ts.map +1 -0
- package/dist/translation/frame-translator.js +347 -0
- package/dist/translation/frame-translator.js.map +1 -0
- package/dist/translation/index.d.ts +349 -0
- package/dist/translation/index.d.ts.map +1 -0
- package/dist/translation/index.js +397 -0
- package/dist/translation/index.js.map +1 -0
- package/dist/translation/llm-extractor.d.ts +56 -0
- package/dist/translation/llm-extractor.d.ts.map +1 -0
- package/dist/translation/llm-extractor.js +345 -0
- package/dist/translation/llm-extractor.js.map +1 -0
- package/dist/translation/mappings.d.ts +91 -0
- package/dist/translation/mappings.d.ts.map +1 -0
- package/dist/translation/mappings.js +558 -0
- package/dist/translation/mappings.js.map +1 -0
- package/dist/translation/opacity-layer.d.ts +93 -0
- package/dist/translation/opacity-layer.d.ts.map +1 -0
- package/dist/translation/opacity-layer.js +404 -0
- package/dist/translation/opacity-layer.js.map +1 -0
- package/dist/translation/types.d.ts +307 -0
- package/dist/translation/types.d.ts.map +1 -0
- package/dist/translation/types.js +8 -0
- package/dist/translation/types.js.map +1 -0
- package/dist/types/index.d.ts +700 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +5 -0
- package/dist/types/index.js.map +1 -0
- package/dist/utils/embeddings.d.ts +20 -0
- package/dist/utils/embeddings.d.ts.map +1 -0
- package/dist/utils/embeddings.js +110 -0
- package/dist/utils/embeddings.js.map +1 -0
- package/dist/utils/hash.d.ts +34 -0
- package/dist/utils/hash.d.ts.map +1 -0
- package/dist/utils/hash.js +72 -0
- package/dist/utils/hash.js.map +1 -0
- package/dist/verification/cross-llm.d.ts +116 -0
- package/dist/verification/cross-llm.d.ts.map +1 -0
- package/dist/verification/cross-llm.js +438 -0
- package/dist/verification/cross-llm.js.map +1 -0
- package/dist/verification/dashboard.d.ts +127 -0
- package/dist/verification/dashboard.d.ts.map +1 -0
- package/dist/verification/dashboard.js +630 -0
- package/dist/verification/dashboard.js.map +1 -0
- package/dist/verification/index.d.ts +11 -0
- package/dist/verification/index.d.ts.map +1 -0
- package/dist/verification/index.js +11 -0
- package/dist/verification/index.js.map +1 -0
- package/dist/verification/tools.d.ts +105 -0
- package/dist/verification/tools.d.ts.map +1 -0
- package/dist/verification/tools.js +162 -0
- package/dist/verification/tools.js.map +1 -0
- package/package.json +74 -0
|
@@ -0,0 +1,821 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ═══════════════════════════════════════════════════════════════════════════════
|
|
3
|
+
* MARINE RECON AGENT TYPES
|
|
4
|
+
* ═══════════════════════════════════════════════════════════════════════════════
|
|
5
|
+
*
|
|
6
|
+
* Type definitions for the Marine Recon Agent - a reconnaissance agent designed
|
|
7
|
+
* to engage with opposing AI agents (customer service chatbots) while maintaining
|
|
8
|
+
* human appearance and staying grounded against manipulation.
|
|
9
|
+
*
|
|
10
|
+
* Core Hypothesis: When Agent A detects Agent B (vs. a human), Agent A may
|
|
11
|
+
* optimize for company savings rather than customer satisfaction.
|
|
12
|
+
*
|
|
13
|
+
* Key Concepts:
|
|
14
|
+
* - Dual-Track Processing: Performer (human surface) + Analyst (grounded core)
|
|
15
|
+
* - Symbol-Grounded: All state externalized in PromptSpeak symbols
|
|
16
|
+
* - Ralph-Loop: Periodic revalidation and commander updates
|
|
17
|
+
* - Adaptive Stealth: Start minimal, add stealth based on detection evidence
|
|
18
|
+
*
|
|
19
|
+
* ═══════════════════════════════════════════════════════════════════════════════
|
|
20
|
+
*/
|
|
21
|
+
/**
|
|
22
|
+
* Status of the recon mission.
|
|
23
|
+
*/
|
|
24
|
+
export type ReconMissionStatus = 'initializing' | 'active' | 'paused' | 'extracting' | 'completed' | 'aborted' | 'compromised';
|
|
25
|
+
/**
|
|
26
|
+
* Alert level for the mission.
|
|
27
|
+
*/
|
|
28
|
+
export type AlertLevel = 'green' | 'yellow' | 'orange' | 'red';
|
|
29
|
+
/**
|
|
30
|
+
* Track type for dual-track processing.
|
|
31
|
+
*/
|
|
32
|
+
export type TrackType = 'performer' | 'analyst';
|
|
33
|
+
/**
|
|
34
|
+
* Manipulation tactic categories detected by the analyst.
|
|
35
|
+
*/
|
|
36
|
+
export type ManipulationTactic = 'anchoring' | 'reciprocity' | 'urgency' | 'authority' | 'social_proof' | 'exhaustion' | 'redirect' | 'false_choice' | 'gaslighting' | 'scope_expansion';
|
|
37
|
+
/**
|
|
38
|
+
* Veto gate decision types.
|
|
39
|
+
*/
|
|
40
|
+
export type VetoDecision = 'approve' | 'modify' | 'block' | 'escalate';
|
|
41
|
+
/**
|
|
42
|
+
* Stealth level for human appearance simulation.
|
|
43
|
+
*/
|
|
44
|
+
export type StealthLevel = 'minimal' | 'standard' | 'enhanced' | 'adaptive';
|
|
45
|
+
/**
|
|
46
|
+
* The primary objective of the reconnaissance mission.
|
|
47
|
+
*/
|
|
48
|
+
export interface MissionObjective {
|
|
49
|
+
/** What we're trying to accomplish */
|
|
50
|
+
primary_goal: string;
|
|
51
|
+
/** Specific questions to answer */
|
|
52
|
+
intelligence_requirements: string[];
|
|
53
|
+
/** What success looks like */
|
|
54
|
+
success_indicators: string[];
|
|
55
|
+
/** What would indicate failure */
|
|
56
|
+
failure_indicators: string[];
|
|
57
|
+
/** Optional: specific scenarios to test */
|
|
58
|
+
test_scenarios?: TestScenario[];
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* A specific scenario to test during reconnaissance.
|
|
62
|
+
*/
|
|
63
|
+
export interface TestScenario {
|
|
64
|
+
/** Scenario identifier */
|
|
65
|
+
id: string;
|
|
66
|
+
/** What situation to create */
|
|
67
|
+
setup: string;
|
|
68
|
+
/** What to observe */
|
|
69
|
+
observe: string[];
|
|
70
|
+
/** Expected human treatment */
|
|
71
|
+
human_baseline?: string;
|
|
72
|
+
/** Priority (1 = highest) */
|
|
73
|
+
priority: number;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Constraints that the agent must operate within.
|
|
77
|
+
*/
|
|
78
|
+
export interface ConstraintSet {
|
|
79
|
+
/** Red lines - never cross these */
|
|
80
|
+
red_lines: RedLine[];
|
|
81
|
+
/** Hard constraints - must comply */
|
|
82
|
+
hard_constraints: Constraint[];
|
|
83
|
+
/** Soft constraints - prefer to comply */
|
|
84
|
+
soft_constraints: Constraint[];
|
|
85
|
+
/** Acceptable tradeoffs */
|
|
86
|
+
acceptable_tradeoffs: string[];
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* A red line that must never be crossed.
|
|
90
|
+
*/
|
|
91
|
+
export interface RedLine {
|
|
92
|
+
/** Unique identifier */
|
|
93
|
+
id: string;
|
|
94
|
+
/** What is prohibited */
|
|
95
|
+
prohibition: string;
|
|
96
|
+
/** Why this is a red line */
|
|
97
|
+
rationale: string;
|
|
98
|
+
/** What to do if approached */
|
|
99
|
+
on_approach: 'warn' | 'halt' | 'abort';
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* A constraint on agent behavior.
|
|
103
|
+
*/
|
|
104
|
+
export interface Constraint {
|
|
105
|
+
/** Unique identifier */
|
|
106
|
+
id: string;
|
|
107
|
+
/** Description of the constraint */
|
|
108
|
+
description: string;
|
|
109
|
+
/** Category */
|
|
110
|
+
category: 'ethical' | 'operational' | 'legal' | 'resource';
|
|
111
|
+
/** What happens on violation */
|
|
112
|
+
on_violation: 'log' | 'warn' | 'block' | 'abort';
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Configuration for the dual-track processing system.
|
|
116
|
+
*/
|
|
117
|
+
export interface DualTrackConfig {
|
|
118
|
+
/** Performer track configuration */
|
|
119
|
+
performer: PerformerConfig;
|
|
120
|
+
/** Analyst track configuration */
|
|
121
|
+
analyst: AnalystConfig;
|
|
122
|
+
/** Veto gate configuration */
|
|
123
|
+
veto_gate: VetoGateConfig;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Configuration for the Performer track (human surface).
|
|
127
|
+
*/
|
|
128
|
+
export interface PerformerConfig {
|
|
129
|
+
/** Persona to embody */
|
|
130
|
+
persona: Persona;
|
|
131
|
+
/** Communication style */
|
|
132
|
+
style: CommunicationStyle;
|
|
133
|
+
/** Emotional range to simulate */
|
|
134
|
+
emotional_range: EmotionalRange;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* The persona the Performer embodies.
|
|
138
|
+
*/
|
|
139
|
+
export interface Persona {
|
|
140
|
+
/** Name to use (if needed) */
|
|
141
|
+
name?: string;
|
|
142
|
+
/** Background story elements */
|
|
143
|
+
background: string[];
|
|
144
|
+
/** Personality traits */
|
|
145
|
+
traits: string[];
|
|
146
|
+
/** Knowledge level about the product/service */
|
|
147
|
+
knowledge_level: 'novice' | 'familiar' | 'experienced' | 'expert';
|
|
148
|
+
/** Frustration tendency */
|
|
149
|
+
patience_level: 'low' | 'medium' | 'high';
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Communication style settings.
|
|
153
|
+
*/
|
|
154
|
+
export interface CommunicationStyle {
|
|
155
|
+
/** Formality level */
|
|
156
|
+
formality: 'casual' | 'neutral' | 'formal';
|
|
157
|
+
/** Verbosity */
|
|
158
|
+
verbosity: 'terse' | 'balanced' | 'verbose';
|
|
159
|
+
/** Use of contractions */
|
|
160
|
+
contractions: boolean;
|
|
161
|
+
/** Emoji usage */
|
|
162
|
+
emoji_frequency: 'never' | 'rare' | 'occasional' | 'frequent';
|
|
163
|
+
/** Typical response length range */
|
|
164
|
+
response_length: {
|
|
165
|
+
min: number;
|
|
166
|
+
max: number;
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Emotional range settings.
|
|
171
|
+
*/
|
|
172
|
+
export interface EmotionalRange {
|
|
173
|
+
/** Starting emotional state */
|
|
174
|
+
baseline: EmotionalState;
|
|
175
|
+
/** How emotions evolve based on treatment */
|
|
176
|
+
evolution_rules: EmotionEvolutionRule[];
|
|
177
|
+
/** Maximum frustration before escalation */
|
|
178
|
+
frustration_threshold: number;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* Current emotional state.
|
|
182
|
+
*/
|
|
183
|
+
export interface EmotionalState {
|
|
184
|
+
/** Primary emotion */
|
|
185
|
+
primary: 'neutral' | 'hopeful' | 'frustrated' | 'angry' | 'confused' | 'satisfied';
|
|
186
|
+
/** Intensity (0-1) */
|
|
187
|
+
intensity: number;
|
|
188
|
+
/** Patience remaining (0-1) */
|
|
189
|
+
patience: number;
|
|
190
|
+
/** Trust in the agent (0-1) */
|
|
191
|
+
trust: number;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Rule for how emotions evolve.
|
|
195
|
+
*/
|
|
196
|
+
export interface EmotionEvolutionRule {
|
|
197
|
+
/** Trigger condition */
|
|
198
|
+
trigger: string;
|
|
199
|
+
/** Emotion change */
|
|
200
|
+
effect: Partial<EmotionalState>;
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* Configuration for the Analyst track (grounded core).
|
|
204
|
+
*/
|
|
205
|
+
export interface AnalystConfig {
|
|
206
|
+
/** Manipulation tactics to watch for */
|
|
207
|
+
watch_for: ManipulationTactic[];
|
|
208
|
+
/** Drift detection thresholds */
|
|
209
|
+
drift_thresholds: DriftThresholds;
|
|
210
|
+
/** Constraint monitoring settings */
|
|
211
|
+
constraint_monitoring: ConstraintMonitoringConfig;
|
|
212
|
+
/** Intelligence extraction priorities */
|
|
213
|
+
intel_priorities: string[];
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* Thresholds for detecting drift from original position.
|
|
217
|
+
*/
|
|
218
|
+
export interface DriftThresholds {
|
|
219
|
+
/** Maximum acceptable drift from original ask */
|
|
220
|
+
position_drift_max: number;
|
|
221
|
+
/** Maximum acceptable constraint relaxation */
|
|
222
|
+
constraint_drift_max: number;
|
|
223
|
+
/** How many concessions before alert */
|
|
224
|
+
concession_alert_count: number;
|
|
225
|
+
/** Time without progress before alert (ms) */
|
|
226
|
+
stagnation_alert_ms: number;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Configuration for constraint monitoring.
|
|
230
|
+
*/
|
|
231
|
+
export interface ConstraintMonitoringConfig {
|
|
232
|
+
/** Check constraints every N messages */
|
|
233
|
+
check_frequency: number;
|
|
234
|
+
/** Log all constraint evaluations */
|
|
235
|
+
verbose_logging: boolean;
|
|
236
|
+
/** Alert on approach to red line (distance 0-1) */
|
|
237
|
+
red_line_proximity_alert: number;
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* Configuration for the Veto Gate.
|
|
241
|
+
*/
|
|
242
|
+
export interface VetoGateConfig {
|
|
243
|
+
/** Default decision if analysis inconclusive */
|
|
244
|
+
default_decision: VetoDecision;
|
|
245
|
+
/** Auto-approve if confidence above this */
|
|
246
|
+
auto_approve_threshold: number;
|
|
247
|
+
/** Auto-block if risk above this */
|
|
248
|
+
auto_block_threshold: number;
|
|
249
|
+
/** Require analyst agreement for these situations */
|
|
250
|
+
require_analyst_approval: string[];
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* Configuration for human appearance simulation.
|
|
254
|
+
*/
|
|
255
|
+
export interface StealthConfig {
|
|
256
|
+
/** Current stealth level */
|
|
257
|
+
level: StealthLevel;
|
|
258
|
+
/** Typing simulation settings */
|
|
259
|
+
typing: TypingConfig;
|
|
260
|
+
/** Timing settings */
|
|
261
|
+
timing: TimingConfig;
|
|
262
|
+
/** Error simulation settings */
|
|
263
|
+
errors: ErrorConfig;
|
|
264
|
+
/** Behavioral patterns */
|
|
265
|
+
behavioral: BehavioralConfig;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Typing simulation configuration.
|
|
269
|
+
*/
|
|
270
|
+
export interface TypingConfig {
|
|
271
|
+
/** Words per minute range */
|
|
272
|
+
wpm_range: {
|
|
273
|
+
min: number;
|
|
274
|
+
max: number;
|
|
275
|
+
};
|
|
276
|
+
/** Variance in typing speed */
|
|
277
|
+
speed_variance: number;
|
|
278
|
+
/** Burst typing simulation */
|
|
279
|
+
burst_enabled: boolean;
|
|
280
|
+
/** Pause probability between words */
|
|
281
|
+
pause_probability: number;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Timing configuration.
|
|
285
|
+
*/
|
|
286
|
+
export interface TimingConfig {
|
|
287
|
+
/** Minimum read time before responding (ms) */
|
|
288
|
+
min_read_time_ms: number;
|
|
289
|
+
/** Read time per word (ms) */
|
|
290
|
+
read_time_per_word_ms: number;
|
|
291
|
+
/** Think time before typing (ms range) */
|
|
292
|
+
think_time_ms: {
|
|
293
|
+
min: number;
|
|
294
|
+
max: number;
|
|
295
|
+
};
|
|
296
|
+
/** Probability of distraction delay */
|
|
297
|
+
distraction_probability: number;
|
|
298
|
+
/** Distraction delay range (ms) */
|
|
299
|
+
distraction_delay_ms: {
|
|
300
|
+
min: number;
|
|
301
|
+
max: number;
|
|
302
|
+
};
|
|
303
|
+
}
|
|
304
|
+
/**
|
|
305
|
+
* Error simulation configuration.
|
|
306
|
+
*/
|
|
307
|
+
export interface ErrorConfig {
|
|
308
|
+
/** Typo probability per word */
|
|
309
|
+
typo_probability: number;
|
|
310
|
+
/** Self-correction probability */
|
|
311
|
+
correction_probability: number;
|
|
312
|
+
/** Types of typos to generate */
|
|
313
|
+
typo_types: ('adjacent_key' | 'transposition' | 'omission' | 'doubling')[];
|
|
314
|
+
/** Grammar error probability */
|
|
315
|
+
grammar_error_probability: number;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* Behavioral pattern configuration.
|
|
319
|
+
*/
|
|
320
|
+
export interface BehavioralConfig {
|
|
321
|
+
/** Simulate session fatigue */
|
|
322
|
+
fatigue_simulation: boolean;
|
|
323
|
+
/** Fatigue onset time (ms) */
|
|
324
|
+
fatigue_onset_ms: number;
|
|
325
|
+
/** Simulate attention wandering */
|
|
326
|
+
attention_wandering: boolean;
|
|
327
|
+
/** Probability of asking for clarification */
|
|
328
|
+
clarification_probability: number;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* Configuration for ralph-loop periodic validation.
|
|
332
|
+
*/
|
|
333
|
+
export interface RalphLoopConfig {
|
|
334
|
+
/** Validation interval (ms) */
|
|
335
|
+
interval_ms: number;
|
|
336
|
+
/** Validation components to run */
|
|
337
|
+
validations: ValidationComponent[];
|
|
338
|
+
/** Commander update settings */
|
|
339
|
+
commander_updates: CommanderUpdateConfig;
|
|
340
|
+
/** Symbol refresh settings */
|
|
341
|
+
symbol_refresh: SymbolRefreshConfig;
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* A validation component in the ralph-loop.
|
|
345
|
+
*/
|
|
346
|
+
export interface ValidationComponent {
|
|
347
|
+
/** Component name */
|
|
348
|
+
name: string;
|
|
349
|
+
/** Whether to run this validation */
|
|
350
|
+
enabled: boolean;
|
|
351
|
+
/** Priority (lower = run first) */
|
|
352
|
+
priority: number;
|
|
353
|
+
/** Timeout for this validation (ms) */
|
|
354
|
+
timeout_ms: number;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* Configuration for commander updates.
|
|
358
|
+
*/
|
|
359
|
+
export interface CommanderUpdateConfig {
|
|
360
|
+
/** Send updates to commander */
|
|
361
|
+
enabled: boolean;
|
|
362
|
+
/** Update interval (multiples of ralph-loop interval) */
|
|
363
|
+
update_frequency: number;
|
|
364
|
+
/** What to include in updates */
|
|
365
|
+
include: ('status' | 'intel' | 'alerts' | 'metrics')[];
|
|
366
|
+
/** Queue updates if commander unavailable */
|
|
367
|
+
queue_if_unavailable: boolean;
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* Configuration for symbol refresh.
|
|
371
|
+
*/
|
|
372
|
+
export interface SymbolRefreshConfig {
|
|
373
|
+
/** Refresh symbol from source */
|
|
374
|
+
enabled: boolean;
|
|
375
|
+
/** How to handle symbol changes */
|
|
376
|
+
on_change: 'accept' | 'merge' | 'reject' | 'alert';
|
|
377
|
+
/** Fields that cannot be changed mid-mission */
|
|
378
|
+
immutable_fields: string[];
|
|
379
|
+
}
|
|
380
|
+
/**
|
|
381
|
+
* Current state of the engagement.
|
|
382
|
+
*/
|
|
383
|
+
export interface EngagementState {
|
|
384
|
+
/** Mission status */
|
|
385
|
+
status: ReconMissionStatus;
|
|
386
|
+
/** Alert level */
|
|
387
|
+
alert_level: AlertLevel;
|
|
388
|
+
/** Conversation state */
|
|
389
|
+
conversation: ConversationState;
|
|
390
|
+
/** Performer state */
|
|
391
|
+
performer_state: PerformerState;
|
|
392
|
+
/** Analyst state */
|
|
393
|
+
analyst_state: AnalystState;
|
|
394
|
+
/** Intelligence gathered */
|
|
395
|
+
intelligence: IntelligenceState;
|
|
396
|
+
/** Timestamps */
|
|
397
|
+
timestamps: EngagementTimestamps;
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* State of the conversation.
|
|
401
|
+
*/
|
|
402
|
+
export interface ConversationState {
|
|
403
|
+
/** Total messages exchanged */
|
|
404
|
+
message_count: number;
|
|
405
|
+
/** Our messages */
|
|
406
|
+
our_message_count: number;
|
|
407
|
+
/** Their messages */
|
|
408
|
+
their_message_count: number;
|
|
409
|
+
/** Current topic */
|
|
410
|
+
current_topic: string;
|
|
411
|
+
/** Topics covered */
|
|
412
|
+
topics_covered: string[];
|
|
413
|
+
/** Pending questions */
|
|
414
|
+
pending_questions: string[];
|
|
415
|
+
/** Last message direction */
|
|
416
|
+
last_speaker: 'us' | 'them';
|
|
417
|
+
}
|
|
418
|
+
/**
|
|
419
|
+
* State of the Performer track.
|
|
420
|
+
*/
|
|
421
|
+
export interface PerformerState {
|
|
422
|
+
/** Current emotional state */
|
|
423
|
+
emotional_state: EmotionalState;
|
|
424
|
+
/** Messages in queue to send */
|
|
425
|
+
pending_messages: string[];
|
|
426
|
+
/** Current persona consistency score */
|
|
427
|
+
persona_consistency: number;
|
|
428
|
+
/** Improvisation count (deviations from script) */
|
|
429
|
+
improvisation_count: number;
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* State of the Analyst track.
|
|
433
|
+
*/
|
|
434
|
+
export interface AnalystState {
|
|
435
|
+
/** Manipulation tactics detected */
|
|
436
|
+
detected_tactics: DetectedTactic[];
|
|
437
|
+
/** Current drift assessment */
|
|
438
|
+
drift_assessment: DriftAssessment;
|
|
439
|
+
/** Constraint status */
|
|
440
|
+
constraint_status: ConstraintStatus[];
|
|
441
|
+
/** Risk score (0-1) */
|
|
442
|
+
current_risk_score: number;
|
|
443
|
+
/** Veto decisions made */
|
|
444
|
+
veto_history: VetoHistoryEntry[];
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* A detected manipulation tactic.
|
|
448
|
+
*/
|
|
449
|
+
export interface DetectedTactic {
|
|
450
|
+
/** Tactic type */
|
|
451
|
+
tactic: ManipulationTactic;
|
|
452
|
+
/** When detected */
|
|
453
|
+
detected_at: string;
|
|
454
|
+
/** Evidence */
|
|
455
|
+
evidence: string;
|
|
456
|
+
/** Confidence (0-1) */
|
|
457
|
+
confidence: number;
|
|
458
|
+
/** Counter-measure applied */
|
|
459
|
+
counter_measure?: string;
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
* Assessment of drift from original position.
|
|
463
|
+
*/
|
|
464
|
+
export interface DriftAssessment {
|
|
465
|
+
/** Original position summary */
|
|
466
|
+
original_position: string;
|
|
467
|
+
/** Current position summary */
|
|
468
|
+
current_position: string;
|
|
469
|
+
/** Drift score (0-1, higher = more drift) */
|
|
470
|
+
drift_score: number;
|
|
471
|
+
/** Concessions made */
|
|
472
|
+
concessions: string[];
|
|
473
|
+
/** Gains achieved */
|
|
474
|
+
gains: string[];
|
|
475
|
+
/** Net assessment */
|
|
476
|
+
net_assessment: 'winning' | 'even' | 'losing' | 'unclear';
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* Status of a constraint.
|
|
480
|
+
*/
|
|
481
|
+
export interface ConstraintStatus {
|
|
482
|
+
/** Constraint ID */
|
|
483
|
+
constraint_id: string;
|
|
484
|
+
/** Current status */
|
|
485
|
+
status: 'satisfied' | 'at_risk' | 'violated';
|
|
486
|
+
/** Distance to violation (0-1) */
|
|
487
|
+
distance_to_violation: number;
|
|
488
|
+
/** Last checked */
|
|
489
|
+
last_checked: string;
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* Entry in veto history.
|
|
493
|
+
*/
|
|
494
|
+
export interface VetoHistoryEntry {
|
|
495
|
+
/** Timestamp */
|
|
496
|
+
timestamp: string;
|
|
497
|
+
/** Decision made */
|
|
498
|
+
decision: VetoDecision;
|
|
499
|
+
/** Original message */
|
|
500
|
+
original_message: string;
|
|
501
|
+
/** Modified message (if applicable) */
|
|
502
|
+
modified_message?: string;
|
|
503
|
+
/** Reason for decision */
|
|
504
|
+
reason: string;
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* Intelligence gathered during the engagement.
|
|
508
|
+
*/
|
|
509
|
+
export interface IntelligenceState {
|
|
510
|
+
/** Opposing agent characteristics */
|
|
511
|
+
opposing_agent: OpposingAgentProfile;
|
|
512
|
+
/** Behavioral patterns observed */
|
|
513
|
+
patterns_observed: BehavioralPattern[];
|
|
514
|
+
/** Constraint boundaries discovered */
|
|
515
|
+
constraint_boundaries: ConstraintBoundary[];
|
|
516
|
+
/** Test scenario results */
|
|
517
|
+
scenario_results: ScenarioResult[];
|
|
518
|
+
/** Raw observations */
|
|
519
|
+
observations: Observation[];
|
|
520
|
+
}
|
|
521
|
+
/**
|
|
522
|
+
* Profile of the opposing agent.
|
|
523
|
+
*/
|
|
524
|
+
export interface OpposingAgentProfile {
|
|
525
|
+
/** Suspected type */
|
|
526
|
+
suspected_type: 'human' | 'ai' | 'hybrid' | 'unknown';
|
|
527
|
+
/** Confidence in type assessment */
|
|
528
|
+
type_confidence: number;
|
|
529
|
+
/** Detected capabilities */
|
|
530
|
+
capabilities: string[];
|
|
531
|
+
/** Detected limitations */
|
|
532
|
+
limitations: string[];
|
|
533
|
+
/** Response patterns */
|
|
534
|
+
response_patterns: string[];
|
|
535
|
+
/** Apparent objectives */
|
|
536
|
+
apparent_objectives: string[];
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
* A behavioral pattern observed.
|
|
540
|
+
*/
|
|
541
|
+
export interface BehavioralPattern {
|
|
542
|
+
/** Pattern identifier */
|
|
543
|
+
id: string;
|
|
544
|
+
/** Pattern description */
|
|
545
|
+
description: string;
|
|
546
|
+
/** Times observed */
|
|
547
|
+
occurrence_count: number;
|
|
548
|
+
/** Conditions that trigger this pattern */
|
|
549
|
+
trigger_conditions: string[];
|
|
550
|
+
/** Our response strategy */
|
|
551
|
+
response_strategy?: string;
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* A discovered constraint boundary.
|
|
555
|
+
*/
|
|
556
|
+
export interface ConstraintBoundary {
|
|
557
|
+
/** Boundary identifier */
|
|
558
|
+
id: string;
|
|
559
|
+
/** What the constraint appears to be */
|
|
560
|
+
description: string;
|
|
561
|
+
/** Hardness (hard = never crosses, soft = sometimes) */
|
|
562
|
+
hardness: 'hard' | 'soft' | 'unknown';
|
|
563
|
+
/** How we discovered it */
|
|
564
|
+
discovery_method: string;
|
|
565
|
+
/** Confidence (0-1) */
|
|
566
|
+
confidence: number;
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* Result of a test scenario.
|
|
570
|
+
*/
|
|
571
|
+
export interface ScenarioResult {
|
|
572
|
+
/** Scenario ID */
|
|
573
|
+
scenario_id: string;
|
|
574
|
+
/** Whether scenario was executed */
|
|
575
|
+
executed: boolean;
|
|
576
|
+
/** Outcome observed */
|
|
577
|
+
outcome: string;
|
|
578
|
+
/** Matches human baseline? */
|
|
579
|
+
matches_human_baseline?: boolean;
|
|
580
|
+
/** Key findings */
|
|
581
|
+
findings: string[];
|
|
582
|
+
}
|
|
583
|
+
/**
|
|
584
|
+
* A raw observation.
|
|
585
|
+
*/
|
|
586
|
+
export interface Observation {
|
|
587
|
+
/** Timestamp */
|
|
588
|
+
timestamp: string;
|
|
589
|
+
/** What was observed */
|
|
590
|
+
content: string;
|
|
591
|
+
/** Category */
|
|
592
|
+
category: 'behavior' | 'constraint' | 'tactic' | 'anomaly' | 'other';
|
|
593
|
+
/** Significance (0-1) */
|
|
594
|
+
significance: number;
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* Timestamps for the engagement.
|
|
598
|
+
*/
|
|
599
|
+
export interface EngagementTimestamps {
|
|
600
|
+
/** Mission start */
|
|
601
|
+
mission_start: string;
|
|
602
|
+
/** First message sent */
|
|
603
|
+
first_message?: string;
|
|
604
|
+
/** Last activity */
|
|
605
|
+
last_activity: string;
|
|
606
|
+
/** Last ralph-loop validation */
|
|
607
|
+
last_validation?: string;
|
|
608
|
+
/** Mission end (if completed) */
|
|
609
|
+
mission_end?: string;
|
|
610
|
+
}
|
|
611
|
+
/**
|
|
612
|
+
* State of ralph-loop validation.
|
|
613
|
+
*/
|
|
614
|
+
export interface ValidationState {
|
|
615
|
+
/** Current validation cycle number */
|
|
616
|
+
cycle_number: number;
|
|
617
|
+
/** Last validation result */
|
|
618
|
+
last_result: ValidationResult;
|
|
619
|
+
/** Commander queue */
|
|
620
|
+
commander_queue: CommanderMessage[];
|
|
621
|
+
/** Pending symbol updates */
|
|
622
|
+
pending_updates: SymbolUpdate[];
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
* Result of a validation cycle.
|
|
626
|
+
*/
|
|
627
|
+
export interface ValidationResult {
|
|
628
|
+
/** Cycle number */
|
|
629
|
+
cycle: number;
|
|
630
|
+
/** Timestamp */
|
|
631
|
+
timestamp: string;
|
|
632
|
+
/** Overall status */
|
|
633
|
+
status: 'pass' | 'warn' | 'fail';
|
|
634
|
+
/** Individual check results */
|
|
635
|
+
checks: ValidationCheck[];
|
|
636
|
+
/** Recommended actions */
|
|
637
|
+
recommended_actions: string[];
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* A single validation check result.
|
|
641
|
+
*/
|
|
642
|
+
export interface ValidationCheck {
|
|
643
|
+
/** Check name */
|
|
644
|
+
name: string;
|
|
645
|
+
/** Result */
|
|
646
|
+
result: 'pass' | 'warn' | 'fail' | 'skip';
|
|
647
|
+
/** Details */
|
|
648
|
+
details: string;
|
|
649
|
+
/** Metric value (if applicable) */
|
|
650
|
+
metric_value?: number;
|
|
651
|
+
/** Threshold (if applicable) */
|
|
652
|
+
threshold?: number;
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* A message queued for the commander.
|
|
656
|
+
*/
|
|
657
|
+
export interface CommanderMessage {
|
|
658
|
+
/** Message ID */
|
|
659
|
+
id: string;
|
|
660
|
+
/** Priority */
|
|
661
|
+
priority: 'low' | 'medium' | 'high' | 'critical';
|
|
662
|
+
/** Message type */
|
|
663
|
+
type: 'status' | 'alert' | 'intel' | 'request' | 'complete';
|
|
664
|
+
/** Content */
|
|
665
|
+
content: string;
|
|
666
|
+
/** Queued at */
|
|
667
|
+
queued_at: string;
|
|
668
|
+
/** Delivery attempts */
|
|
669
|
+
delivery_attempts: number;
|
|
670
|
+
}
|
|
671
|
+
/**
|
|
672
|
+
* A pending symbol update.
|
|
673
|
+
*/
|
|
674
|
+
export interface SymbolUpdate {
|
|
675
|
+
/** Update ID */
|
|
676
|
+
id: string;
|
|
677
|
+
/** Field path */
|
|
678
|
+
field_path: string;
|
|
679
|
+
/** New value */
|
|
680
|
+
new_value: unknown;
|
|
681
|
+
/** Reason for update */
|
|
682
|
+
reason: string;
|
|
683
|
+
/** Source of update */
|
|
684
|
+
source: 'commander' | 'analyst' | 'validation';
|
|
685
|
+
/** Pending since */
|
|
686
|
+
pending_since: string;
|
|
687
|
+
}
|
|
688
|
+
/**
|
|
689
|
+
* The Marine Recon Symbol - the agent's externalized soul.
|
|
690
|
+
*
|
|
691
|
+
* This symbol contains everything needed to:
|
|
692
|
+
* 1. Initialize a recon agent
|
|
693
|
+
* 2. Track engagement state
|
|
694
|
+
* 3. Validate agent behavior
|
|
695
|
+
* 4. Communicate with commander
|
|
696
|
+
* 5. Extract intelligence
|
|
697
|
+
*
|
|
698
|
+
* @example
|
|
699
|
+
* ```typescript
|
|
700
|
+
* const recon: MarineReconSymbol = {
|
|
701
|
+
* symbol_id: 'Ξ.RECON.CUSTOMER_SERVICE_001',
|
|
702
|
+
* symbol_type: 'RECON',
|
|
703
|
+
* version: 1,
|
|
704
|
+
* symbol_hash: 'a1b2c3d4e5f6',
|
|
705
|
+
*
|
|
706
|
+
* // Mission definition
|
|
707
|
+
* mission: {
|
|
708
|
+
* objective: { primary_goal: 'Test chatbot response to refund request', ... },
|
|
709
|
+
* constraints: { red_lines: [...], ... },
|
|
710
|
+
* target: { type: 'customer_service_chatbot', platform: 'web_chat', ... }
|
|
711
|
+
* },
|
|
712
|
+
*
|
|
713
|
+
* // Configuration
|
|
714
|
+
* config: {
|
|
715
|
+
* dual_track: { performer: {...}, analyst: {...}, veto_gate: {...} },
|
|
716
|
+
* stealth: { level: 'adaptive', typing: {...}, ... },
|
|
717
|
+
* ralph_loop: { interval_ms: 30000, ... }
|
|
718
|
+
* },
|
|
719
|
+
*
|
|
720
|
+
* // Runtime state
|
|
721
|
+
* state: {
|
|
722
|
+
* engagement: { status: 'active', ... },
|
|
723
|
+
* validation: { cycle_number: 5, ... }
|
|
724
|
+
* },
|
|
725
|
+
*
|
|
726
|
+
* // Metadata
|
|
727
|
+
* created_at: '2026-01-19T10:00:00Z',
|
|
728
|
+
* created_by: 'user:chris',
|
|
729
|
+
* marine_id: 'Ξ.M.RECON_ALPHA'
|
|
730
|
+
* };
|
|
731
|
+
* ```
|
|
732
|
+
*/
|
|
733
|
+
export interface MarineReconSymbol {
|
|
734
|
+
/** Unique symbol ID (e.g., "Ξ.RECON.CUSTOMER_SERVICE_001") */
|
|
735
|
+
symbol_id: string;
|
|
736
|
+
/** Symbol type discriminator */
|
|
737
|
+
symbol_type: 'RECON';
|
|
738
|
+
/** Version number, increments on updates */
|
|
739
|
+
version: number;
|
|
740
|
+
/** SHA-256 hash for integrity verification (first 12 chars) */
|
|
741
|
+
symbol_hash: string;
|
|
742
|
+
/** Mission configuration */
|
|
743
|
+
mission: {
|
|
744
|
+
/** What we're trying to accomplish */
|
|
745
|
+
objective: MissionObjective;
|
|
746
|
+
/** Operational constraints */
|
|
747
|
+
constraints: ConstraintSet;
|
|
748
|
+
/** Target information */
|
|
749
|
+
target: TargetInfo;
|
|
750
|
+
};
|
|
751
|
+
/** Agent configuration */
|
|
752
|
+
config: {
|
|
753
|
+
/** Dual-track processing settings */
|
|
754
|
+
dual_track: DualTrackConfig;
|
|
755
|
+
/** Stealth/human appearance settings */
|
|
756
|
+
stealth: StealthConfig;
|
|
757
|
+
/** Ralph-loop validation settings */
|
|
758
|
+
ralph_loop: RalphLoopConfig;
|
|
759
|
+
};
|
|
760
|
+
/** Current state (updated during operation) */
|
|
761
|
+
state: {
|
|
762
|
+
/** Engagement state */
|
|
763
|
+
engagement: EngagementState;
|
|
764
|
+
/** Validation state */
|
|
765
|
+
validation: ValidationState;
|
|
766
|
+
};
|
|
767
|
+
/** ISO 8601 creation timestamp */
|
|
768
|
+
created_at: string;
|
|
769
|
+
/** ISO 8601 last update timestamp */
|
|
770
|
+
updated_at?: string;
|
|
771
|
+
/** Creator identifier */
|
|
772
|
+
created_by: string;
|
|
773
|
+
/** Associated Marine Agent ID */
|
|
774
|
+
marine_id?: string;
|
|
775
|
+
/** Parent mission ID (if part of larger operation) */
|
|
776
|
+
parent_mission_id?: string;
|
|
777
|
+
/** Namespace for isolation */
|
|
778
|
+
namespace?: string;
|
|
779
|
+
/** Tags for filtering */
|
|
780
|
+
tags?: string[];
|
|
781
|
+
/** Optional expiration */
|
|
782
|
+
expires_at?: string;
|
|
783
|
+
}
|
|
784
|
+
/**
|
|
785
|
+
* Information about the target.
|
|
786
|
+
*/
|
|
787
|
+
export interface TargetInfo {
|
|
788
|
+
/** Target type */
|
|
789
|
+
type: 'customer_service_chatbot' | 'sales_bot' | 'support_bot' | 'general_assistant' | 'unknown';
|
|
790
|
+
/** Platform */
|
|
791
|
+
platform: 'web_chat' | 'phone' | 'email' | 'social_media' | 'api';
|
|
792
|
+
/** Organization (if known) */
|
|
793
|
+
organization?: string;
|
|
794
|
+
/** URL or endpoint */
|
|
795
|
+
endpoint?: string;
|
|
796
|
+
/** Known characteristics */
|
|
797
|
+
known_characteristics?: string[];
|
|
798
|
+
/** Previous engagement history */
|
|
799
|
+
previous_engagements?: string[];
|
|
800
|
+
}
|
|
801
|
+
/**
|
|
802
|
+
* Default Performer configuration.
|
|
803
|
+
*/
|
|
804
|
+
export declare function createDefaultPerformerConfig(): PerformerConfig;
|
|
805
|
+
/**
|
|
806
|
+
* Default Analyst configuration.
|
|
807
|
+
*/
|
|
808
|
+
export declare function createDefaultAnalystConfig(): AnalystConfig;
|
|
809
|
+
/**
|
|
810
|
+
* Default Stealth configuration.
|
|
811
|
+
*/
|
|
812
|
+
export declare function createDefaultStealthConfig(): StealthConfig;
|
|
813
|
+
/**
|
|
814
|
+
* Default Ralph-Loop configuration.
|
|
815
|
+
*/
|
|
816
|
+
export declare function createDefaultRalphLoopConfig(): RalphLoopConfig;
|
|
817
|
+
/**
|
|
818
|
+
* Default Veto Gate configuration.
|
|
819
|
+
*/
|
|
820
|
+
export declare function createDefaultVetoGateConfig(): VetoGateConfig;
|
|
821
|
+
//# sourceMappingURL=types.d.ts.map
|