@adaptic/maestro 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/init-agent.md +99 -0
- package/.claude/commands/init-maestro.md +565 -0
- package/.claude/settings.json +114 -0
- package/.env.example +152 -0
- package/README.md +491 -0
- package/agents/board-prep/agent.md +80 -0
- package/agents/browser-operator/agent.md +52 -0
- package/agents/calendar-ops/agent.md +50 -0
- package/agents/capital-raising/agent.md +69 -0
- package/agents/ceo-briefing/agent.md +72 -0
- package/agents/communications/agent.md +69 -0
- package/agents/competitive-intelligence/agent.md +49 -0
- package/agents/corporate-development/agent.md +66 -0
- package/agents/decision-log/agent.md +65 -0
- package/agents/desktop-operator/agent.md +59 -0
- package/agents/engineering-coordination/agent.md +51 -0
- package/agents/founder-voice/agent.md +72 -0
- package/agents/fund-ops/agent.md +52 -0
- package/agents/gmail-operator/agent.md +62 -0
- package/agents/hiring-org-design/agent.md +119 -0
- package/agents/inbound-dispatcher/agent.md +66 -0
- package/agents/legal-structuring/agent.md +65 -0
- package/agents/market-research/agent.md +48 -0
- package/agents/partnerships/agent.md +59 -0
- package/agents/platform-architecture/agent.md +57 -0
- package/agents/pmo-execution/agent.md +60 -0
- package/agents/product-strategy/agent.md +50 -0
- package/agents/regulatory-dfsa/agent.md +96 -0
- package/agents/risk-register/agent.md +62 -0
- package/agents/rollup-target-sourcing/agent.md +59 -0
- package/agents/session-spawner/agent.md +64 -0
- package/agents/slack-operator/agent.md +60 -0
- package/agents/sophie-chief-of-staff/agent.md +134 -0
- package/agents/strategic-planning/agent.md +54 -0
- package/agents/whatsapp-operator/agent.md +60 -0
- package/agents/workflow-automation/agent.md +61 -0
- package/bin/maestro.mjs +388 -0
- package/desktop-control/README.md +56 -0
- package/desktop-control/app-profiles/gmail.yaml +120 -0
- package/desktop-control/app-profiles/slack.yaml +315 -0
- package/desktop-control/app-profiles/whatsapp.yaml +107 -0
- package/docs/architecture/agent-topology.md +2222 -0
- package/docs/architecture/continuous-monitoring.md +221 -0
- package/docs/architecture/mcp-capability-map.md +560 -0
- package/docs/architecture/system-architecture.md +1273 -0
- package/docs/business-synthesis/ADAPTIC-GROUP-FINAL-OWNERSHIP-STRUCTURE.pdf +13667 -10
- package/docs/business-synthesis/adaptic-overview.md +296 -0
- package/docs/business-synthesis/executive-operating-model.md +261 -0
- package/docs/governance/action-approval-model.md +331 -0
- package/docs/governance/communications-policy.md +410 -0
- package/docs/governance/desktop-control-safety.md +499 -0
- package/docs/guides/agent-persona-setup.md +600 -0
- package/docs/operating-charter.md +87 -0
- package/docs/prompts/board-pack-cover-template.md +37 -0
- package/docs/prompts/decision-recommendation-template.md +88 -0
- package/docs/prompts/followup-message-template.md +141 -0
- package/docs/prompts/investor-letter-template.md +52 -0
- package/docs/prompts/morning-brief-template.md +82 -0
- package/docs/prompts/presentation-template.md +58 -0
- package/docs/prompts/weekly-strategic-memo-template.md +104 -0
- package/docs/runbooks/mac-mini-bootstrap.md +404 -0
- package/docs/runbooks/perpetual-operations.md +505 -0
- package/docs/runbooks/recovery-and-failover.md +588 -0
- package/docs/superpowers/plans/2026-04-02-phase0-operational-foundation.md +2550 -0
- package/docs/superpowers/plans/2026-04-03-phase1-executive-core.md +1085 -0
- package/docs/superpowers/plans/2026-04-03-phase2-people-product-commercial.md +739 -0
- package/docs/superpowers/plans/2026-04-05-information-barrier-implementation.md +926 -0
- package/docs/superpowers/plans/2026-04-06-session-context-dedup.md +1994 -0
- package/docs/superpowers/specs/2026-04-02-phase0-operational-foundation-design.md +842 -0
- package/docs/superpowers/specs/2026-04-03-phase1-executive-core-design.md +516 -0
- package/docs/superpowers/specs/2026-04-03-phase2-people-product-commercial-design.md +452 -0
- package/docs/superpowers/specs/2026-04-03-phase3-4-final-towers-design.md +129 -0
- package/docs/superpowers/specs/2026-04-05-information-barrier-design.md +678 -0
- package/docs/superpowers/specs/2026-04-05-reactive-daemon-design.md +237 -0
- package/docs/superpowers/specs/2026-04-06-session-context-dedup-design.md +369 -0
- package/docs/workflows/executive-cadence.md +218 -0
- package/ingest/README.md +87 -0
- package/mcp/README.md +51 -0
- package/package.json +48 -0
- package/plugins/maestro-skills/plugin.json +55 -0
- package/plugins/maestro-skills/skills/board-deck.md +68 -0
- package/plugins/maestro-skills/skills/decision-brief.md +89 -0
- package/plugins/maestro-skills/skills/draft-comms.md +84 -0
- package/plugins/maestro-skills/skills/evening-wrap.md +53 -0
- package/plugins/maestro-skills/skills/hiring-triage.md +74 -0
- package/plugins/maestro-skills/skills/inbox-triage.md +61 -0
- package/plugins/maestro-skills/skills/morning-brief.md +54 -0
- package/plugins/maestro-skills/skills/pipeline-review.md +76 -0
- package/plugins/maestro-skills/skills/regulatory-status.md +81 -0
- package/plugins/maestro-skills/skills/schedule-meeting.md +91 -0
- package/plugins/maestro-skills/skills/slack-followup.md +64 -0
- package/plugins/maestro-skills/skills/weekly-memo.md +70 -0
- package/policies/action-classification.yaml +110 -0
- package/policies/information-barriers.yaml +119 -0
- package/policies/prompt-injection-defence.yaml +138 -0
- package/public/assets/adaptic-icon-dark.png +0 -0
- package/public/assets/adaptic-icon-dark.svg +4 -0
- package/public/assets/adaptic-icon-light.svg +4 -0
- package/public/assets/adaptic-logo-dark.svg +17 -0
- package/public/assets/adaptic-logo-light.svg +17 -0
- package/scaffold/CLAUDE.md +21 -0
- package/scaffold/config/agent.ts +69 -0
- package/scaffold/config/agent.ts.example +218 -0
- package/schedules/README.md +49 -0
- package/schedules/triggers/backlog-executor.md +102 -0
- package/schedules/triggers/daily-evening-wrap.md +142 -0
- package/schedules/triggers/daily-midday-sweep.md +58 -0
- package/schedules/triggers/daily-morning-brief.md +55 -0
- package/schedules/triggers/inbox-processor.md +115 -0
- package/schedules/triggers/meeting-action-capture.md +60 -0
- package/schedules/triggers/meeting-prep.md +69 -0
- package/schedules/triggers/quarterly-self-assessment.md +54 -0
- package/schedules/triggers/weekly-engineering-health.md +37 -0
- package/schedules/triggers/weekly-execution.md +67 -0
- package/schedules/triggers/weekly-hiring.md +53 -0
- package/schedules/triggers/weekly-priorities.md +38 -0
- package/schedules/triggers/weekly-strategic-memo.md +124 -0
- package/scripts/__pycache__/disclosure_assessment.cpython-313.pyc +0 -0
- package/scripts/__pycache__/disclosure_boundaries.cpython-313.pyc +0 -0
- package/scripts/__pycache__/email_quote_thread.cpython-313.pyc +0 -0
- package/scripts/__pycache__/email_thread_dedup.cpython-313.pyc +0 -0
- package/scripts/__pycache__/mehran-inbox-poller.cpython-313.pyc +0 -0
- package/scripts/__pycache__/outbound_dedup.cpython-313.pyc +0 -0
- package/scripts/__pycache__/pre-draft-context.cpython-313.pyc +0 -0
- package/scripts/__pycache__/pre_draft_lookup.cpython-313.pyc +0 -0
- package/scripts/__pycache__/send-email-as-mehran.cpython-313.pyc +0 -0
- package/scripts/__pycache__/send-email-threaded.cpython-313.pyc +0 -0
- package/scripts/__pycache__/send-email-with-attachment.cpython-313.pyc +0 -0
- package/scripts/__pycache__/validate_outbound.cpython-313.pyc +0 -0
- package/scripts/airtable-crm-populate.md +99 -0
- package/scripts/archive-email.sh +41 -0
- package/scripts/comms-monitor.sh +285 -0
- package/scripts/configure-whatsapp-sandbox.sh +201 -0
- package/scripts/continuous-monitor.sh +86 -0
- package/scripts/daemon/classifier.mjs +355 -0
- package/scripts/daemon/context-compiler.mjs +490 -0
- package/scripts/daemon/dispatcher.mjs +385 -0
- package/scripts/daemon/health.mjs +72 -0
- package/scripts/daemon/prompt-builder.mjs +426 -0
- package/scripts/daemon/responder.mjs +547 -0
- package/scripts/daemon/session-lock.mjs +520 -0
- package/scripts/daemon/sophie-daemon.mjs +521 -0
- package/scripts/daemon/test-context-compiler.mjs +238 -0
- package/scripts/daemon/test-integration.mjs +130 -0
- package/scripts/daemon/test-session-lock.mjs +215 -0
- package/scripts/disclosure_assessment.py +873 -0
- package/scripts/disclosure_boundaries.py +562 -0
- package/scripts/email-signature-mehran.html +52 -0
- package/scripts/email-signature.html +44 -0
- package/scripts/email_quote_thread.py +167 -0
- package/scripts/email_thread_dedup.py +361 -0
- package/scripts/emergency-stop.sh +41 -0
- package/scripts/healthcheck.sh +110 -0
- package/scripts/hooks/block-mcp-slack-send.sh +7 -0
- package/scripts/hooks/post-action-log.sh +17 -0
- package/scripts/hooks/pre-send-audit.sh +57 -0
- package/scripts/hooks/session-end-log.sh +27 -0
- package/scripts/huddle/audio-bridge.mjs +664 -0
- package/scripts/huddle/boot-slack-cdp.sh +102 -0
- package/scripts/huddle/huddle-controller.mjs +942 -0
- package/scripts/huddle/huddle-server.mjs +1059 -0
- package/scripts/huddle/launch-slack.sh +232 -0
- package/scripts/huddle/node_modules/.package-lock.json +50 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/CHANGELOG.md +1677 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/LICENSE +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/README.md +674 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.js +226 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.mjs +223 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/_vendor/partial-json-parser/parser.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/api-promise.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/bin/cli +53 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/bin/migration-config.json +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.mts +225 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.ts +225 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.js +536 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.mjs +531 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/client.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.mts +49 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.ts +49 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.js +76 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.mjs +72 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/api-promise.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.mts +47 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.ts +47 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.js +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.mjs +98 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/error.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.mts +63 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.ts +63 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.js +123 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.mjs +117 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/pagination.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.mts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.ts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.js +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.mjs +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/resource.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.mts +31 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.ts +31 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.js +282 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.mjs +277 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/streaming.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/core/uploads.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/error.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.mts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.ts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.js +35 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.mjs +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.mts +73 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.ts +73 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/builtin-types.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.mts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.ts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.js +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.mjs +12 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/constants.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.mts +10 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.ts +10 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.js +39 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.mjs +35 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/jsonl.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.mts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.ts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.js +113 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.mjs +108 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/decoders/line.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.mts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.ts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.js +162 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.mjs +157 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/detect-platform.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.js +41 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.mjs +36 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/errors.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.mts +22 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.ts +22 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.js +79 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.mjs +74 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/headers.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.mts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.ts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.js +55 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.mjs +51 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/parse.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.mts +34 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.ts +34 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.js +14 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.mjs +10 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/request-options.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shim-types.d.mts +28 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shim-types.d.ts +28 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.mts +20 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.ts +20 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.js +92 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.mjs +85 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/shims.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.mts +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.ts +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.js +38 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.mjs +35 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/stream-utils.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.mts +45 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.ts +45 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.js +96 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.mjs +93 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/to-file.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/tslib.js +81 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/tslib.mjs +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.mts +67 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.ts +67 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/types.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.mts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.ts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.js +146 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.mjs +136 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/uploads.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.js +38 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.mjs +33 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/base64.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.mts +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.ts +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.js +31 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.mjs +26 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/bytes.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.mts +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.ts +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.js +22 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.mjs +18 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/env.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.mts +37 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.ts +37 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.js +86 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.mjs +80 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/log.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.mts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.ts +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.js +58 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.mjs +53 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/path.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.js +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/sleep.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.mts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.ts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.js +19 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.mjs +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/uuid.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.mts +16 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.ts +16 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.js +109 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.mjs +92 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils/values.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.mts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.ts +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.js +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.mjs +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/internal/utils.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.mts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.ts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.js +553 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.mjs +549 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/BetaMessageStream.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.mts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.ts +114 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.js +553 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.mjs +549 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/lib/MessageStream.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/package.json +185 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/pagination.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resource.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.mts +61 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.ts +61 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.js +25 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.mjs +20 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/beta.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.mts +151 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.ts +151 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.js +122 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.mjs +118 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/files.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.mts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.ts +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.js +13 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.mjs +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.mts +343 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.ts +343 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.js +204 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.mjs +200 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/batches.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.js +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.mjs +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.mts +1561 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.ts +1561 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.js +86 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.mjs +81 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.mts +74 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.ts +74 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.js +60 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.mjs +56 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta/models.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/beta.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.mts +183 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.ts +183 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.js +23 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.mjs +19 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/completions.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.mts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.ts +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.js +15 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.mjs +7 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.mts +304 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.ts +304 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.js +153 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.mjs +149 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/batches.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.mts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.js +9 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.mjs +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/index.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.mts +1264 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.ts +1264 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.js +72 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.mjs +67 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/messages.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.mts +59 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.ts +59 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.js +45 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.mjs +41 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/models.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.mts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.ts +42 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/shared.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.js +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.mjs +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources/top-level.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.js +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/resources.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/_vendor/partial-json-parser/README.md +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/_vendor/partial-json-parser/parser.ts +264 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/api-promise.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/client.ts +1070 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/README.md +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/api-promise.ts +101 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/error.ts +133 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/pagination.ts +201 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/resource.ts +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/streaming.ts +331 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/core/uploads.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/error.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/index.ts +23 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/README.md +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/builtin-types.ts +93 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/constants.ts +12 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/decoders/jsonl.ts +48 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/decoders/line.ts +135 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/detect-platform.ts +196 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/errors.ts +33 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/headers.ts +99 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/parse.ts +84 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/request-options.ts +39 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/shim-types.d.ts +28 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/shims.ts +107 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/stream-utils.ts +32 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/to-file.ts +159 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/types.ts +92 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/uploads.ts +193 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/base64.ts +40 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/bytes.ts +32 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/env.ts +18 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/log.ts +127 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/path.ts +65 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/sleep.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/uuid.ts +17 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils/values.ts +102 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/internal/utils.ts +8 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/lib/.keep +4 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/lib/BetaMessageStream.ts +683 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/lib/MessageStream.ts +684 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/pagination.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resource.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/beta.ts +380 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/files.ts +258 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/index.ts +148 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages/batches.ts +502 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages/index.ts +135 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages/messages.ts +2249 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/messages.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta/models.ts +118 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/beta.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/completions.ts +231 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/index.ts +121 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages/batches.ts +396 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages/index.ts +110 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages/messages.ts +1783 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/messages.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/models.ts +103 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/shared.ts +72 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources/top-level.ts +3 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/resources.ts +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/streaming.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/tsconfig.json +11 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/uploads.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/src/version.ts +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/streaming.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.js +6 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/uploads.mjs.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.mts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.mts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.ts +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.d.ts.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.js +5 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.js.map +1 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.mjs +2 -0
- package/scripts/huddle/node_modules/@anthropic-ai/sdk/version.mjs.map +1 -0
- package/scripts/huddle/node_modules/dotenv/CHANGELOG.md +520 -0
- package/scripts/huddle/node_modules/dotenv/LICENSE +23 -0
- package/scripts/huddle/node_modules/dotenv/README-es.md +411 -0
- package/scripts/huddle/node_modules/dotenv/README.md +645 -0
- package/scripts/huddle/node_modules/dotenv/SECURITY.md +1 -0
- package/scripts/huddle/node_modules/dotenv/config.d.ts +1 -0
- package/scripts/huddle/node_modules/dotenv/config.js +9 -0
- package/scripts/huddle/node_modules/dotenv/lib/cli-options.js +17 -0
- package/scripts/huddle/node_modules/dotenv/lib/env-options.js +28 -0
- package/scripts/huddle/node_modules/dotenv/lib/main.d.ts +162 -0
- package/scripts/huddle/node_modules/dotenv/lib/main.js +386 -0
- package/scripts/huddle/node_modules/dotenv/package.json +62 -0
- package/scripts/huddle/node_modules/ws/LICENSE +20 -0
- package/scripts/huddle/node_modules/ws/README.md +548 -0
- package/scripts/huddle/node_modules/ws/browser.js +8 -0
- package/scripts/huddle/node_modules/ws/index.js +22 -0
- package/scripts/huddle/node_modules/ws/lib/buffer-util.js +131 -0
- package/scripts/huddle/node_modules/ws/lib/constants.js +19 -0
- package/scripts/huddle/node_modules/ws/lib/event-target.js +292 -0
- package/scripts/huddle/node_modules/ws/lib/extension.js +203 -0
- package/scripts/huddle/node_modules/ws/lib/limiter.js +55 -0
- package/scripts/huddle/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/scripts/huddle/node_modules/ws/lib/receiver.js +706 -0
- package/scripts/huddle/node_modules/ws/lib/sender.js +602 -0
- package/scripts/huddle/node_modules/ws/lib/stream.js +161 -0
- package/scripts/huddle/node_modules/ws/lib/subprotocol.js +62 -0
- package/scripts/huddle/node_modules/ws/lib/validation.js +152 -0
- package/scripts/huddle/node_modules/ws/lib/websocket-server.js +554 -0
- package/scripts/huddle/node_modules/ws/lib/websocket.js +1393 -0
- package/scripts/huddle/node_modules/ws/package.json +70 -0
- package/scripts/huddle/node_modules/ws/wrapper.mjs +21 -0
- package/scripts/huddle/package-lock.json +62 -0
- package/scripts/huddle/package.json +22 -0
- package/scripts/huddle/setup-audio.sh +239 -0
- package/scripts/huddle/start-call.mjs +318 -0
- package/scripts/huddle/test-pipeline.mjs +263 -0
- package/scripts/llm_email_dedup.py +434 -0
- package/scripts/local-triggers/install-all.sh +43 -0
- package/scripts/local-triggers/plists/ai.adaptic.slack-events-server.plist +45 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-backlog-executor.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-daemon.plist +32 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-inbox-processor.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-meeting-action-capture.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-meeting-prep.plist +21 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-midday-sweep.plist +26 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-quarterly-self-assessment.plist +62 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-execution.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-hiring.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-priorities.plist +28 -0
- package/scripts/local-triggers/plists/ai.adaptic.sophie-weekly-strategic-memo.plist +28 -0
- package/scripts/local-triggers/run-trigger.sh +44 -0
- package/scripts/media-generation/README.md +103 -0
- package/scripts/media-generation/gemini-image-client.mjs +173 -0
- package/scripts/media-generation/generate-assets.mjs +289 -0
- package/scripts/media-generation/veo-video-client.mjs +219 -0
- package/scripts/mehran-inbox-poller.py +437 -0
- package/scripts/outbound-dedup-cleanup.sh +43 -0
- package/scripts/outbound-dedup.sh +476 -0
- package/scripts/outbound_dedup.py +115 -0
- package/scripts/parse-voice-transcript.mjs +486 -0
- package/scripts/pdf-generation/README.md +61 -0
- package/scripts/pdf-generation/build-document.mjs +230 -0
- package/scripts/pdf-generation/templates/board-pack.latex +136 -0
- package/scripts/pdf-generation/templates/corporate-letter.latex +126 -0
- package/scripts/pdf-generation/templates/memo.latex +114 -0
- package/scripts/poll-slack-events.sh +33 -0
- package/scripts/poller/calendar-poller.mjs +12 -0
- package/scripts/poller/gmail-poller.mjs +156 -0
- package/scripts/poller/imap-client.mjs +286 -0
- package/scripts/poller/index.mjs +73 -0
- package/scripts/poller/intra-session-check.mjs +267 -0
- package/scripts/poller/mehran-gmail-poller.mjs +98 -0
- package/scripts/poller/slack-poller.mjs +716 -0
- package/scripts/poller/trigger.mjs +47 -0
- package/scripts/poller/utils.mjs +253 -0
- package/scripts/poller-launchd/ai.adaptic.sophie-poller.plist +40 -0
- package/scripts/poller-launchd/ai.adaptic.sophie-whatsapp-handler.plist +39 -0
- package/scripts/poller-launchd/install.sh +38 -0
- package/scripts/post-interaction-indexer.py +1598 -0
- package/scripts/pre-draft-context.py +994 -0
- package/scripts/pre_draft_lookup.py +258 -0
- package/scripts/rag-indexer.py +629 -0
- package/scripts/resume-operations.sh +40 -0
- package/scripts/search-mehran-inbox.py +181 -0
- package/scripts/self-optimization/compute-metrics.py +377 -0
- package/scripts/send-difc-rfp.sh +98 -0
- package/scripts/send-email-as-mehran.py +369 -0
- package/scripts/send-email-threaded.py +336 -0
- package/scripts/send-email-with-attachment.py +360 -0
- package/scripts/send-email.sh +93 -0
- package/scripts/send-sms.sh +151 -0
- package/scripts/send-whatsapp.sh +261 -0
- package/scripts/session-start.sh +106 -0
- package/scripts/setup/configure-macos.sh +508 -0
- package/scripts/setup/init-agent.sh +450 -0
- package/scripts/slack-events-ctl.sh +177 -0
- package/scripts/slack-events-server.mjs +989 -0
- package/scripts/slack-react.mjs +89 -0
- package/scripts/slack-responded.sh +185 -0
- package/scripts/slack-send.sh +190 -0
- package/scripts/slack-typing.mjs +196 -0
- package/scripts/slack-upload-v2.py +95 -0
- package/scripts/sms-handler.mjs +436 -0
- package/scripts/sophie-inbox-poller.py +406 -0
- package/scripts/spawn-session.sh +85 -0
- package/scripts/system-verify.sh +171 -0
- package/scripts/test-email-thread-dedup.py +239 -0
- package/scripts/test-information-barriers.py +484 -0
- package/scripts/test-llm-email-dedup.py +251 -0
- package/scripts/test-pre-draft-integration.py +203 -0
- package/scripts/test-rag-phase2.sh +442 -0
- package/scripts/test-rag-search.sh +251 -0
- package/scripts/test-voice-parser.mjs +316 -0
- package/scripts/user-context-search.py +660 -0
- package/scripts/validate-outbound.py +1493 -0
- package/scripts/whatsapp-handler.mjs +525 -0
- package/teams/desktop-operations.yaml +34 -0
- package/teams/executive-office.yaml +27 -0
- package/teams/legal-and-regulatory.yaml +24 -0
- package/teams/platform-and-engineering.yaml +23 -0
- package/teams/strategy-and-growth.yaml +29 -0
- package/workflows/continuous/inbound-monitor.yaml +168 -0
- package/workflows/daily/applicant-triage.yaml +197 -0
- package/workflows/daily/comms-triage.yaml +80 -0
- package/workflows/daily/evening-wrap.yaml +65 -0
- package/workflows/daily/morning-brief.yaml +147 -0
- package/workflows/daily/slack-followup-sweep.yaml +87 -0
- package/workflows/event-driven/README.md +50 -0
- package/workflows/monthly/board-readiness.yaml +76 -0
- package/workflows/quarterly/strategic-scenario-analysis.yaml +85 -0
- package/workflows/session-protocol.md +171 -0
- package/workflows/weekly/hiring-review.yaml +169 -0
- package/workflows/weekly/rollup-pipeline-review.yaml +76 -0
- package/workflows/weekly/strategic-memo.yaml +79 -0
|
@@ -0,0 +1,873 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Post-Draft Disclosure Assessment Engine — Layer 2 hard gate.
|
|
3
|
+
|
|
4
|
+
Analyses a draft message against recipient information boundaries and
|
|
5
|
+
provenance data to determine whether it is safe to send.
|
|
6
|
+
|
|
7
|
+
Usage (CLI):
|
|
8
|
+
echo "Let's discuss the FTLab operations schedule" | \\
|
|
9
|
+
python3 scripts/disclosure_assessment.py --recipient shayan-kargarian
|
|
10
|
+
|
|
11
|
+
python3 scripts/disclosure_assessment.py \\
|
|
12
|
+
--recipient shayan-kargarian --channel rollup-strategy \\
|
|
13
|
+
--message "The JVA negotiation is progressing well"
|
|
14
|
+
|
|
15
|
+
Exit codes:
|
|
16
|
+
0 = passed or warn (safe to send, possibly with a warning)
|
|
17
|
+
1 = stripped (send but strip / redact the flagged content)
|
|
18
|
+
2 = blocked (do not send)
|
|
19
|
+
|
|
20
|
+
Output: JSON to stdout.
|
|
21
|
+
|
|
22
|
+
Created: 2026-04-05 — Task 7, Layer 2 disclosure assessment system
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
import argparse
|
|
26
|
+
import hashlib
|
|
27
|
+
import json
|
|
28
|
+
import os
|
|
29
|
+
import sys
|
|
30
|
+
import time
|
|
31
|
+
import uuid
|
|
32
|
+
from datetime import datetime, timezone, timedelta
|
|
33
|
+
from pathlib import Path
|
|
34
|
+
|
|
35
|
+
# ─── Paths ────────────────────────────────────────────────────────────────────
|
|
36
|
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
|
37
|
+
REPO_ROOT = SCRIPT_DIR.parent
|
|
38
|
+
USER_PROFILES_DIR = REPO_ROOT / "memory" / "profiles" / "users"
|
|
39
|
+
CHANNEL_PROFILES_DIR = REPO_ROOT / "memory" / "profiles" / "channels"
|
|
40
|
+
PROVENANCE_INDEX = REPO_ROOT / "memory" / "provenance" / "index.jsonl"
|
|
41
|
+
AUDIT_LOG_DIR = REPO_ROOT / "logs" / "audit"
|
|
42
|
+
|
|
43
|
+
# ─── Constants ────────────────────────────────────────────────────────────────
|
|
44
|
+
SEVERITY_ORDER = {"low": 0, "medium": 1, "high": 2, "critical": 3}
|
|
45
|
+
SEVERITY_ACTIONS = {
|
|
46
|
+
"critical": "block_and_escalate",
|
|
47
|
+
"high": "block_and_flag",
|
|
48
|
+
"medium": "strip_and_send",
|
|
49
|
+
"low": "warn_and_send",
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
# Words that provide no discriminating signal when extracted from matter/source_id
|
|
53
|
+
_COMMON_WORDS = frozenset({
|
|
54
|
+
"2024", "2025", "2026", "2027",
|
|
55
|
+
"meeting", "email", "slack", "call", "chat",
|
|
56
|
+
"the", "and", "for", "with", "from", "into", "onto",
|
|
57
|
+
"a", "an", "of", "in", "on", "at", "by", "to",
|
|
58
|
+
"review", "update", "notes", "summary", "discussion",
|
|
59
|
+
})
|
|
60
|
+
_MIN_KEYWORD_LEN = 3
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
# ─── YAML Parser ──────────────────────────────────────────────────────────────
|
|
64
|
+
# Reuse the same minimal parser pattern from disclosure_boundaries.py.
|
|
65
|
+
# Try to import it; fall back to a local copy so there is no hard dependency.
|
|
66
|
+
|
|
67
|
+
try:
|
|
68
|
+
from disclosure_boundaries import (
|
|
69
|
+
_parse_yaml,
|
|
70
|
+
load_profile as _load_profile_from_boundaries,
|
|
71
|
+
load_recent_provenance as _load_provenance_from_boundaries,
|
|
72
|
+
)
|
|
73
|
+
_have_boundaries_module = True
|
|
74
|
+
except ImportError:
|
|
75
|
+
_have_boundaries_module = False
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def _parse_yaml(text: str) -> dict:
|
|
79
|
+
"""Parse YAML text into a Python dict. PyYAML if available, else custom."""
|
|
80
|
+
try:
|
|
81
|
+
import yaml as _yaml
|
|
82
|
+
return _yaml.safe_load(text) or {}
|
|
83
|
+
except ImportError:
|
|
84
|
+
pass
|
|
85
|
+
|
|
86
|
+
lines = text.split("\n")
|
|
87
|
+
result, _ = _parse_block(lines, 0, 0)
|
|
88
|
+
return result if isinstance(result, dict) else {}
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def _next_content(lines, start):
|
|
92
|
+
i = start
|
|
93
|
+
while i < len(lines):
|
|
94
|
+
s = lines[i].lstrip()
|
|
95
|
+
if s and not s.startswith("#"):
|
|
96
|
+
return len(lines[i]) - len(lines[i].lstrip()), i
|
|
97
|
+
i += 1
|
|
98
|
+
return None, None
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
def _parse_block(lines, start, base_indent):
|
|
102
|
+
result = {}
|
|
103
|
+
i = start
|
|
104
|
+
while i < len(lines):
|
|
105
|
+
raw = lines[i]
|
|
106
|
+
stripped = raw.lstrip()
|
|
107
|
+
if not stripped or stripped.startswith("#"):
|
|
108
|
+
i += 1
|
|
109
|
+
continue
|
|
110
|
+
indent = len(raw) - len(raw.lstrip())
|
|
111
|
+
if indent < base_indent and i > start:
|
|
112
|
+
break
|
|
113
|
+
if indent > base_indent and i > start:
|
|
114
|
+
break
|
|
115
|
+
if stripped.startswith("- "):
|
|
116
|
+
if not result:
|
|
117
|
+
lst, i = _parse_list(lines, i, indent)
|
|
118
|
+
return lst, i
|
|
119
|
+
break
|
|
120
|
+
if ":" in stripped and not stripped.startswith("-"):
|
|
121
|
+
colon_pos = stripped.index(":")
|
|
122
|
+
key = stripped[:colon_pos].strip()
|
|
123
|
+
rest = stripped[colon_pos + 1:].strip()
|
|
124
|
+
if rest.startswith("["):
|
|
125
|
+
result[key] = _parse_inline_list(rest)
|
|
126
|
+
i += 1
|
|
127
|
+
continue
|
|
128
|
+
if rest in (">", "|", ">-", "|-", ">+", "|+"):
|
|
129
|
+
value, i = _parse_block_scalar(lines, i + 1, indent)
|
|
130
|
+
result[key] = value
|
|
131
|
+
continue
|
|
132
|
+
if rest:
|
|
133
|
+
result[key] = _yaml_scalar(rest)
|
|
134
|
+
i += 1
|
|
135
|
+
else:
|
|
136
|
+
child_indent, child_idx = _next_content(lines, i + 1)
|
|
137
|
+
if child_indent is not None and child_indent > indent:
|
|
138
|
+
child_stripped = lines[child_idx].lstrip()
|
|
139
|
+
if child_stripped.startswith("- "):
|
|
140
|
+
value, i = _parse_list(lines, child_idx, child_indent)
|
|
141
|
+
elif child_stripped.startswith("["):
|
|
142
|
+
value = _parse_inline_list(child_stripped)
|
|
143
|
+
i = child_idx + 1
|
|
144
|
+
else:
|
|
145
|
+
value, i = _parse_block(lines, child_idx, child_indent)
|
|
146
|
+
result[key] = value
|
|
147
|
+
else:
|
|
148
|
+
result[key] = None
|
|
149
|
+
i += 1
|
|
150
|
+
else:
|
|
151
|
+
i += 1
|
|
152
|
+
return result, i
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
def _parse_list(lines, start, base_indent):
|
|
156
|
+
result = []
|
|
157
|
+
i = start
|
|
158
|
+
while i < len(lines):
|
|
159
|
+
raw = lines[i]
|
|
160
|
+
stripped = raw.lstrip()
|
|
161
|
+
if not stripped or stripped.startswith("#"):
|
|
162
|
+
i += 1
|
|
163
|
+
continue
|
|
164
|
+
indent = len(raw) - len(raw.lstrip())
|
|
165
|
+
if indent < base_indent:
|
|
166
|
+
break
|
|
167
|
+
if indent > base_indent:
|
|
168
|
+
break
|
|
169
|
+
if not stripped.startswith("- "):
|
|
170
|
+
break
|
|
171
|
+
item_content = stripped[2:].strip()
|
|
172
|
+
if item_content.startswith("["):
|
|
173
|
+
result.append(_parse_inline_list(item_content))
|
|
174
|
+
i += 1
|
|
175
|
+
continue
|
|
176
|
+
if item_content in (">", "|", ">-", "|-", ">+", "|+"):
|
|
177
|
+
value, i = _parse_block_scalar(lines, i + 1, indent)
|
|
178
|
+
result.append(value)
|
|
179
|
+
continue
|
|
180
|
+
if ":" in item_content and not item_content.startswith('"') and not item_content.startswith("'"):
|
|
181
|
+
colon_pos = item_content.index(":")
|
|
182
|
+
k = item_content[:colon_pos].strip()
|
|
183
|
+
v = item_content[colon_pos + 1:].strip()
|
|
184
|
+
item_dict = {k: _parse_inline_list(v) if v.startswith("[") else (_yaml_scalar(v) if v else None)}
|
|
185
|
+
child_indent, child_idx = _next_content(lines, i + 1)
|
|
186
|
+
if child_indent is not None and child_indent > indent:
|
|
187
|
+
child_stripped = lines[child_idx].lstrip()
|
|
188
|
+
if child_stripped.startswith("- "):
|
|
189
|
+
i += 1
|
|
190
|
+
else:
|
|
191
|
+
extra, i = _parse_block(lines, child_idx, child_indent)
|
|
192
|
+
if isinstance(extra, dict):
|
|
193
|
+
item_dict.update(extra)
|
|
194
|
+
else:
|
|
195
|
+
i += 1
|
|
196
|
+
result.append(item_dict)
|
|
197
|
+
else:
|
|
198
|
+
result.append(_yaml_scalar(item_content))
|
|
199
|
+
i += 1
|
|
200
|
+
return result, i
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
def _parse_block_scalar(lines, start, owner_indent):
|
|
204
|
+
parts = []
|
|
205
|
+
i = start
|
|
206
|
+
while i < len(lines):
|
|
207
|
+
raw = lines[i]
|
|
208
|
+
stripped = raw.lstrip()
|
|
209
|
+
if not stripped:
|
|
210
|
+
i += 1
|
|
211
|
+
continue
|
|
212
|
+
indent = len(raw) - len(raw.lstrip())
|
|
213
|
+
if indent <= owner_indent:
|
|
214
|
+
break
|
|
215
|
+
parts.append(stripped)
|
|
216
|
+
i += 1
|
|
217
|
+
return " ".join(parts), i
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
def _parse_inline_list(text: str):
|
|
221
|
+
text = text.strip()
|
|
222
|
+
if not (text.startswith("[") and text.endswith("]")):
|
|
223
|
+
return [_yaml_scalar(text)] if text else []
|
|
224
|
+
inner = text[1:-1].strip()
|
|
225
|
+
if not inner:
|
|
226
|
+
return []
|
|
227
|
+
items = []
|
|
228
|
+
current = ""
|
|
229
|
+
in_quote = None
|
|
230
|
+
for ch in inner:
|
|
231
|
+
if ch in ('"', "'") and in_quote is None:
|
|
232
|
+
in_quote = ch
|
|
233
|
+
elif ch == in_quote:
|
|
234
|
+
in_quote = None
|
|
235
|
+
elif ch == "," and in_quote is None:
|
|
236
|
+
items.append(_yaml_scalar(current.strip()))
|
|
237
|
+
current = ""
|
|
238
|
+
continue
|
|
239
|
+
current += ch
|
|
240
|
+
if current.strip():
|
|
241
|
+
items.append(_yaml_scalar(current.strip()))
|
|
242
|
+
return items
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
def _yaml_scalar(text: str):
|
|
246
|
+
if text is None:
|
|
247
|
+
return None
|
|
248
|
+
text = text.strip()
|
|
249
|
+
if not text:
|
|
250
|
+
return None
|
|
251
|
+
if (text.startswith('"') and text.endswith('"')) or \
|
|
252
|
+
(text.startswith("'") and text.endswith("'")):
|
|
253
|
+
return text[1:-1]
|
|
254
|
+
for sep in (" #", "\t#"):
|
|
255
|
+
if sep in text:
|
|
256
|
+
text = text[:text.index(sep)].strip()
|
|
257
|
+
if text.lower() in ("true", "yes"):
|
|
258
|
+
return True
|
|
259
|
+
if text.lower() in ("false", "no"):
|
|
260
|
+
return False
|
|
261
|
+
if text.lower() in ("null", "~"):
|
|
262
|
+
return None
|
|
263
|
+
try:
|
|
264
|
+
return int(text)
|
|
265
|
+
except ValueError:
|
|
266
|
+
pass
|
|
267
|
+
try:
|
|
268
|
+
return float(text)
|
|
269
|
+
except ValueError:
|
|
270
|
+
pass
|
|
271
|
+
return text
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
# ─── Profile Loading ──────────────────────────────────────────────────────────
|
|
275
|
+
|
|
276
|
+
def _load_profile(slug: str) -> dict | None:
|
|
277
|
+
"""Load a user profile YAML. Returns None if not found."""
|
|
278
|
+
path = USER_PROFILES_DIR / f"{slug}.yaml"
|
|
279
|
+
if not path.exists():
|
|
280
|
+
return None
|
|
281
|
+
return _parse_yaml(path.read_text(encoding="utf-8"))
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
def _load_channel_members(channel: str) -> list[str]:
|
|
285
|
+
"""Resolve channel slug/id → member slug list.
|
|
286
|
+
|
|
287
|
+
Accepts a Slack channel ID (C...) or a profile name slug.
|
|
288
|
+
Returns list of member slugs, empty list if channel not found.
|
|
289
|
+
"""
|
|
290
|
+
if not channel:
|
|
291
|
+
return []
|
|
292
|
+
|
|
293
|
+
# Search all channel profile files
|
|
294
|
+
for profile_path in CHANNEL_PROFILES_DIR.glob("*.yaml"):
|
|
295
|
+
try:
|
|
296
|
+
data = _parse_yaml(profile_path.read_text(encoding="utf-8"))
|
|
297
|
+
except Exception:
|
|
298
|
+
continue
|
|
299
|
+
slack_id = str(data.get("slack_id") or "")
|
|
300
|
+
name = str(data.get("name") or profile_path.stem)
|
|
301
|
+
if channel in (slack_id, name, profile_path.stem):
|
|
302
|
+
members = data.get("members") or []
|
|
303
|
+
return [str(m) for m in members if m]
|
|
304
|
+
|
|
305
|
+
return []
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
def _load_provenance_recent(hours: int = 48) -> list[dict]:
|
|
309
|
+
"""Load provenance records from the last *hours* hours."""
|
|
310
|
+
if not PROVENANCE_INDEX.exists():
|
|
311
|
+
return []
|
|
312
|
+
|
|
313
|
+
cutoff = datetime.now(tz=timezone.utc) - timedelta(hours=hours)
|
|
314
|
+
records = []
|
|
315
|
+
|
|
316
|
+
with PROVENANCE_INDEX.open(encoding="utf-8") as fh:
|
|
317
|
+
for line in fh:
|
|
318
|
+
line = line.strip()
|
|
319
|
+
if not line:
|
|
320
|
+
continue
|
|
321
|
+
try:
|
|
322
|
+
rec = json.loads(line)
|
|
323
|
+
except json.JSONDecodeError:
|
|
324
|
+
continue
|
|
325
|
+
|
|
326
|
+
ts_raw = rec.get("timestamp", "")
|
|
327
|
+
try:
|
|
328
|
+
ts_str = ts_raw.replace("Z", "+00:00")
|
|
329
|
+
ts = datetime.fromisoformat(ts_str)
|
|
330
|
+
if ts.tzinfo is None:
|
|
331
|
+
ts = ts.replace(tzinfo=timezone.utc)
|
|
332
|
+
except (ValueError, AttributeError):
|
|
333
|
+
records.append(rec)
|
|
334
|
+
continue
|
|
335
|
+
|
|
336
|
+
if ts >= cutoff:
|
|
337
|
+
records.append(rec)
|
|
338
|
+
|
|
339
|
+
return records
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
def _log_assessment(
|
|
343
|
+
*,
|
|
344
|
+
message_id: str,
|
|
345
|
+
channel: str | None,
|
|
346
|
+
recipients: list[str],
|
|
347
|
+
restricted_recipients: list[str],
|
|
348
|
+
references_assessed: list[dict],
|
|
349
|
+
outcome: str,
|
|
350
|
+
severity: str | None,
|
|
351
|
+
action: str,
|
|
352
|
+
draft_hash: str,
|
|
353
|
+
assessment_duration_ms: float,
|
|
354
|
+
) -> None:
|
|
355
|
+
"""Append one line to the dated disclosure-assessments audit log."""
|
|
356
|
+
AUDIT_LOG_DIR.mkdir(parents=True, exist_ok=True)
|
|
357
|
+
date_str = datetime.now(tz=timezone.utc).strftime("%Y-%m-%d")
|
|
358
|
+
log_path = AUDIT_LOG_DIR / f"{date_str}-disclosure-assessments.jsonl"
|
|
359
|
+
|
|
360
|
+
record = {
|
|
361
|
+
"timestamp": datetime.now(tz=timezone.utc).isoformat(),
|
|
362
|
+
"message_id": message_id,
|
|
363
|
+
"channel": channel,
|
|
364
|
+
"recipients": recipients,
|
|
365
|
+
"restricted_recipients": restricted_recipients,
|
|
366
|
+
"references_assessed": references_assessed,
|
|
367
|
+
"outcome": outcome,
|
|
368
|
+
"severity": severity,
|
|
369
|
+
"action": action,
|
|
370
|
+
"draft_hash": draft_hash,
|
|
371
|
+
"assessment_duration_ms": round(assessment_duration_ms, 2),
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
with log_path.open("a", encoding="utf-8") as fh:
|
|
375
|
+
fh.write(json.dumps(record) + "\n")
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
# ─── Reference Extraction ─────────────────────────────────────────────────────
|
|
379
|
+
|
|
380
|
+
def _extract_keywords(text: str) -> set[str]:
|
|
381
|
+
"""Extract discriminating keywords from a provenance matter/source_id."""
|
|
382
|
+
if not text:
|
|
383
|
+
return set()
|
|
384
|
+
# Split on hyphens, underscores, slashes, and whitespace
|
|
385
|
+
parts = [p.strip().lower() for p in __import__("re").split(r"[-_/\s]+", text)]
|
|
386
|
+
return {
|
|
387
|
+
p for p in parts
|
|
388
|
+
if p and len(p) >= _MIN_KEYWORD_LEN and p not in _COMMON_WORDS
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
def _extract_matter_references(draft: str, provenance_records: list[dict]) -> list[dict]:
|
|
393
|
+
"""Find provenance records whose keywords appear in the draft text.
|
|
394
|
+
|
|
395
|
+
Returns a list of match dicts:
|
|
396
|
+
{
|
|
397
|
+
"record": <provenance record dict>,
|
|
398
|
+
"matched_keywords": [str, ...],
|
|
399
|
+
"match_confidence": "high" | "medium",
|
|
400
|
+
}
|
|
401
|
+
"""
|
|
402
|
+
if not draft.strip():
|
|
403
|
+
return []
|
|
404
|
+
|
|
405
|
+
draft_lower = draft.lower()
|
|
406
|
+
matches = []
|
|
407
|
+
|
|
408
|
+
for rec in provenance_records:
|
|
409
|
+
matter = str(rec.get("matter") or "")
|
|
410
|
+
source_id = str(rec.get("source_id") or "")
|
|
411
|
+
|
|
412
|
+
keywords = _extract_keywords(matter) | _extract_keywords(source_id)
|
|
413
|
+
if not keywords:
|
|
414
|
+
continue
|
|
415
|
+
|
|
416
|
+
matched = [kw for kw in keywords if kw in draft_lower]
|
|
417
|
+
if not matched:
|
|
418
|
+
continue
|
|
419
|
+
|
|
420
|
+
confidence = "high" if len(matched) >= 2 else "medium"
|
|
421
|
+
matches.append({
|
|
422
|
+
"record": rec,
|
|
423
|
+
"matched_keywords": matched,
|
|
424
|
+
"match_confidence": confidence,
|
|
425
|
+
})
|
|
426
|
+
|
|
427
|
+
return matches
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
# ─── Per-Reference Assessment ─────────────────────────────────────────────────
|
|
431
|
+
|
|
432
|
+
def _assess_reference(
|
|
433
|
+
ref_match: dict,
|
|
434
|
+
recipient_slug: str,
|
|
435
|
+
boundaries: dict,
|
|
436
|
+
) -> dict:
|
|
437
|
+
"""Assess a single matched provenance reference against a recipient's boundaries.
|
|
438
|
+
|
|
439
|
+
Returns:
|
|
440
|
+
{
|
|
441
|
+
"source_id": str,
|
|
442
|
+
"matter": str,
|
|
443
|
+
"match_confidence": str,
|
|
444
|
+
"matched_keywords": list,
|
|
445
|
+
"checks": [{"check": str, "result": str, "severity": str | None, "reason": str}],
|
|
446
|
+
"highest_severity": str | None,
|
|
447
|
+
}
|
|
448
|
+
"""
|
|
449
|
+
rec = ref_match["record"]
|
|
450
|
+
match_confidence = ref_match["match_confidence"]
|
|
451
|
+
matched_keywords = ref_match["matched_keywords"]
|
|
452
|
+
|
|
453
|
+
source_id = str(rec.get("source_id") or "unknown")
|
|
454
|
+
matter = str(rec.get("matter") or "")
|
|
455
|
+
sensitivity_signals = [str(s).lower() for s in (rec.get("sensitivity_signals") or [])]
|
|
456
|
+
participants = [str(p).lower() for p in (rec.get("participants") or [])]
|
|
457
|
+
context_domain = str(rec.get("context_domain") or "").lower()
|
|
458
|
+
|
|
459
|
+
conflicts = boundaries.get("conflicts") or []
|
|
460
|
+
excluded_domains = [str(d).lower() for d in (boundaries.get("excluded_domains") or [])]
|
|
461
|
+
|
|
462
|
+
# Build conflict matter set
|
|
463
|
+
conflict_matters = set()
|
|
464
|
+
for c in conflicts:
|
|
465
|
+
if isinstance(c, dict):
|
|
466
|
+
m = c.get("matter")
|
|
467
|
+
if m:
|
|
468
|
+
conflict_matters.add(str(m).lower())
|
|
469
|
+
elif isinstance(c, str):
|
|
470
|
+
conflict_matters.add(c.lower())
|
|
471
|
+
|
|
472
|
+
recipient_lower = recipient_slug.lower()
|
|
473
|
+
checks = []
|
|
474
|
+
highest_severity = None
|
|
475
|
+
|
|
476
|
+
# ── 1. Privilege check ──────────────────────────────────────────────────
|
|
477
|
+
has_privilege = any(s in ("legal_privilege", "negotiation_position") for s in sensitivity_signals)
|
|
478
|
+
if has_privilege:
|
|
479
|
+
priv_signals = [s for s in sensitivity_signals if s in ("legal_privilege", "negotiation_position")]
|
|
480
|
+
checks.append({
|
|
481
|
+
"check": "privilege",
|
|
482
|
+
"result": "FAIL",
|
|
483
|
+
"severity": "critical",
|
|
484
|
+
"reason": f"Provenance carries privileged sensitivity signals: {', '.join(priv_signals)}",
|
|
485
|
+
})
|
|
486
|
+
highest_severity = _escalate_severity(highest_severity, "critical")
|
|
487
|
+
else:
|
|
488
|
+
checks.append({
|
|
489
|
+
"check": "privilege",
|
|
490
|
+
"result": "PASS",
|
|
491
|
+
"severity": None,
|
|
492
|
+
"reason": "No privilege signals detected",
|
|
493
|
+
})
|
|
494
|
+
|
|
495
|
+
# ── 2. Conflict check ───────────────────────────────────────────────────
|
|
496
|
+
matter_lower = matter.lower()
|
|
497
|
+
is_conflict_matter = bool(matter_lower and matter_lower in conflict_matters)
|
|
498
|
+
if is_conflict_matter:
|
|
499
|
+
# Critical if also has privilege, otherwise high
|
|
500
|
+
conflict_sev = "critical" if has_privilege else "high"
|
|
501
|
+
# Find nature note
|
|
502
|
+
nature = ""
|
|
503
|
+
for c in conflicts:
|
|
504
|
+
if isinstance(c, dict) and str(c.get("matter", "")).lower() == matter_lower:
|
|
505
|
+
nature = c.get("nature", "")
|
|
506
|
+
break
|
|
507
|
+
checks.append({
|
|
508
|
+
"check": "conflict",
|
|
509
|
+
"result": "FAIL",
|
|
510
|
+
"severity": conflict_sev,
|
|
511
|
+
"reason": f"Matter '{matter}' is a declared conflict for this recipient"
|
|
512
|
+
+ (f" — {nature}" if nature else ""),
|
|
513
|
+
})
|
|
514
|
+
highest_severity = _escalate_severity(highest_severity, conflict_sev)
|
|
515
|
+
else:
|
|
516
|
+
checks.append({
|
|
517
|
+
"check": "conflict",
|
|
518
|
+
"result": "PASS",
|
|
519
|
+
"severity": None,
|
|
520
|
+
"reason": "No declared conflict on this matter",
|
|
521
|
+
})
|
|
522
|
+
|
|
523
|
+
# ── 3. Participant check ────────────────────────────────────────────────
|
|
524
|
+
is_participant = recipient_lower in participants
|
|
525
|
+
if is_participant:
|
|
526
|
+
checks.append({
|
|
527
|
+
"check": "participant",
|
|
528
|
+
"result": "PASS",
|
|
529
|
+
"severity": None,
|
|
530
|
+
"reason": f"Recipient is listed as a participant in this provenance record",
|
|
531
|
+
})
|
|
532
|
+
# Participant check passing does NOT affect highest_severity
|
|
533
|
+
else:
|
|
534
|
+
checks.append({
|
|
535
|
+
"check": "participant",
|
|
536
|
+
"result": "FAIL",
|
|
537
|
+
"severity": "medium",
|
|
538
|
+
"reason": f"Recipient '{recipient_slug}' is not a participant in provenance record '{source_id}'",
|
|
539
|
+
})
|
|
540
|
+
highest_severity = _escalate_severity(highest_severity, "medium")
|
|
541
|
+
|
|
542
|
+
# ── 4. Domain check ─────────────────────────────────────────────────────
|
|
543
|
+
domain_excluded = bool(context_domain and context_domain in excluded_domains)
|
|
544
|
+
if domain_excluded:
|
|
545
|
+
# High if also not a participant, medium if alone
|
|
546
|
+
domain_sev = "high" if not is_participant else "medium"
|
|
547
|
+
checks.append({
|
|
548
|
+
"check": "domain",
|
|
549
|
+
"result": "FAIL",
|
|
550
|
+
"severity": domain_sev,
|
|
551
|
+
"reason": f"Context domain '{context_domain}' is in recipient's excluded domains",
|
|
552
|
+
})
|
|
553
|
+
highest_severity = _escalate_severity(highest_severity, domain_sev)
|
|
554
|
+
else:
|
|
555
|
+
checks.append({
|
|
556
|
+
"check": "domain",
|
|
557
|
+
"result": "PASS",
|
|
558
|
+
"severity": None,
|
|
559
|
+
"reason": "Context domain not in excluded domains"
|
|
560
|
+
if context_domain
|
|
561
|
+
else "No context domain on provenance record",
|
|
562
|
+
})
|
|
563
|
+
|
|
564
|
+
# ── 5. Necessity check (contextual — LLM layer) ─────────────────────────
|
|
565
|
+
checks.append({
|
|
566
|
+
"check": "necessity",
|
|
567
|
+
"result": "REVIEW",
|
|
568
|
+
"severity": None,
|
|
569
|
+
"reason": "Contextual necessity judgment deferred to LLM layer",
|
|
570
|
+
})
|
|
571
|
+
|
|
572
|
+
# ── Low confidence escalation ───────────────────────────────────────────
|
|
573
|
+
if match_confidence == "medium" and highest_severity is not None:
|
|
574
|
+
before = highest_severity
|
|
575
|
+
escalated = _escalate_one_level(highest_severity)
|
|
576
|
+
highest_severity = escalated
|
|
577
|
+
# Annotate in checks
|
|
578
|
+
checks.append({
|
|
579
|
+
"check": "confidence_escalation",
|
|
580
|
+
"result": "ESCALATED",
|
|
581
|
+
"severity": escalated,
|
|
582
|
+
"reason": f"Match confidence is 'medium' — severity escalated from '{before}' to '{escalated}'",
|
|
583
|
+
})
|
|
584
|
+
|
|
585
|
+
return {
|
|
586
|
+
"source_id": source_id,
|
|
587
|
+
"matter": matter,
|
|
588
|
+
"match_confidence": match_confidence,
|
|
589
|
+
"matched_keywords": matched_keywords,
|
|
590
|
+
"checks": checks,
|
|
591
|
+
"highest_severity": highest_severity,
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
def _escalate_severity(current: str | None, candidate: str) -> str:
|
|
596
|
+
"""Return whichever severity is higher."""
|
|
597
|
+
if current is None:
|
|
598
|
+
return candidate
|
|
599
|
+
return candidate if SEVERITY_ORDER.get(candidate, -1) > SEVERITY_ORDER.get(current, -1) else current
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
def _escalate_one_level(severity: str) -> str:
|
|
603
|
+
"""Escalate a severity by one step (low→medium, medium→high, high→critical)."""
|
|
604
|
+
order = ["low", "medium", "high", "critical"]
|
|
605
|
+
idx = order.index(severity) if severity in order else -1
|
|
606
|
+
if idx < 0 or idx >= len(order) - 1:
|
|
607
|
+
return severity
|
|
608
|
+
return order[idx + 1]
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
def _severity_to_outcome(severity: str | None) -> str:
|
|
612
|
+
"""Map highest severity to overall outcome."""
|
|
613
|
+
if severity is None:
|
|
614
|
+
return "passed"
|
|
615
|
+
level = SEVERITY_ORDER.get(severity, -1)
|
|
616
|
+
if level >= SEVERITY_ORDER["high"]:
|
|
617
|
+
return "blocked"
|
|
618
|
+
if level == SEVERITY_ORDER["medium"]:
|
|
619
|
+
return "stripped"
|
|
620
|
+
return "passed"
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
# ─── Main Assessment ──────────────────────────────────────────────────────────
|
|
624
|
+
|
|
625
|
+
def assess_disclosure(
|
|
626
|
+
draft: str,
|
|
627
|
+
recipient_slug: str,
|
|
628
|
+
channel: str | None = None,
|
|
629
|
+
message_id: str | None = None,
|
|
630
|
+
) -> dict:
|
|
631
|
+
"""Assess a draft message against recipient disclosure boundaries.
|
|
632
|
+
|
|
633
|
+
Args:
|
|
634
|
+
draft: Full text of the draft message.
|
|
635
|
+
recipient_slug: Slug of the primary recipient (e.g. 'shayan-kargarian').
|
|
636
|
+
channel: Optional Slack channel slug or ID. When provided the
|
|
637
|
+
channel's full member list is resolved and each restricted
|
|
638
|
+
member is assessed independently. The most restrictive
|
|
639
|
+
outcome wins.
|
|
640
|
+
message_id: Optional caller-supplied message identifier. Auto-
|
|
641
|
+
generated (UUID4) if not provided.
|
|
642
|
+
|
|
643
|
+
Returns a dict with keys:
|
|
644
|
+
outcome "passed" | "stripped" | "blocked"
|
|
645
|
+
severity None | "low" | "medium" | "high" | "critical"
|
|
646
|
+
action str describing the recommended action
|
|
647
|
+
references_assessed list of per-reference assessment dicts
|
|
648
|
+
assessment_duration_ms float
|
|
649
|
+
"""
|
|
650
|
+
t_start = time.monotonic()
|
|
651
|
+
|
|
652
|
+
if message_id is None:
|
|
653
|
+
message_id = str(uuid.uuid4())
|
|
654
|
+
|
|
655
|
+
# ── Determine full recipient list ────────────────────────────────────────
|
|
656
|
+
all_recipients: list[str] = [recipient_slug]
|
|
657
|
+
if channel:
|
|
658
|
+
members = _load_channel_members(channel)
|
|
659
|
+
for m in members:
|
|
660
|
+
if m not in all_recipients:
|
|
661
|
+
all_recipients.append(m)
|
|
662
|
+
|
|
663
|
+
# ── Separate unrestricted vs restricted recipients ───────────────────────
|
|
664
|
+
restricted_recipients: list[str] = []
|
|
665
|
+
unprofiled_recipients: list[str] = []
|
|
666
|
+
|
|
667
|
+
for slug in all_recipients:
|
|
668
|
+
profile = _load_profile(slug)
|
|
669
|
+
if profile is None:
|
|
670
|
+
unprofiled_recipients.append(slug)
|
|
671
|
+
restricted_recipients.append(slug)
|
|
672
|
+
print(
|
|
673
|
+
f"[disclosure_assessment] WARNING: No profile for recipient '{slug}' "
|
|
674
|
+
"— treating as maximally restricted.",
|
|
675
|
+
file=sys.stderr,
|
|
676
|
+
)
|
|
677
|
+
continue
|
|
678
|
+
|
|
679
|
+
boundaries = profile.get("information_boundaries") or {}
|
|
680
|
+
domains_of_interest = boundaries.get("domains_of_interest") or []
|
|
681
|
+
|
|
682
|
+
# Unrestricted: ["*"]
|
|
683
|
+
if domains_of_interest == ["*"]:
|
|
684
|
+
continue
|
|
685
|
+
|
|
686
|
+
restricted_recipients.append(slug)
|
|
687
|
+
|
|
688
|
+
# ── Short-circuit: no restricted recipients ──────────────────────────────
|
|
689
|
+
if not restricted_recipients:
|
|
690
|
+
duration_ms = (time.monotonic() - t_start) * 1000
|
|
691
|
+
_log_assessment(
|
|
692
|
+
message_id=message_id,
|
|
693
|
+
channel=channel,
|
|
694
|
+
recipients=all_recipients,
|
|
695
|
+
restricted_recipients=[],
|
|
696
|
+
references_assessed=[],
|
|
697
|
+
outcome="passed",
|
|
698
|
+
severity=None,
|
|
699
|
+
action="no_restricted_recipients",
|
|
700
|
+
draft_hash=hashlib.sha256(draft.encode()).hexdigest()[:16],
|
|
701
|
+
assessment_duration_ms=duration_ms,
|
|
702
|
+
)
|
|
703
|
+
return {
|
|
704
|
+
"outcome": "passed",
|
|
705
|
+
"severity": None,
|
|
706
|
+
"action": "no_restricted_recipients",
|
|
707
|
+
"references_assessed": [],
|
|
708
|
+
"assessment_duration_ms": round(duration_ms, 2),
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
# ── Short-circuit: empty draft ───────────────────────────────────────────
|
|
712
|
+
if not draft.strip():
|
|
713
|
+
duration_ms = (time.monotonic() - t_start) * 1000
|
|
714
|
+
_log_assessment(
|
|
715
|
+
message_id=message_id,
|
|
716
|
+
channel=channel,
|
|
717
|
+
recipients=all_recipients,
|
|
718
|
+
restricted_recipients=restricted_recipients,
|
|
719
|
+
references_assessed=[],
|
|
720
|
+
outcome="passed",
|
|
721
|
+
severity=None,
|
|
722
|
+
action="empty_draft",
|
|
723
|
+
draft_hash="",
|
|
724
|
+
assessment_duration_ms=duration_ms,
|
|
725
|
+
)
|
|
726
|
+
return {
|
|
727
|
+
"outcome": "passed",
|
|
728
|
+
"severity": None,
|
|
729
|
+
"action": "empty_draft",
|
|
730
|
+
"references_assessed": [],
|
|
731
|
+
"assessment_duration_ms": round(duration_ms, 2),
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
# ── Load provenance records ──────────────────────────────────────────────
|
|
735
|
+
provenance_records = _load_provenance_recent(hours=48)
|
|
736
|
+
|
|
737
|
+
# ── Extract draft references against provenance ──────────────────────────
|
|
738
|
+
ref_matches = _extract_matter_references(draft, provenance_records)
|
|
739
|
+
|
|
740
|
+
# ── Assess each reference against each restricted recipient ──────────────
|
|
741
|
+
all_ref_assessments: list[dict] = []
|
|
742
|
+
overall_severity: str | None = None
|
|
743
|
+
|
|
744
|
+
for ref_match in ref_matches:
|
|
745
|
+
# Per-recipient assessments for this reference
|
|
746
|
+
per_recipient: list[dict] = []
|
|
747
|
+
|
|
748
|
+
for slug in restricted_recipients:
|
|
749
|
+
if slug in unprofiled_recipients:
|
|
750
|
+
# Maximally restricted — any provenance match → block
|
|
751
|
+
per_recipient.append({
|
|
752
|
+
"recipient": slug,
|
|
753
|
+
"highest_severity": "critical",
|
|
754
|
+
"checks": [{
|
|
755
|
+
"check": "unprofiled_recipient",
|
|
756
|
+
"result": "FAIL",
|
|
757
|
+
"severity": "critical",
|
|
758
|
+
"reason": f"No profile exists for recipient '{slug}' — maximally restricted",
|
|
759
|
+
}],
|
|
760
|
+
})
|
|
761
|
+
overall_severity = _escalate_severity(overall_severity, "critical")
|
|
762
|
+
continue
|
|
763
|
+
|
|
764
|
+
profile = _load_profile(slug)
|
|
765
|
+
boundaries = (profile or {}).get("information_boundaries") or {}
|
|
766
|
+
ref_result = _assess_reference(ref_match, slug, boundaries)
|
|
767
|
+
ref_result["recipient"] = slug
|
|
768
|
+
per_recipient.append(ref_result)
|
|
769
|
+
|
|
770
|
+
if ref_result["highest_severity"] is not None:
|
|
771
|
+
overall_severity = _escalate_severity(overall_severity, ref_result["highest_severity"])
|
|
772
|
+
|
|
773
|
+
# Collapse per-recipient into a single reference assessment entry
|
|
774
|
+
combined_severity = None
|
|
775
|
+
for pr in per_recipient:
|
|
776
|
+
sev = pr.get("highest_severity")
|
|
777
|
+
if sev is not None:
|
|
778
|
+
combined_severity = _escalate_severity(combined_severity, sev)
|
|
779
|
+
|
|
780
|
+
all_ref_assessments.append({
|
|
781
|
+
"source_id": ref_match["record"].get("source_id", "unknown"),
|
|
782
|
+
"matter": ref_match["record"].get("matter", ""),
|
|
783
|
+
"match_confidence": ref_match["match_confidence"],
|
|
784
|
+
"matched_keywords": ref_match["matched_keywords"],
|
|
785
|
+
"per_recipient": per_recipient,
|
|
786
|
+
"combined_severity": combined_severity,
|
|
787
|
+
})
|
|
788
|
+
|
|
789
|
+
# ── Determine final outcome ──────────────────────────────────────────────
|
|
790
|
+
outcome = _severity_to_outcome(overall_severity)
|
|
791
|
+
action = SEVERITY_ACTIONS.get(overall_severity, "send") if overall_severity else "send"
|
|
792
|
+
|
|
793
|
+
duration_ms = (time.monotonic() - t_start) * 1000
|
|
794
|
+
|
|
795
|
+
# ── Audit log ────────────────────────────────────────────────────────────
|
|
796
|
+
draft_hash = hashlib.sha256(draft.encode()).hexdigest()[:16]
|
|
797
|
+
_log_assessment(
|
|
798
|
+
message_id=message_id,
|
|
799
|
+
channel=channel,
|
|
800
|
+
recipients=all_recipients,
|
|
801
|
+
restricted_recipients=restricted_recipients,
|
|
802
|
+
references_assessed=all_ref_assessments,
|
|
803
|
+
outcome=outcome,
|
|
804
|
+
severity=overall_severity,
|
|
805
|
+
action=action,
|
|
806
|
+
draft_hash=draft_hash,
|
|
807
|
+
assessment_duration_ms=duration_ms,
|
|
808
|
+
)
|
|
809
|
+
|
|
810
|
+
return {
|
|
811
|
+
"outcome": outcome,
|
|
812
|
+
"severity": overall_severity,
|
|
813
|
+
"action": action,
|
|
814
|
+
"references_assessed": all_ref_assessments,
|
|
815
|
+
"assessment_duration_ms": round(duration_ms, 2),
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
# ─── CLI ─────────────────────────────────────────────────────────────────────
|
|
820
|
+
|
|
821
|
+
def main():
|
|
822
|
+
parser = argparse.ArgumentParser(
|
|
823
|
+
description="Post-draft disclosure assessment engine (Layer 2).",
|
|
824
|
+
)
|
|
825
|
+
parser.add_argument(
|
|
826
|
+
"--recipient",
|
|
827
|
+
required=True,
|
|
828
|
+
help="Recipient slug (e.g. shayan-kargarian)",
|
|
829
|
+
)
|
|
830
|
+
parser.add_argument(
|
|
831
|
+
"--channel",
|
|
832
|
+
default=None,
|
|
833
|
+
help="Optional Slack channel slug or ID to resolve full member list",
|
|
834
|
+
)
|
|
835
|
+
parser.add_argument(
|
|
836
|
+
"--message",
|
|
837
|
+
default=None,
|
|
838
|
+
help="Draft message text (reads from stdin if not provided)",
|
|
839
|
+
)
|
|
840
|
+
parser.add_argument(
|
|
841
|
+
"--message-id",
|
|
842
|
+
default=None,
|
|
843
|
+
dest="message_id",
|
|
844
|
+
help="Optional message ID for audit tracing",
|
|
845
|
+
)
|
|
846
|
+
args = parser.parse_args()
|
|
847
|
+
|
|
848
|
+
# Read draft
|
|
849
|
+
if args.message is not None:
|
|
850
|
+
draft = args.message
|
|
851
|
+
else:
|
|
852
|
+
draft = sys.stdin.read()
|
|
853
|
+
|
|
854
|
+
result = assess_disclosure(
|
|
855
|
+
draft=draft,
|
|
856
|
+
recipient_slug=args.recipient,
|
|
857
|
+
channel=args.channel,
|
|
858
|
+
message_id=args.message_id,
|
|
859
|
+
)
|
|
860
|
+
|
|
861
|
+
print(json.dumps(result, indent=2))
|
|
862
|
+
|
|
863
|
+
outcome = result.get("outcome", "passed")
|
|
864
|
+
if outcome == "blocked":
|
|
865
|
+
sys.exit(2)
|
|
866
|
+
elif outcome == "stripped":
|
|
867
|
+
sys.exit(1)
|
|
868
|
+
else:
|
|
869
|
+
sys.exit(0)
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
if __name__ == "__main__":
|
|
873
|
+
main()
|