@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,716 @@
|
|
|
1
|
+
// Slack Poller — checks Slack API for new messages every 60 seconds
|
|
2
|
+
// Requires SLACK_USER_TOKEN or SLACK_TOKEN environment variable
|
|
3
|
+
|
|
4
|
+
import { readFileSync, writeFileSync, readdirSync, renameSync, existsSync } from "fs";
|
|
5
|
+
import { join } from "path";
|
|
6
|
+
import {
|
|
7
|
+
writeInboxItem,
|
|
8
|
+
readCursor,
|
|
9
|
+
writeCursor,
|
|
10
|
+
resolvePrivilege,
|
|
11
|
+
resolveName,
|
|
12
|
+
SOPHIE_AI_DIR,
|
|
13
|
+
extractSlackAttachments,
|
|
14
|
+
downloadSlackAttachment,
|
|
15
|
+
} from "./utils.mjs";
|
|
16
|
+
|
|
17
|
+
import {
|
|
18
|
+
isVoiceTranscript,
|
|
19
|
+
parseVoiceTranscript,
|
|
20
|
+
toInboxItems,
|
|
21
|
+
} from "../parse-voice-transcript.mjs";
|
|
22
|
+
|
|
23
|
+
const ACTIVE_THREADS_FILE = join(
|
|
24
|
+
SOPHIE_AI_DIR,
|
|
25
|
+
"state",
|
|
26
|
+
"slack-active-threads.json",
|
|
27
|
+
);
|
|
28
|
+
const MAX_THREADS_PER_CHANNEL = 10;
|
|
29
|
+
|
|
30
|
+
const SLACK_TOKEN = process.env.SLACK_USER_TOKEN || process.env.SLACK_TOKEN;
|
|
31
|
+
|
|
32
|
+
// Priority overrides for known channels — everything else defaults to "normal"
|
|
33
|
+
const CHANNEL_PRIORITY_OVERRIDES = {
|
|
34
|
+
"ceo-office": "critical",
|
|
35
|
+
"engineering": "high",
|
|
36
|
+
"all-adaptic": "high",
|
|
37
|
+
"adaptic-engine": "high",
|
|
38
|
+
"dfsa-remediation": "high",
|
|
39
|
+
"rollup-strategy": "high",
|
|
40
|
+
"legal-compliance": "high",
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
// Dynamic channel list — fetched once per daemon lifecycle, refreshed every 10 min
|
|
44
|
+
let cachedChannels = null;
|
|
45
|
+
let channelsCachedAt = 0;
|
|
46
|
+
const CHANNEL_CACHE_TTL = 10 * 60 * 1000; // 10 min
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Fetch all channels Sophie is a member of.
|
|
50
|
+
* Replaces the static MONITORED_CHANNELS list so new channels are auto-discovered.
|
|
51
|
+
* Per CEO standing instruction si-001: "Monitor ALL Slack channels."
|
|
52
|
+
*/
|
|
53
|
+
async function getMonitoredChannels() {
|
|
54
|
+
if (cachedChannels && (Date.now() - channelsCachedAt) < CHANNEL_CACHE_TTL) {
|
|
55
|
+
return cachedChannels;
|
|
56
|
+
}
|
|
57
|
+
try {
|
|
58
|
+
const result = await slackApi("conversations.list", {
|
|
59
|
+
types: "public_channel,private_channel",
|
|
60
|
+
limit: 200,
|
|
61
|
+
exclude_archived: true,
|
|
62
|
+
});
|
|
63
|
+
if (!result.ok) {
|
|
64
|
+
console.error(`[slack-poller] conversations.list failed: ${result.error}`);
|
|
65
|
+
return cachedChannels || [];
|
|
66
|
+
}
|
|
67
|
+
cachedChannels = (result.channels || [])
|
|
68
|
+
.filter((c) => c.is_member)
|
|
69
|
+
.map((c) => ({
|
|
70
|
+
id: c.id,
|
|
71
|
+
name: c.name || c.id,
|
|
72
|
+
priority: CHANNEL_PRIORITY_OVERRIDES[c.name] || "normal",
|
|
73
|
+
}));
|
|
74
|
+
channelsCachedAt = Date.now();
|
|
75
|
+
return cachedChannels;
|
|
76
|
+
} catch (err) {
|
|
77
|
+
console.error(`[slack-poller] Channel discovery failed: ${err.message}`);
|
|
78
|
+
return cachedChannels || [];
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const CEO_USER_ID = "U097N5R0M7U";
|
|
83
|
+
const SOPHIE_USER_ID = "U099N1JFPRQ";
|
|
84
|
+
|
|
85
|
+
// Rate-limit-aware delay: space requests ~1500ms apart to stay under Slack Tier 3 limits
|
|
86
|
+
// (~50 req/min for conversations.history). With ~25 calls per cycle (half channels
|
|
87
|
+
// rotated), 1500ms spacing = ~38s total, well within the 60s poll interval.
|
|
88
|
+
// Previous: 800ms caused persistent rate limiting with 11 channels + threads.
|
|
89
|
+
const INTER_REQUEST_DELAY_MS = 1500;
|
|
90
|
+
const MAX_RETRIES = 3;
|
|
91
|
+
|
|
92
|
+
function sleep(ms) {
|
|
93
|
+
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
let lastRequestTime = 0;
|
|
97
|
+
|
|
98
|
+
async function slackApi(method, params = {}) {
|
|
99
|
+
// Enforce minimum spacing between requests
|
|
100
|
+
const now = Date.now();
|
|
101
|
+
const elapsed = now - lastRequestTime;
|
|
102
|
+
if (elapsed < INTER_REQUEST_DELAY_MS) {
|
|
103
|
+
await sleep(INTER_REQUEST_DELAY_MS - elapsed);
|
|
104
|
+
}
|
|
105
|
+
lastRequestTime = Date.now();
|
|
106
|
+
|
|
107
|
+
for (let attempt = 0; attempt <= MAX_RETRIES; attempt++) {
|
|
108
|
+
const url = new URL(`https://slack.com/api/${method}`);
|
|
109
|
+
Object.entries(params).forEach(([k, v]) =>
|
|
110
|
+
url.searchParams.set(k, String(v)),
|
|
111
|
+
);
|
|
112
|
+
const res = await fetch(url, {
|
|
113
|
+
headers: { Authorization: `Bearer ${SLACK_TOKEN}` },
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
// Handle HTTP 429 rate limiting
|
|
117
|
+
if (res.status === 429) {
|
|
118
|
+
const retryAfter = parseInt(res.headers.get("Retry-After") || "5", 10);
|
|
119
|
+
if (attempt < MAX_RETRIES) {
|
|
120
|
+
await sleep(retryAfter * 1000);
|
|
121
|
+
lastRequestTime = Date.now();
|
|
122
|
+
continue;
|
|
123
|
+
}
|
|
124
|
+
// Exhausted retries — return the rate-limited response
|
|
125
|
+
return { ok: false, error: "ratelimited" };
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const body = await res.json();
|
|
129
|
+
|
|
130
|
+
// Handle in-body rate limit errors (Slack sometimes returns 200 with error)
|
|
131
|
+
if (!body.ok && body.error === "ratelimited" && attempt < MAX_RETRIES) {
|
|
132
|
+
const retryAfter = parseInt(res.headers.get("Retry-After") || "3", 10);
|
|
133
|
+
await sleep(retryAfter * 1000);
|
|
134
|
+
lastRequestTime = Date.now();
|
|
135
|
+
continue;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return body;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// ── Context fetching ────────────────────────────────────────────────────
|
|
143
|
+
// Fetch surrounding conversation context for a message so the session
|
|
144
|
+
// knows what was said before. This is the fix for "are you referring to
|
|
145
|
+
// Nima?" when the conversation was clearly about Graham.
|
|
146
|
+
|
|
147
|
+
const CONTEXT_MESSAGES_LIMIT = 8; // Last 8 messages from the conversation
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Fetch recent conversation context for a DM message.
|
|
151
|
+
* Returns the last N messages (including Sophie's) formatted as readable text.
|
|
152
|
+
* This gives the session awareness of the conversation flow.
|
|
153
|
+
*/
|
|
154
|
+
async function fetchDMContext(channelId, beforeTs) {
|
|
155
|
+
try {
|
|
156
|
+
const result = await slackApi("conversations.history", {
|
|
157
|
+
channel: channelId,
|
|
158
|
+
latest: beforeTs,
|
|
159
|
+
limit: CONTEXT_MESSAGES_LIMIT,
|
|
160
|
+
inclusive: false,
|
|
161
|
+
});
|
|
162
|
+
if (!result.ok || !result.messages || result.messages.length === 0) return null;
|
|
163
|
+
|
|
164
|
+
// Messages come newest-first from Slack, reverse for chronological order
|
|
165
|
+
const msgs = result.messages.reverse();
|
|
166
|
+
const lines = msgs.map((m) => {
|
|
167
|
+
const who = m.user === SOPHIE_USER_ID ? "Sophie" : resolveName(m.user);
|
|
168
|
+
const text = (m.text || "").substring(0, 500);
|
|
169
|
+
return `${who}: ${text}`;
|
|
170
|
+
});
|
|
171
|
+
return lines.join("\n");
|
|
172
|
+
} catch {
|
|
173
|
+
return null;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Fetch thread context (parent message + preceding replies) for a thread reply.
|
|
179
|
+
* Returns formatted text with the full thread conversation up to this point.
|
|
180
|
+
*/
|
|
181
|
+
async function fetchThreadContext(channelId, threadTs, beforeTs) {
|
|
182
|
+
try {
|
|
183
|
+
const result = await slackApi("conversations.replies", {
|
|
184
|
+
channel: channelId,
|
|
185
|
+
ts: threadTs,
|
|
186
|
+
limit: CONTEXT_MESSAGES_LIMIT,
|
|
187
|
+
});
|
|
188
|
+
if (!result.ok || !result.messages || result.messages.length === 0) return null;
|
|
189
|
+
|
|
190
|
+
// Only include messages before the current one
|
|
191
|
+
const preceding = result.messages.filter(
|
|
192
|
+
(m) => parseFloat(m.ts) < parseFloat(beforeTs)
|
|
193
|
+
);
|
|
194
|
+
if (preceding.length === 0) return null;
|
|
195
|
+
|
|
196
|
+
const lines = preceding.map((m) => {
|
|
197
|
+
const who = m.user === SOPHIE_USER_ID ? "Sophie" : resolveName(m.user);
|
|
198
|
+
const text = (m.text || "").substring(0, 500);
|
|
199
|
+
return `${who}: ${text}`;
|
|
200
|
+
});
|
|
201
|
+
return lines.join("\n");
|
|
202
|
+
} catch {
|
|
203
|
+
return null;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// ── Channel rotation ────────────────────────────────────────────────────
|
|
208
|
+
// With dynamic discovery (potentially 30+ channels), rotation is essential.
|
|
209
|
+
// Critical/high channels polled every cycle; normal channels rotate in thirds.
|
|
210
|
+
let pollCycleCount = 0;
|
|
211
|
+
|
|
212
|
+
function getChannelsForCycle(allChannels) {
|
|
213
|
+
pollCycleCount++;
|
|
214
|
+
const critical = allChannels.filter((c) => c.priority === "critical" || c.priority === "high");
|
|
215
|
+
const normal = allChannels.filter((c) => c.priority === "normal" || c.priority === "low");
|
|
216
|
+
// Always poll critical/high; rotate normal channels in thirds
|
|
217
|
+
const normalSubset = normal.filter((_, i) => i % 3 === pollCycleCount % 3);
|
|
218
|
+
return [...critical, ...normalSubset];
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export async function pollSlack() {
|
|
222
|
+
if (!SLACK_TOKEN) {
|
|
223
|
+
return { items: [], errors: ["SLACK_TOKEN not set"] };
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
const lastChecked = readCursor("slack");
|
|
227
|
+
const oldest = lastChecked
|
|
228
|
+
? String(new Date(lastChecked).getTime() / 1000)
|
|
229
|
+
: String((Date.now() - 5 * 60 * 1000) / 1000);
|
|
230
|
+
const items = [];
|
|
231
|
+
const errors = [];
|
|
232
|
+
const allChannels = await getMonitoredChannels();
|
|
233
|
+
const channelsThisCycle = getChannelsForCycle(allChannels);
|
|
234
|
+
|
|
235
|
+
// Load active threads state (used for both channel and DM thread scanning)
|
|
236
|
+
let activeThreads = {};
|
|
237
|
+
try {
|
|
238
|
+
if (existsSync(ACTIVE_THREADS_FILE)) {
|
|
239
|
+
activeThreads = JSON.parse(readFileSync(ACTIVE_THREADS_FILE, "utf-8"));
|
|
240
|
+
}
|
|
241
|
+
} catch {
|
|
242
|
+
activeThreads = {};
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
for (const channel of channelsThisCycle) {
|
|
246
|
+
try {
|
|
247
|
+
const result = await slackApi("conversations.history", {
|
|
248
|
+
channel: channel.id,
|
|
249
|
+
oldest,
|
|
250
|
+
limit: 20,
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
if (!result.ok) {
|
|
254
|
+
errors.push(`Channel ${channel.name}: ${result.error}`);
|
|
255
|
+
continue;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// Track channel threads with replies so the thread scanner picks them up.
|
|
259
|
+
// IMPORTANT: conversations.history only returns messages newer than `oldest`,
|
|
260
|
+
// but threads with old parent messages can have NEW replies. We must also
|
|
261
|
+
// check slightly older messages to discover threads with recent activity.
|
|
262
|
+
const channelThreads = new Set(activeThreads[channel.id] || []);
|
|
263
|
+
|
|
264
|
+
// Second pass: fetch recent messages WITHOUT oldest filter to find threads
|
|
265
|
+
// with new replies. Parent messages older than cursor are invisible to the
|
|
266
|
+
// first pass, but their threads can have new replies we need to scan.
|
|
267
|
+
// Always run this — it's the only way to discover active threads in channels.
|
|
268
|
+
try {
|
|
269
|
+
const broader = await slackApi("conversations.history", {
|
|
270
|
+
channel: channel.id,
|
|
271
|
+
limit: 15,
|
|
272
|
+
});
|
|
273
|
+
if (broader.ok) {
|
|
274
|
+
for (const m of broader.messages || []) {
|
|
275
|
+
if (m.reply_count > 0 && m.ts) {
|
|
276
|
+
// Track ALL threads with replies — the thread scanner will
|
|
277
|
+
// filter by cursor timestamp when fetching individual replies
|
|
278
|
+
channelThreads.add(m.ts);
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
} catch { /* non-critical — thread discovery is best-effort */ }
|
|
283
|
+
|
|
284
|
+
for (const msg of result.messages || []) {
|
|
285
|
+
// Register any message with replies as an active thread (even Sophie's)
|
|
286
|
+
if (msg.reply_count > 0 && msg.ts) {
|
|
287
|
+
channelThreads.add(msg.ts);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
if (msg.bot_id || msg.user === SOPHIE_USER_ID) continue;
|
|
291
|
+
|
|
292
|
+
const msgText = msg.text || "";
|
|
293
|
+
const isCeo = msg.user === CEO_USER_ID;
|
|
294
|
+
|
|
295
|
+
// Check if this is a voice call transcript posted by post-call routing
|
|
296
|
+
if (isVoiceTranscript(msgText)) {
|
|
297
|
+
const parsed = parseVoiceTranscript(msgText, {
|
|
298
|
+
ts: msg.ts,
|
|
299
|
+
channel: channel.id,
|
|
300
|
+
});
|
|
301
|
+
const voiceItems = toInboxItems(parsed);
|
|
302
|
+
for (const vi of voiceItems) {
|
|
303
|
+
items.push(vi);
|
|
304
|
+
}
|
|
305
|
+
continue;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
const mentionsSophie = msgText.toLowerCase().includes("sophie");
|
|
309
|
+
const isUrgent = /\b(urgent|emergency|asap|blocker|critical)\b/i.test(
|
|
310
|
+
msgText,
|
|
311
|
+
);
|
|
312
|
+
|
|
313
|
+
// Fetch thread context for channel thread replies
|
|
314
|
+
let channelThreadContext = null;
|
|
315
|
+
if (msg.thread_ts && msg.thread_ts !== msg.ts) {
|
|
316
|
+
channelThreadContext = await fetchThreadContext(channel.id, msg.thread_ts, msg.ts);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
// Extract and download attachments
|
|
320
|
+
const attachments = extractSlackAttachments(msg.files);
|
|
321
|
+
for (const att of attachments) {
|
|
322
|
+
const file = (msg.files || []).find((f) => f.id === att.id);
|
|
323
|
+
const localPath = await downloadSlackAttachment(file, SLACK_TOKEN);
|
|
324
|
+
if (localPath) att.local_path = localPath;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
items.push({
|
|
328
|
+
id: msg.ts.replace(".", "-"),
|
|
329
|
+
service: "slack",
|
|
330
|
+
channel: channel.name,
|
|
331
|
+
channel_id: channel.id,
|
|
332
|
+
sender: resolveName(msg.user),
|
|
333
|
+
sender_privilege: resolvePrivilege(msg.user),
|
|
334
|
+
timestamp: new Date(parseFloat(msg.ts) * 1000).toISOString(),
|
|
335
|
+
subject: `#${channel.name}`,
|
|
336
|
+
content: msgText,
|
|
337
|
+
thread_id: msg.thread_ts || "",
|
|
338
|
+
thread_context: channelThreadContext,
|
|
339
|
+
is_reply: !!msg.thread_ts,
|
|
340
|
+
attachments: attachments.length > 0 ? attachments : undefined,
|
|
341
|
+
priority_signals: {
|
|
342
|
+
from_ceo: isCeo,
|
|
343
|
+
tagged_urgent: isUrgent,
|
|
344
|
+
contains_deadline: false,
|
|
345
|
+
mentions_sophie: mentionsSophie,
|
|
346
|
+
},
|
|
347
|
+
raw_ref: `slack:${channel.id}:${msg.ts}`,
|
|
348
|
+
});
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
// Persist channel thread tracking (bounded)
|
|
352
|
+
activeThreads[channel.id] = [...channelThreads]
|
|
353
|
+
.sort((a, b) => parseFloat(b) - parseFloat(a))
|
|
354
|
+
.slice(0, MAX_THREADS_PER_CHANNEL);
|
|
355
|
+
} catch (err) {
|
|
356
|
+
errors.push(`Channel ${channel.name}: ${err.message}`);
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
// Also check DMs
|
|
361
|
+
try {
|
|
362
|
+
const convos = await slackApi("conversations.list", {
|
|
363
|
+
types: "im",
|
|
364
|
+
limit: 50,
|
|
365
|
+
});
|
|
366
|
+
if (convos.ok) {
|
|
367
|
+
for (const im of convos.channels || []) {
|
|
368
|
+
const history = await slackApi("conversations.history", {
|
|
369
|
+
channel: im.id,
|
|
370
|
+
oldest,
|
|
371
|
+
limit: 10,
|
|
372
|
+
});
|
|
373
|
+
if (!history.ok) continue;
|
|
374
|
+
|
|
375
|
+
// Track threads discovered from DM history messages with replies
|
|
376
|
+
const channelThreads = new Set(activeThreads[im.id] || []);
|
|
377
|
+
|
|
378
|
+
// Broader thread discovery for DMs — same pattern as channels.
|
|
379
|
+
// Fetch recent messages WITHOUT oldest filter to find DM threads
|
|
380
|
+
// whose parent message predates the cursor but have new replies.
|
|
381
|
+
try {
|
|
382
|
+
const broader = await slackApi("conversations.history", {
|
|
383
|
+
channel: im.id,
|
|
384
|
+
limit: 10,
|
|
385
|
+
});
|
|
386
|
+
if (broader.ok) {
|
|
387
|
+
for (const m of broader.messages || []) {
|
|
388
|
+
if (m.reply_count > 0 && m.ts) {
|
|
389
|
+
channelThreads.add(m.ts);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
} catch { /* non-critical — DM thread discovery is best-effort */ }
|
|
394
|
+
|
|
395
|
+
for (const msg of history.messages || []) {
|
|
396
|
+
// Register any message with replies as an active thread
|
|
397
|
+
if (msg.reply_count > 0 && msg.ts) {
|
|
398
|
+
channelThreads.add(msg.ts);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
if (msg.bot_id || msg.user === SOPHIE_USER_ID) continue;
|
|
402
|
+
|
|
403
|
+
const msgText = msg.text || "";
|
|
404
|
+
const isCeo = msg.user === CEO_USER_ID;
|
|
405
|
+
|
|
406
|
+
// Check if this is a voice call transcript posted by post-call routing
|
|
407
|
+
if (isVoiceTranscript(msgText)) {
|
|
408
|
+
const parsed = parseVoiceTranscript(msgText, {
|
|
409
|
+
ts: msg.ts,
|
|
410
|
+
channel: im.id,
|
|
411
|
+
});
|
|
412
|
+
const voiceItems = toInboxItems(parsed);
|
|
413
|
+
for (const vi of voiceItems) {
|
|
414
|
+
items.push(vi);
|
|
415
|
+
}
|
|
416
|
+
continue;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// Fetch conversation context — thread context for thread replies,
|
|
420
|
+
// recent DM history for standalone messages
|
|
421
|
+
let threadContext = null;
|
|
422
|
+
if (msg.thread_ts && msg.thread_ts !== msg.ts) {
|
|
423
|
+
// Thread reply — fetch parent + preceding replies
|
|
424
|
+
threadContext = await fetchThreadContext(im.id, msg.thread_ts, msg.ts);
|
|
425
|
+
} else {
|
|
426
|
+
// Standalone DM — fetch recent conversation history
|
|
427
|
+
threadContext = await fetchDMContext(im.id, msg.ts);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
// Extract and download attachments
|
|
431
|
+
const dmAttachments = extractSlackAttachments(msg.files);
|
|
432
|
+
for (const att of dmAttachments) {
|
|
433
|
+
const file = (msg.files || []).find((f) => f.id === att.id);
|
|
434
|
+
const localPath = await downloadSlackAttachment(file, SLACK_TOKEN);
|
|
435
|
+
if (localPath) att.local_path = localPath;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
items.push({
|
|
439
|
+
id: msg.ts.replace(".", "-"),
|
|
440
|
+
service: "slack",
|
|
441
|
+
channel: `dm/${resolveName(msg.user)}`,
|
|
442
|
+
channel_id: im.id,
|
|
443
|
+
sender: resolveName(msg.user),
|
|
444
|
+
sender_privilege: resolvePrivilege(msg.user),
|
|
445
|
+
timestamp: new Date(parseFloat(msg.ts) * 1000).toISOString(),
|
|
446
|
+
subject: `DM from ${resolveName(msg.user)}`,
|
|
447
|
+
content: msgText,
|
|
448
|
+
thread_id: msg.thread_ts || "",
|
|
449
|
+
thread_context: threadContext,
|
|
450
|
+
is_reply: !!msg.thread_ts,
|
|
451
|
+
attachments: dmAttachments.length > 0 ? dmAttachments : undefined,
|
|
452
|
+
priority_signals: {
|
|
453
|
+
from_ceo: isCeo,
|
|
454
|
+
tagged_urgent:
|
|
455
|
+
/\b(urgent|emergency|asap|blocker|critical)\b/i.test(msgText),
|
|
456
|
+
contains_deadline: false,
|
|
457
|
+
mentions_sophie: true,
|
|
458
|
+
},
|
|
459
|
+
raw_ref: `slack:${im.id}:${msg.ts}`,
|
|
460
|
+
});
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
// Update active threads for this channel (bounded to MAX_THREADS_PER_CHANNEL, most recent first)
|
|
464
|
+
activeThreads[im.id] = [...channelThreads]
|
|
465
|
+
.sort((a, b) => parseFloat(b) - parseFloat(a))
|
|
466
|
+
.slice(0, MAX_THREADS_PER_CHANNEL);
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
} catch (err) {
|
|
470
|
+
errors.push(`DM polling: ${err.message}`);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
// ── Scan active threads (DMs AND channels) for new replies ──
|
|
474
|
+
// This catches thread replies that conversations.history misses.
|
|
475
|
+
// Use a 30-minute lookback window instead of the exact cursor to avoid
|
|
476
|
+
// missing replies that arrived between poll cycles or during processing.
|
|
477
|
+
const THREAD_LOOKBACK_MS = 30 * 60 * 1000;
|
|
478
|
+
const threadOldest = String((Date.now() - THREAD_LOOKBACK_MS) / 1000);
|
|
479
|
+
const threadOldestTs = parseFloat(threadOldest);
|
|
480
|
+
const threadItems = [];
|
|
481
|
+
|
|
482
|
+
// Pre-load the list of existing inbox files once for fast dedup lookups.
|
|
483
|
+
// The 30-min lookback re-fetches replies that were already processed in
|
|
484
|
+
// previous poll cycles; without this check the daemon re-classifies and
|
|
485
|
+
// re-dispatches the same thread reply every 60 seconds until the reply
|
|
486
|
+
// ages past the lookback window (the original "thread scanning bug").
|
|
487
|
+
const SLACK_INBOX = join(SOPHIE_AI_DIR, "state", "inbox", "slack");
|
|
488
|
+
let existingInboxFiles = [];
|
|
489
|
+
try {
|
|
490
|
+
existingInboxFiles = readdirSync(SLACK_INBOX);
|
|
491
|
+
} catch { /* inbox dir may not exist yet */ }
|
|
492
|
+
|
|
493
|
+
for (const [channelId, threadTsList] of Object.entries(activeThreads)) {
|
|
494
|
+
if (!threadTsList || threadTsList.length === 0) continue;
|
|
495
|
+
|
|
496
|
+
for (const threadTs of threadTsList) {
|
|
497
|
+
try {
|
|
498
|
+
const repliesResult = await slackApi("conversations.replies", {
|
|
499
|
+
channel: channelId,
|
|
500
|
+
ts: threadTs,
|
|
501
|
+
oldest: threadOldest,
|
|
502
|
+
limit: 20,
|
|
503
|
+
});
|
|
504
|
+
|
|
505
|
+
if (!repliesResult.ok) continue;
|
|
506
|
+
|
|
507
|
+
const replies = repliesResult.messages || [];
|
|
508
|
+
|
|
509
|
+
// ── Thread-level cooldown ──────────────────────────────────
|
|
510
|
+
// If Sophie posted ANY reply in this thread within the last
|
|
511
|
+
// THREAD_COOLDOWN_MS, skip the entire thread. This prevents
|
|
512
|
+
// re-ingesting human messages that a running session is already
|
|
513
|
+
// handling, which previously caused cascading holding notes.
|
|
514
|
+
const THREAD_COOLDOWN_MS = 10 * 60 * 1000; // 10 minutes
|
|
515
|
+
const cooldownTs = (Date.now() - THREAD_COOLDOWN_MS) / 1000;
|
|
516
|
+
const sophieRepliedRecently = replies.some(
|
|
517
|
+
(r) =>
|
|
518
|
+
r.user === SOPHIE_USER_ID &&
|
|
519
|
+
parseFloat(r.ts) > cooldownTs,
|
|
520
|
+
);
|
|
521
|
+
if (sophieRepliedRecently) continue; // skip entire thread
|
|
522
|
+
|
|
523
|
+
for (const reply of replies) {
|
|
524
|
+
// Skip the parent message itself (ts === thread_ts)
|
|
525
|
+
if (reply.ts === threadTs) continue;
|
|
526
|
+
// Skip bot messages and Sophie's own messages
|
|
527
|
+
if (reply.bot_id || reply.user === SOPHIE_USER_ID) continue;
|
|
528
|
+
// Only process replies within our lookback window
|
|
529
|
+
if (parseFloat(reply.ts) <= threadOldestTs) continue;
|
|
530
|
+
|
|
531
|
+
// Skip messages that Sophie already replied to in this thread.
|
|
532
|
+
// If Sophie posted a message AFTER this human message, a prior
|
|
533
|
+
// session already handled it — don't re-ingest and duplicate.
|
|
534
|
+
const sophieRepliedAfter = replies.some(
|
|
535
|
+
(r) => r.user === SOPHIE_USER_ID && parseFloat(r.ts) > parseFloat(reply.ts)
|
|
536
|
+
);
|
|
537
|
+
if (sophieRepliedAfter) continue;
|
|
538
|
+
|
|
539
|
+
const replyText = reply.text || "";
|
|
540
|
+
const isCeo = reply.user === CEO_USER_ID;
|
|
541
|
+
const replyId = `${reply.ts.replace(".", "-")}-thread_reply`;
|
|
542
|
+
|
|
543
|
+
// Dedup 1: check if this reply is already in the current cycle's items array
|
|
544
|
+
const alreadyQueued = items.some(
|
|
545
|
+
(i) => i.raw_ref === `slack:${channelId}:${reply.ts}`,
|
|
546
|
+
);
|
|
547
|
+
if (alreadyQueued) continue;
|
|
548
|
+
|
|
549
|
+
// Dedup 2: check if an inbox file already exists (active or processed)
|
|
550
|
+
// from a previous poll cycle. The 30-min lookback window exceeds the
|
|
551
|
+
// 15-min lock TTL, so without this the daemon's acquireLock() would
|
|
552
|
+
// re-acquire an expired lock and re-process the same reply.
|
|
553
|
+
const replyIdFragment = replyId;
|
|
554
|
+
const alreadyInInbox = existingInboxFiles.some(
|
|
555
|
+
(f) => f.includes(replyIdFragment),
|
|
556
|
+
);
|
|
557
|
+
if (alreadyInInbox) continue;
|
|
558
|
+
|
|
559
|
+
// Build thread context from the replies we already fetched
|
|
560
|
+
const precedingInThread = replies
|
|
561
|
+
.filter((m) => parseFloat(m.ts) < parseFloat(reply.ts))
|
|
562
|
+
.map((m) => {
|
|
563
|
+
const who = m.user === SOPHIE_USER_ID ? "Sophie" : resolveName(m.user);
|
|
564
|
+
return `${who}: ${(m.text || "").substring(0, 500)}`;
|
|
565
|
+
})
|
|
566
|
+
.join("\n");
|
|
567
|
+
|
|
568
|
+
// Extract and download attachments for thread replies
|
|
569
|
+
const replyAttachments = extractSlackAttachments(reply.files);
|
|
570
|
+
for (const att of replyAttachments) {
|
|
571
|
+
const file = (reply.files || []).find((f) => f.id === att.id);
|
|
572
|
+
const localPath = await downloadSlackAttachment(file, SLACK_TOKEN);
|
|
573
|
+
if (localPath) att.local_path = localPath;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
// Determine if this is a DM thread or a channel thread
|
|
577
|
+
const isDmThread = channelId.startsWith("D");
|
|
578
|
+
const chanInfo = !isDmThread
|
|
579
|
+
? allChannels.find((c) => c.id === channelId)
|
|
580
|
+
: null;
|
|
581
|
+
const channelLabel = isDmThread
|
|
582
|
+
? `dm/${resolveName(reply.user)}`
|
|
583
|
+
: chanInfo ? chanInfo.name : channelId;
|
|
584
|
+
const subjectLabel = isDmThread
|
|
585
|
+
? `DM thread reply from ${resolveName(reply.user)}`
|
|
586
|
+
: `#${channelLabel} thread reply from ${resolveName(reply.user)}`;
|
|
587
|
+
|
|
588
|
+
threadItems.push({
|
|
589
|
+
id: replyId,
|
|
590
|
+
service: "slack",
|
|
591
|
+
channel: channelLabel,
|
|
592
|
+
channel_id: channelId,
|
|
593
|
+
sender: resolveName(reply.user),
|
|
594
|
+
sender_privilege: resolvePrivilege(reply.user),
|
|
595
|
+
timestamp: new Date(parseFloat(reply.ts) * 1000).toISOString(),
|
|
596
|
+
subject: subjectLabel,
|
|
597
|
+
content: replyText,
|
|
598
|
+
thread_id: threadTs,
|
|
599
|
+
thread_context: precedingInThread || null,
|
|
600
|
+
is_reply: true,
|
|
601
|
+
event_type: "thread_reply",
|
|
602
|
+
attachments: replyAttachments.length > 0 ? replyAttachments : undefined,
|
|
603
|
+
priority_signals: {
|
|
604
|
+
from_ceo: isCeo,
|
|
605
|
+
tagged_urgent:
|
|
606
|
+
/\b(urgent|emergency|asap|blocker|critical)\b/i.test(replyText),
|
|
607
|
+
contains_deadline: false,
|
|
608
|
+
mentions_sophie: isDmThread || /sophie/i.test(replyText),
|
|
609
|
+
},
|
|
610
|
+
raw_ref: `slack:${channelId}:${reply.ts}`,
|
|
611
|
+
});
|
|
612
|
+
}
|
|
613
|
+
} catch (err) {
|
|
614
|
+
errors.push(`Thread replies ${channelId}/${threadTs}: ${err.message}`);
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
// Merge thread reply items
|
|
620
|
+
items.push(...threadItems);
|
|
621
|
+
|
|
622
|
+
// Persist updated active threads
|
|
623
|
+
try {
|
|
624
|
+
writeFileSync(ACTIVE_THREADS_FILE, JSON.stringify(activeThreads));
|
|
625
|
+
} catch (err) {
|
|
626
|
+
errors.push(`Writing active threads: ${err.message}`);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
// ── Pick up events-server items ──────────────────────────────────────
|
|
630
|
+
// The comms-monitor.sh + Slack Events API write .json files to inbox.
|
|
631
|
+
// These include @mentions, channel thread replies, and reactions that
|
|
632
|
+
// the conversations.history API doesn't return. Scan for unprocessed
|
|
633
|
+
// .json files and convert them into items for the daemon pipeline.
|
|
634
|
+
const SLACK_INBOX_DIR = join(SOPHIE_AI_DIR, "state", "inbox", "slack");
|
|
635
|
+
try {
|
|
636
|
+
const inboxFiles = readdirSync(SLACK_INBOX_DIR)
|
|
637
|
+
.filter((f) => f.endsWith(".json") && !f.endsWith(".processed"))
|
|
638
|
+
.slice(0, 10); // Process up to 10 per cycle
|
|
639
|
+
|
|
640
|
+
for (const file of inboxFiles) {
|
|
641
|
+
try {
|
|
642
|
+
const raw = readFileSync(join(SLACK_INBOX_DIR, file), "utf-8");
|
|
643
|
+
const data = JSON.parse(raw);
|
|
644
|
+
|
|
645
|
+
// Dedup: skip if we already have this item from API polling
|
|
646
|
+
const eventTs = data.ts || data.event_ts || "";
|
|
647
|
+
const eventRef = data.raw_ref || `slack:${data.channel || ""}:${eventTs}`;
|
|
648
|
+
const alreadyHave = items.some((i) => i.raw_ref === eventRef);
|
|
649
|
+
if (alreadyHave) {
|
|
650
|
+
// Mark as processed since the API poll already got it
|
|
651
|
+
try { renameSync(join(SLACK_INBOX_DIR, file), join(SLACK_INBOX_DIR, file + ".processed")); } catch {}
|
|
652
|
+
continue;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
// Convert events-server JSON to daemon item format
|
|
656
|
+
const sender = data.sender || resolveName(data.user || data.user_id || "unknown");
|
|
657
|
+
|
|
658
|
+
// Skip Sophie's own messages — the events server should filter these,
|
|
659
|
+
// but if any slip through (e.g. message_changed edge cases), catch here
|
|
660
|
+
const userId = data.user || data.user_id || "";
|
|
661
|
+
if (userId === SOPHIE_USER_ID || sender === "sophie-nguyen") {
|
|
662
|
+
try { renameSync(join(SLACK_INBOX_DIR, file), join(SLACK_INBOX_DIR, file + ".processed")); } catch {}
|
|
663
|
+
continue;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
const privilege = data.sender_privilege || resolvePrivilege(userId);
|
|
667
|
+
const content = data.content || data.text || data.event?.text || "";
|
|
668
|
+
const channelId = data.channel_id || data.channel || data.event?.channel || "";
|
|
669
|
+
const threadTs = data.thread_id || data.thread_ts || data.event?.thread_ts || "";
|
|
670
|
+
|
|
671
|
+
// Fetch thread context if this is a thread reply
|
|
672
|
+
let threadContext = data.thread_context || null;
|
|
673
|
+
if (!threadContext && threadTs && eventTs && threadTs !== eventTs && channelId) {
|
|
674
|
+
threadContext = await fetchThreadContext(channelId, threadTs, eventTs);
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
items.push({
|
|
678
|
+
id: data.id || eventTs.replace(".", "-") || file.replace(".json", ""),
|
|
679
|
+
service: "slack",
|
|
680
|
+
channel: data.channel || channelId,
|
|
681
|
+
channel_id: channelId,
|
|
682
|
+
sender,
|
|
683
|
+
sender_privilege: privilege,
|
|
684
|
+
timestamp: data.timestamp || new Date().toISOString(),
|
|
685
|
+
subject: data.subject || `Slack event`,
|
|
686
|
+
content,
|
|
687
|
+
thread_id: threadTs,
|
|
688
|
+
thread_context: threadContext,
|
|
689
|
+
is_reply: data.is_reply || (!!threadTs && threadTs !== eventTs),
|
|
690
|
+
priority_signals: data.priority_signals || {
|
|
691
|
+
from_ceo: privilege === "ceo",
|
|
692
|
+
tagged_urgent: /\b(urgent|emergency|asap|blocker|critical)\b/i.test(content),
|
|
693
|
+
contains_deadline: false,
|
|
694
|
+
mentions_sophie: /sophie/i.test(content),
|
|
695
|
+
},
|
|
696
|
+
raw_ref: eventRef,
|
|
697
|
+
_inbox_file: file,
|
|
698
|
+
});
|
|
699
|
+
|
|
700
|
+
// Mark as processed
|
|
701
|
+
try { renameSync(join(SLACK_INBOX_DIR, file), join(SLACK_INBOX_DIR, file + ".processed")); } catch {}
|
|
702
|
+
} catch (err) {
|
|
703
|
+
errors.push(`Inbox file ${file}: ${err.message}`);
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
} catch {
|
|
707
|
+
// Inbox dir doesn't exist — fine
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
for (const item of items) {
|
|
711
|
+
writeInboxItem("slack", item);
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
writeCursor("slack", new Date().toISOString());
|
|
715
|
+
return { items, errors };
|
|
716
|
+
}
|