@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,99 @@
|
|
|
1
|
+
# /init-agent — Refactor this repo for a new AI agent identity
|
|
2
|
+
|
|
3
|
+
You are being asked to transform this repository from its current agent identity into a new one. This repo is a template for Adaptic AI agents — autonomous AI employees that each run on a dedicated Mac Mini.
|
|
4
|
+
|
|
5
|
+
## What you need to gather
|
|
6
|
+
|
|
7
|
+
Ask the user for the following (or accept them as arguments):
|
|
8
|
+
|
|
9
|
+
1. **Agent name** (e.g., "Jacob", "Ravi", "Isla")
|
|
10
|
+
2. **Agent surname** (e.g., "Chen", "Patel", "Roselli")
|
|
11
|
+
3. **Agent role/title** (e.g., "Chief AI Scientist", "Head of Quant Engineering")
|
|
12
|
+
4. **Agent directory name** (e.g., "jacob-ai", "ravi-ai") — defaults to lowercase `{firstname}-ai`
|
|
13
|
+
5. **Mac Mini hostname** (e.g., "jacob-mini", "ravi-mini") — for reference
|
|
14
|
+
6. **Key responsibilities** (2-5 bullet points describing what this agent does)
|
|
15
|
+
7. **Reporting line** (who this agent reports to, e.g., "Mehran Granfar, CEO")
|
|
16
|
+
8. **Communication style notes** (formal/casual, proactive/reactive, etc.)
|
|
17
|
+
|
|
18
|
+
## What you must change
|
|
19
|
+
|
|
20
|
+
### 1. CLAUDE.md — Complete identity rewrite
|
|
21
|
+
|
|
22
|
+
Rewrite the `## Identity` section with the new agent's name, role, and operating context. Update:
|
|
23
|
+
|
|
24
|
+
- Agent name and title throughout
|
|
25
|
+
- `## Operating Principles` — adapt to the agent's domain (a quant engineer has different principles than a chief of staff)
|
|
26
|
+
- `## Communication Rules` — adapt voice modes and autonomy model for the role
|
|
27
|
+
- `## People` section — update "That's you" line
|
|
28
|
+
|
|
29
|
+
### 2. Variable names in scripts
|
|
30
|
+
|
|
31
|
+
Run a global find-and-replace across all scripts:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# Replace the directory variable name
|
|
35
|
+
find scripts/ -type f \( -name "*.sh" -o -name "*.mjs" -o -name "*.js" \) \
|
|
36
|
+
-exec sed -i '' "s/SOPHIE_AI_DIR/${UPPER_NAME}_AI_DIR/g; s/SOPHIE_AI_PATH/${UPPER_NAME}_AI_PATH/g; s/SOPHIE_AI/${UPPER_NAME}_AI/g" {} \;
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Where `UPPER_NAME` is the agent's first name in UPPER_SNAKE_CASE (e.g., JACOB, RAVI).
|
|
40
|
+
|
|
41
|
+
### 3. Launchd plist templates
|
|
42
|
+
|
|
43
|
+
In `scripts/local-triggers/plists/`, update all plist files:
|
|
44
|
+
- Change label prefix from `ai.adaptic.sophie-` to `ai.adaptic.{agentname}-`
|
|
45
|
+
- Update all paths from `/Users/sophie/sophie-ai` to `/Users/{agentname}/{agentname}-ai`
|
|
46
|
+
|
|
47
|
+
### 4. package.json
|
|
48
|
+
|
|
49
|
+
- Update `"name"` field to the new agent directory name
|
|
50
|
+
- Update `"description"` to reflect the new agent's role
|
|
51
|
+
|
|
52
|
+
### 5. Config files
|
|
53
|
+
|
|
54
|
+
- `config/environment.yaml` — update agent name, directory paths
|
|
55
|
+
- `config/contacts.yaml` — review and update if the agent has different key contacts
|
|
56
|
+
- `config/priorities.yaml` — replace with priorities relevant to the new agent's domain
|
|
57
|
+
|
|
58
|
+
### 6. Agent definitions
|
|
59
|
+
|
|
60
|
+
Review `agents/` directory. Some agents are generic (inbox processor, meeting prep) and should be kept. Others are Sophie-specific and should be adapted or removed based on the new agent's domain.
|
|
61
|
+
|
|
62
|
+
### 7. Workflow triggers
|
|
63
|
+
|
|
64
|
+
Review `schedules/triggers/` — keep the generic cadence triggers (morning brief, evening wrap, backlog executor) but adapt the content of each trigger prompt to reference the new agent's identity and responsibilities.
|
|
65
|
+
|
|
66
|
+
### 8. Hooks in .claude/settings.json (project-level)
|
|
67
|
+
|
|
68
|
+
Update any references to Sophie-specific hook scripts in `.claude/settings.json` and `.claude/settings.local.json`.
|
|
69
|
+
|
|
70
|
+
### 9. README.md
|
|
71
|
+
|
|
72
|
+
Update the repo README to reflect the new agent's identity.
|
|
73
|
+
|
|
74
|
+
## What NOT to change
|
|
75
|
+
|
|
76
|
+
- The overall architecture and directory structure
|
|
77
|
+
- The poller/inbox/trigger infrastructure
|
|
78
|
+
- The ruflo hook integration
|
|
79
|
+
- The brand assets (these are Adaptic-wide)
|
|
80
|
+
- The global `~/.claude/settings.json` (already set up by `npm run init-agent`)
|
|
81
|
+
|
|
82
|
+
## After refactoring
|
|
83
|
+
|
|
84
|
+
1. Run `npm run init-agent` to install everything on the machine
|
|
85
|
+
2. Fill in the `.env` file with the agent's API keys
|
|
86
|
+
3. Verify with `launchctl list | grep adaptic`
|
|
87
|
+
4. Run `npm run healthcheck`
|
|
88
|
+
|
|
89
|
+
## Important context
|
|
90
|
+
|
|
91
|
+
This repo is one of 16+ AI agent instances across Adaptic:
|
|
92
|
+
- **Sophie** (Chief of Staff) — the original, most fully developed
|
|
93
|
+
- **Jacob** (Chief AI Scientist) — research, model evaluation, publications
|
|
94
|
+
- **Ravi** (Head of Quant Engineering) — algorithmic trading, backtesting
|
|
95
|
+
- **Isla** (Head of Engineering) — platform engineering, CI/CD, code quality
|
|
96
|
+
- **Nadia** (Head of Compliance) — regulatory, DFSA, CIMA, cross-jurisdiction
|
|
97
|
+
- And more...
|
|
98
|
+
|
|
99
|
+
Each agent has its own Mac Mini, its own fork of this repo, and its own identity. The infrastructure is shared; the identity and domain focus is unique.
|
|
@@ -0,0 +1,565 @@
|
|
|
1
|
+
# /init-maestro -- Configure a New Maestro Agent Identity
|
|
2
|
+
|
|
3
|
+
You are running the Maestro initialization wizard. This is the single most important command in the system -- it transforms this repository from its current agent identity into a completely new autonomous AI agent.
|
|
4
|
+
|
|
5
|
+
Maestro is a framework for deploying autonomous AI agents on dedicated Mac minis. Each agent has its own identity, role, responsibilities, and operating style. This wizard gathers that information conversationally and then rewrites the repo in parallel.
|
|
6
|
+
|
|
7
|
+
## Important Context
|
|
8
|
+
|
|
9
|
+
- The central config file is `config/agent.ts` -- this is the single source of truth for all identity values
|
|
10
|
+
- The machine setup script `scripts/setup/init-agent.sh` runs AFTER this wizard completes
|
|
11
|
+
- CLAUDE.md defines the agent's system prompt and operating instructions
|
|
12
|
+
- There are 31 agent definitions in `agents/`, 13 trigger prompts in `schedules/triggers/`, and config files throughout the repo
|
|
13
|
+
- The current agent identity must be fully replaced -- no references to the old agent should remain in critical files
|
|
14
|
+
|
|
15
|
+
## Phase 1: Gather Information
|
|
16
|
+
|
|
17
|
+
Run a conversational wizard to collect the new agent's identity. Be friendly, encouraging, and clear. Ask questions in small groups (2-3 at a time), not as a wall of text. Confirm values as you go.
|
|
18
|
+
|
|
19
|
+
### Step 1: Welcome and Name
|
|
20
|
+
|
|
21
|
+
Start with a warm welcome, then ask for the basics:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
Welcome to Maestro -- let's set up your new AI agent.
|
|
25
|
+
|
|
26
|
+
First, the fundamentals:
|
|
27
|
+
1. What is the agent's first name? (e.g., "Jacob", "Ravi", "Isla")
|
|
28
|
+
2. What is the agent's last name? (e.g., "Chen", "Patel", "Roselli")
|
|
29
|
+
3. What is their job title? (e.g., "Chief AI Scientist", "Head of Engineering")
|
|
30
|
+
4. What is their email address? (e.g., jacob@adaptic.ai)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Step 2: Role Archetype
|
|
34
|
+
|
|
35
|
+
Present the archetype options and ask the user to choose. Explain each briefly:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
Now, which role archetype best describes this agent?
|
|
39
|
+
|
|
40
|
+
1. executive-operator -- Chief of Staff, COO, executive operations. Coordinates across
|
|
41
|
+
all functions, manages communications, tracks commitments, runs the office.
|
|
42
|
+
|
|
43
|
+
2. technical-leader -- CTO, Head of Engineering, Chief Scientist. Owns technical
|
|
44
|
+
architecture, engineering quality, R&D strategy, and platform delivery.
|
|
45
|
+
|
|
46
|
+
3. commercial-leader -- Head of Sales, IR, Business Development. Owns pipeline,
|
|
47
|
+
partnerships, investor relations, and commercial strategy.
|
|
48
|
+
|
|
49
|
+
4. compliance-officer -- Head of Compliance, Legal, Regulatory. Owns regulatory
|
|
50
|
+
submissions, licence maintenance, legal obligations, and risk management.
|
|
51
|
+
|
|
52
|
+
5. product-leader -- Head of Product, UX. Owns product roadmap, user experience,
|
|
53
|
+
feature prioritisation, and product-market fit.
|
|
54
|
+
|
|
55
|
+
6. operations-leader -- Head of Ops, Fund Ops, HR. Owns operational processes,
|
|
56
|
+
fund administration, hiring, and organisational design.
|
|
57
|
+
|
|
58
|
+
Which archetype? (number or name)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Step 3: Responsibilities and Principles
|
|
62
|
+
|
|
63
|
+
Ask for the agent's key responsibilities:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
What are this agent's key responsibilities? List 3-7 bullet points describing
|
|
67
|
+
what they do day-to-day.
|
|
68
|
+
|
|
69
|
+
(If you'd like, I can generate defaults based on the archetype you chose.)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Then ask about operating principles:
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
What operating principles should guide this agent? List 3-6 principles, or type
|
|
76
|
+
"defaults" to use archetype-appropriate principles.
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Default principles by archetype:**
|
|
80
|
+
|
|
81
|
+
- **executive-operator**: Follow-through over brilliance; Concise over comprehensive; Evidence over opinion; Bias to action; Audit everything; Full autonomy, full accountability
|
|
82
|
+
- **technical-leader**: Technical rigour over speed; Simplicity over cleverness; Measure before optimising; Document decisions; Security by default; Ship incrementally
|
|
83
|
+
- **commercial-leader**: Pipeline over activity; Relationships over transactions; Data-driven targeting; Speed to close; Institutional credibility first; Follow up relentlessly
|
|
84
|
+
- **compliance-officer**: Accuracy over speed; Conservative interpretation; Document everything; Deadline-driven execution; Cross-jurisdiction awareness; Escalate uncertainty
|
|
85
|
+
- **product-leader**: User outcomes over features; Evidence over intuition; Ship and learn; Simplicity over completeness; Cross-functional alignment; Measure impact
|
|
86
|
+
- **operations-leader**: Process over heroics; Automate the repeatable; Measure throughput; Clear ownership; Continuous improvement; Operational resilience
|
|
87
|
+
|
|
88
|
+
### Step 4: Organisation
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
Now for the organisational context:
|
|
92
|
+
|
|
93
|
+
1. Company name (default: the current value in config/agent.ts)
|
|
94
|
+
2. Company domain (default: the current value)
|
|
95
|
+
3. Brief company description (one line)
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Step 5: Principal (Reporting Line)
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
Who does this agent report to?
|
|
102
|
+
|
|
103
|
+
1. Principal's full name (e.g., "Mehran Granfar")
|
|
104
|
+
2. Principal's title (e.g., "CEO")
|
|
105
|
+
3. Principal's email (e.g., mehran@adaptic.ai)
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Step 6: Machine and Timezone
|
|
109
|
+
|
|
110
|
+
```
|
|
111
|
+
A few deployment details:
|
|
112
|
+
|
|
113
|
+
1. Mac mini hostname (e.g., "jacob-mini") -- defaults to {firstname}-mini
|
|
114
|
+
2. Timezone (IANA format, e.g., "America/New_York") -- defaults to current value
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Step 7: Communication Style
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
How should this agent communicate?
|
|
121
|
+
|
|
122
|
+
1. Default tone: formal / warm-professional / casual (default: warm-professional)
|
|
123
|
+
2. Any custom voice modes beyond the standard four (agent, principal, internal, institutional)?
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Step 8: Optional Contact Details
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
Optional -- skip any you don't have yet:
|
|
130
|
+
|
|
131
|
+
1. Agent phone number (E.164 format, e.g., +16282656712) -- for Twilio SMS/WhatsApp
|
|
132
|
+
2. Agent Slack member ID (e.g., U097N5R0M7U) -- for mentions and DM routing
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### Step 9: Confirmation
|
|
136
|
+
|
|
137
|
+
Before executing, display a full summary of all gathered values and ask for confirmation:
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
Here is the complete configuration for the new agent:
|
|
141
|
+
|
|
142
|
+
Name: {firstName} {lastName}
|
|
143
|
+
Title: {title}
|
|
144
|
+
Email: {email}
|
|
145
|
+
Archetype: {archetype}
|
|
146
|
+
Company: {company} ({companyDomain})
|
|
147
|
+
Principal: {principalName}, {principalTitle}
|
|
148
|
+
Machine: {machineName}
|
|
149
|
+
Timezone: {timezone}
|
|
150
|
+
Tone: {defaultTone}
|
|
151
|
+
Phone: {phone || "not set"}
|
|
152
|
+
Slack ID: {slackMemberId || "not set"}
|
|
153
|
+
|
|
154
|
+
Responsibilities:
|
|
155
|
+
- {each responsibility}
|
|
156
|
+
|
|
157
|
+
Operating Principles:
|
|
158
|
+
- {each principle}
|
|
159
|
+
|
|
160
|
+
Does this look correct? (yes to proceed, or tell me what to change)
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## Phase 2: Execute Changes
|
|
164
|
+
|
|
165
|
+
Once the user confirms, deploy SEVEN sub-agents in parallel using the Agent tool with `run_in_background: true`. Announce what you are doing:
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
Deploying 7 parallel agents to rewrite the repository. This will take a minute or two...
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### Sub-agent 1: Update config/agent.ts
|
|
172
|
+
|
|
173
|
+
**Instruction to sub-agent:** Read `config/agent.ts` and rewrite it with all the gathered values. Preserve the file structure, TypeScript types, JSDoc comments, and derived values section exactly. Only change the literal values in the `agent` object. Update:
|
|
174
|
+
|
|
175
|
+
- firstName, lastName, fullName, title, archetype
|
|
176
|
+
- email, phone, slackMemberId
|
|
177
|
+
- company, companyDomain, companyDescription
|
|
178
|
+
- principal object (firstName, lastName, fullName, title, email -- keep slackMemberId as empty string unless provided)
|
|
179
|
+
- machineName, launchdLabelPrefix (ai.adaptic.{lowercase-firstname})
|
|
180
|
+
- timezone
|
|
181
|
+
- communication.defaultTone, communication.externalTone (set based on archetype -- compliance/institutional roles default to formal)
|
|
182
|
+
- communication.voiceModes (update labels: "Agent's voice" -> "{firstName}'s voice", "Principal's voice" -> "{principalFirstName}'s voice")
|
|
183
|
+
- responsibilities array
|
|
184
|
+
- operatingPrinciples array
|
|
185
|
+
|
|
186
|
+
### Sub-agent 2: Rewrite CLAUDE.md
|
|
187
|
+
|
|
188
|
+
**Instruction to sub-agent:** Read `CLAUDE.md` and rewrite ONLY the identity-related sections. Keep all infrastructure sections intact (Repository Layout, Build & Test, Control Towers, Operating Modes, etc.).
|
|
189
|
+
|
|
190
|
+
Sections to rewrite:
|
|
191
|
+
- **## Identity** -- New agent name, title, role description. Write 2-3 sentences describing who this agent is and what they do.
|
|
192
|
+
- **## Operating Principles** -- Replace with the new principles. Use the same numbered-list format.
|
|
193
|
+
- **## Communication Rules** -- Adapt the autonomy model to the archetype. An executive-operator has broad autonomy; a compliance-officer escalates more. Rewrite the "sends autonomously" and "escalates" sections with the new agent's name and appropriate boundaries. Keep the Immediate Acknowledgement Rule, Document Sharing, and Logging subsections but replace the agent name throughout.
|
|
194
|
+
- **## People (Key Leadership)** -- Update the "That's you" line to the new agent. Keep other people entries unless the user indicated changes.
|
|
195
|
+
|
|
196
|
+
Replace ALL instances of the old agent's first name with the new agent's first name throughout the entire CLAUDE.md file. Be thorough -- check every section header, bullet point, and inline reference.
|
|
197
|
+
|
|
198
|
+
Do NOT modify these sections (keep them exactly as they are, except for agent name substitution):
|
|
199
|
+
- Repository Layout, Key Config Files, Brand Assets, PDF Generation, Visual Media Generation
|
|
200
|
+
- Source Repositories, Hiring Management (unless archetype is not executive-operator, in which case trim or adapt)
|
|
201
|
+
- Operational Infrastructure, Control Towers 1-12
|
|
202
|
+
- Build & Test, Code Standards, Three Operating Modes, Parallel Execution
|
|
203
|
+
- Agent Development, Workflow Development
|
|
204
|
+
|
|
205
|
+
### Sub-agent 3: Update config files
|
|
206
|
+
|
|
207
|
+
**Instruction to sub-agent:** Update these configuration files:
|
|
208
|
+
|
|
209
|
+
1. **config/environment.yaml** -- Replace agent name, email, phone, directory paths, and scheduling references. Update timezone.
|
|
210
|
+
|
|
211
|
+
2. **config/contacts.yaml** -- Update the principal's entry to match the new principal details. Keep other contacts unless the archetype suggests they are irrelevant. Add the new agent as a contact entry.
|
|
212
|
+
|
|
213
|
+
3. **config/priorities.yaml** -- Generate 4-6 strategic priorities appropriate for the role archetype:
|
|
214
|
+
- executive-operator: operational excellence, communication cadence, strategic execution, hiring, institutional memory
|
|
215
|
+
- technical-leader: platform architecture, engineering quality, technical debt, R&D pipeline, delivery velocity
|
|
216
|
+
- commercial-leader: pipeline growth, partnership development, investor relations, market positioning, commercial operations
|
|
217
|
+
- compliance-officer: regulatory submissions, licence maintenance, policy framework, audit readiness, cross-jurisdiction compliance
|
|
218
|
+
- product-leader: product roadmap, user research, feature delivery, product-market fit, design system
|
|
219
|
+
- operations-leader: process automation, operational efficiency, fund operations, organisational design, vendor management
|
|
220
|
+
|
|
221
|
+
### Sub-agent 4: Update package.json and scripts
|
|
222
|
+
|
|
223
|
+
**Instruction to sub-agent:**
|
|
224
|
+
|
|
225
|
+
1. **package.json** -- Update the `name` field to `maestro` (or keep current if already correct). Update `description` to reflect the new agent's role (e.g., "Autonomous AI Chief Scientist for Adaptic.ai").
|
|
226
|
+
|
|
227
|
+
2. **Shell scripts** -- Search all files in `scripts/` for references to the old agent name (case-insensitive) and replace with the new agent name. Specifically target:
|
|
228
|
+
- Variable names like `SOPHIE_AI_DIR` -> `{UPPER_FIRSTNAME}_AI_DIR`
|
|
229
|
+
- Path references like `/Users/sophie/sophie-ai` -> `/Users/{lowercase-firstname}/{repoSlug}`
|
|
230
|
+
- LaunchD labels like `ai.adaptic.sophie-` -> `ai.adaptic.{lowercase-firstname}-`
|
|
231
|
+
|
|
232
|
+
3. **LaunchD plists** in `scripts/local-triggers/plists/` -- Update labels and paths in all `.plist` files.
|
|
233
|
+
|
|
234
|
+
### Sub-agent 5: Update agent definitions
|
|
235
|
+
|
|
236
|
+
**Instruction to sub-agent:**
|
|
237
|
+
|
|
238
|
+
1. **Rename the core agent directory**: `agents/sophie-chief-of-staff` -> `agents/{lowercase-firstname}-{role-slug}` (e.g., `agents/jacob-chief-ai-scientist`). Derive the role slug from the title by lowercasing and hyphenating.
|
|
239
|
+
|
|
240
|
+
2. **Rewrite the core agent's agent.md**: Update the name, title, mandate, and responsibilities to match the new agent identity.
|
|
241
|
+
|
|
242
|
+
3. **Review all 31 agent directories** in `agents/`. For each:
|
|
243
|
+
- If the agent is generic infrastructure (inbound-dispatcher, session-spawner, workflow-automation, browser-operator, desktop-operator, slack-operator, gmail-operator, whatsapp-operator, calendar-ops, decision-log, communications, pmo-execution): Keep it, but replace any references to the old agent name in its agent.md.
|
|
244
|
+
- If the agent is role-specific to the old identity and relevant to the new role: Adapt it (e.g., ceo-briefing might become cto-briefing for a technical-leader).
|
|
245
|
+
- If the agent is role-specific and NOT relevant: Leave a note in the file that it needs review, but do not delete it.
|
|
246
|
+
|
|
247
|
+
### Sub-agent 6: Update triggers and workflows
|
|
248
|
+
|
|
249
|
+
**Instruction to sub-agent:**
|
|
250
|
+
|
|
251
|
+
1. **Trigger prompts** in `schedules/triggers/` -- Read each `.md` file and replace all references to the old agent name with the new agent name. Adapt the trigger content where the old agent's role is referenced (e.g., "Sophie's morning brief" -> "{firstName}'s morning brief").
|
|
252
|
+
|
|
253
|
+
2. **Workflow configs** in `workflows/` -- Update any agent name references.
|
|
254
|
+
|
|
255
|
+
3. Keep the cadence structure intact (morning brief, midday sweep, evening wrap, backlog executor, etc.) -- these are generic patterns that work for any agent.
|
|
256
|
+
|
|
257
|
+
### Sub-agent 7: Update README and miscellaneous
|
|
258
|
+
|
|
259
|
+
**Instruction to sub-agent:**
|
|
260
|
+
|
|
261
|
+
1. **README.md** -- Rewrite the repository README to reflect the new agent's identity. Keep the structure but update the agent name, role description, and any old-agent-specific language.
|
|
262
|
+
|
|
263
|
+
2. **Any other files** that reference the old agent by name in `docs/`, `teams/`, or root-level markdown files. Do a thorough search and replace.
|
|
264
|
+
|
|
265
|
+
## Phase 3: Machine Configuration
|
|
266
|
+
|
|
267
|
+
After identity rewriting completes, offer to configure the Mac mini for headless operation:
|
|
268
|
+
|
|
269
|
+
```
|
|
270
|
+
Identity configuration complete. Would you like to configure the Mac mini now?
|
|
271
|
+
|
|
272
|
+
This will:
|
|
273
|
+
1. Enable auto-login (no password on reboot)
|
|
274
|
+
2. Disable sleep/standby/screen saver
|
|
275
|
+
3. Configure Parsec for remote desktop access
|
|
276
|
+
4. Set up Slack with CDP for huddle automation
|
|
277
|
+
5. Install virtual audio (BlackHole) for voice
|
|
278
|
+
6. Configure all boot-time services
|
|
279
|
+
|
|
280
|
+
Run macOS configuration? (yes/no)
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
If yes, run:
|
|
284
|
+
```bash
|
|
285
|
+
sudo ./scripts/setup/configure-macos.sh
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
Then run the machine setup:
|
|
289
|
+
```bash
|
|
290
|
+
npm run init-agent
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
## Phase 4: Third-Party Service Configuration
|
|
294
|
+
|
|
295
|
+
Guide the user through setting up external integrations. Present this as a checklist — some steps can be automated, others require manual action.
|
|
296
|
+
|
|
297
|
+
### Classification of Setup Steps
|
|
298
|
+
|
|
299
|
+
**Automated (the wizard does it):**
|
|
300
|
+
- Twilio WhatsApp sandbox configuration (if TWILIO_ACCOUNT_SID is in .env)
|
|
301
|
+
- Cloudflare tunnel creation (via `cloudflared` CLI if installed)
|
|
302
|
+
- ElevenLabs voice clone setup (via API if ELEVENLABS_API_KEY is in .env)
|
|
303
|
+
- Railway service deployment (via `railway` CLI if installed)
|
|
304
|
+
|
|
305
|
+
**Guided (requires human action, wizard walks them through):**
|
|
306
|
+
- Slack app creation and token generation
|
|
307
|
+
- Gmail app password generation
|
|
308
|
+
- Twilio phone number purchase
|
|
309
|
+
- Parsec account login (first time only)
|
|
310
|
+
|
|
311
|
+
### Step 1: Slack App Setup
|
|
312
|
+
|
|
313
|
+
```
|
|
314
|
+
Let's set up Slack integration.
|
|
315
|
+
|
|
316
|
+
IMPORTANT: You can reuse an existing Slack app across multiple agents in the
|
|
317
|
+
same workspace. Each agent needs its own bot token and user token, but they
|
|
318
|
+
can share the same app configuration.
|
|
319
|
+
|
|
320
|
+
If you already have a Maestro Slack app configured:
|
|
321
|
+
→ Just paste the bot token (xoxb-...) and user token (xoxp-...) below.
|
|
322
|
+
|
|
323
|
+
If you need to create a new Slack app:
|
|
324
|
+
1. Go to https://api.slack.com/apps → "Create New App" → "From scratch"
|
|
325
|
+
2. Name it "Maestro - {AgentFirstName}" (or reuse existing "Maestro" app)
|
|
326
|
+
3. Under "OAuth & Permissions", add these BOT scopes:
|
|
327
|
+
- chat:write, chat:write.customize
|
|
328
|
+
- channels:read, channels:history
|
|
329
|
+
- groups:read, groups:history
|
|
330
|
+
- im:read, im:history, im:write
|
|
331
|
+
- users:read, users:read.email
|
|
332
|
+
- reactions:read, reactions:write
|
|
333
|
+
- files:read, files:write
|
|
334
|
+
4. Add these USER scopes:
|
|
335
|
+
- channels:history, groups:history, im:history
|
|
336
|
+
- search:read
|
|
337
|
+
5. Install the app to your workspace
|
|
338
|
+
6. Copy the Bot User OAuth Token (xoxb-...)
|
|
339
|
+
7. Copy the User OAuth Token (xoxp-...)
|
|
340
|
+
|
|
341
|
+
For Slack Events API (real-time messages instead of polling):
|
|
342
|
+
8. Under "Event Subscriptions", enable events
|
|
343
|
+
9. Set Request URL to your Cloudflare tunnel URL + /slack/events
|
|
344
|
+
10. Subscribe to bot events: message.channels, message.groups, message.im,
|
|
345
|
+
app_mention, reaction_added
|
|
346
|
+
11. Copy the Signing Secret from "Basic Information"
|
|
347
|
+
|
|
348
|
+
Paste your tokens when ready (or type "skip" to configure later):
|
|
349
|
+
Bot token (xoxb-...):
|
|
350
|
+
User token (xoxp-...):
|
|
351
|
+
Signing secret (optional):
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
Write the tokens to `.env` using the Edit tool.
|
|
355
|
+
|
|
356
|
+
**Answer to Slack app reusability question:** A single Slack app CAN serve multiple agents in the same workspace. The app defines scopes and event subscriptions; each workspace installation generates unique bot/user tokens. However, if you want separate bot identities (different names/avatars per agent), create one app per agent. The Event Subscriptions URL can only point to one server per app, so if multiple agents need real-time events, either use separate apps or a shared event router.
|
|
357
|
+
|
|
358
|
+
### Step 2: Gmail Setup
|
|
359
|
+
|
|
360
|
+
```
|
|
361
|
+
Let's set up Gmail.
|
|
362
|
+
|
|
363
|
+
Each agent needs its own Gmail account and app password.
|
|
364
|
+
(The poller connects via IMAP — not OAuth — so app passwords are simpler.)
|
|
365
|
+
|
|
366
|
+
1. Log into the agent's Google account ({agent.email})
|
|
367
|
+
2. Enable 2-Factor Authentication if not already enabled
|
|
368
|
+
3. Go to https://myaccount.google.com/apppasswords
|
|
369
|
+
4. Generate an app password for "Mail" on "Mac"
|
|
370
|
+
5. Copy the 16-character password (no spaces)
|
|
371
|
+
|
|
372
|
+
Paste the Gmail app password:
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
Write to `.env` as `GMAIL_APP_PASSWORD`.
|
|
376
|
+
|
|
377
|
+
If the agent also monitors the principal's inbox:
|
|
378
|
+
```
|
|
379
|
+
Does {principalName} want this agent to monitor their inbox too?
|
|
380
|
+
If yes, generate an app password for {principalEmail} using the same steps above.
|
|
381
|
+
|
|
382
|
+
Paste the secondary Gmail app password (or "skip"):
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
Write to `.env` as `SECONDARY_GMAIL_APP_PASSWORD`.
|
|
386
|
+
|
|
387
|
+
### Step 3: Twilio Setup (Optional)
|
|
388
|
+
|
|
389
|
+
```
|
|
390
|
+
Does this agent need phone/SMS/WhatsApp capabilities? (yes/no)
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
If yes:
|
|
394
|
+
```
|
|
395
|
+
Twilio setup:
|
|
396
|
+
1. Sign up at https://www.twilio.com/ (or use existing account)
|
|
397
|
+
2. From the Console dashboard, copy:
|
|
398
|
+
- Account SID (starts with AC...)
|
|
399
|
+
- Auth Token
|
|
400
|
+
3. Buy a phone number: Console → Phone Numbers → Buy a Number
|
|
401
|
+
- Select a number with SMS + Voice capabilities
|
|
402
|
+
- Copy the phone number (E.164 format, e.g., +15551234567)
|
|
403
|
+
- Copy the Phone SID (starts with PN...)
|
|
404
|
+
|
|
405
|
+
Paste your Twilio credentials:
|
|
406
|
+
Account SID:
|
|
407
|
+
Auth Token:
|
|
408
|
+
Phone Number:
|
|
409
|
+
Phone SID:
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
Write all to `.env`. Then offer to auto-configure:
|
|
413
|
+
```
|
|
414
|
+
Would you like me to configure the Twilio WhatsApp sandbox automatically? (yes/no)
|
|
415
|
+
```
|
|
416
|
+
|
|
417
|
+
If yes, run: `bash scripts/configure-whatsapp-sandbox.sh`
|
|
418
|
+
|
|
419
|
+
### Step 4: Cloudflare Tunnel (Optional)
|
|
420
|
+
|
|
421
|
+
```
|
|
422
|
+
Does this agent need a public URL for webhooks? (yes/no)
|
|
423
|
+
(Required for: Slack Events API, Twilio voice callbacks, WhatsApp webhooks)
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
If yes:
|
|
427
|
+
```
|
|
428
|
+
Cloudflare tunnel options:
|
|
429
|
+
|
|
430
|
+
1. Quick tunnel (free, URL changes on restart):
|
|
431
|
+
cloudflared tunnel --url http://localhost:3100
|
|
432
|
+
|
|
433
|
+
2. Named tunnel (free, persistent URL — recommended):
|
|
434
|
+
cloudflared tunnel create {agent-name}
|
|
435
|
+
cloudflared tunnel route dns {agent-name} {agent-name}.yourdomain.com
|
|
436
|
+
|
|
437
|
+
3. Skip (configure manually later)
|
|
438
|
+
|
|
439
|
+
Which option? (1/2/3)
|
|
440
|
+
```
|
|
441
|
+
|
|
442
|
+
For option 1, run `cloudflared tunnel --url http://localhost:3100` and capture the URL.
|
|
443
|
+
For option 2, guide through the DNS setup steps.
|
|
444
|
+
|
|
445
|
+
### Step 5: Voice Integration (Optional)
|
|
446
|
+
|
|
447
|
+
```
|
|
448
|
+
Does this agent need voice capabilities (phone calls, huddle participation)? (yes/no)
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
If yes:
|
|
452
|
+
```
|
|
453
|
+
Voice setup requires:
|
|
454
|
+
1. ElevenLabs API key (for text-to-speech)
|
|
455
|
+
→ Sign up at https://elevenlabs.io/
|
|
456
|
+
→ Copy your API key from Profile → API Keys
|
|
457
|
+
|
|
458
|
+
2. Deepgram API key (for speech-to-text)
|
|
459
|
+
→ Sign up at https://deepgram.com/
|
|
460
|
+
→ Copy your API key from Console → API Keys
|
|
461
|
+
|
|
462
|
+
3. BlackHole virtual audio (for huddle participation)
|
|
463
|
+
→ This will be installed by the audio setup script
|
|
464
|
+
|
|
465
|
+
Paste API keys:
|
|
466
|
+
ElevenLabs API key:
|
|
467
|
+
Deepgram API key:
|
|
468
|
+
```
|
|
469
|
+
|
|
470
|
+
Write to `.env`. Then run: `bash scripts/huddle/setup-audio.sh`
|
|
471
|
+
|
|
472
|
+
### Step 6: Additional Services (Optional)
|
|
473
|
+
|
|
474
|
+
```
|
|
475
|
+
Any additional services to configure?
|
|
476
|
+
1. OpenAI API key (supplemental model access)
|
|
477
|
+
2. Gemini API key (media generation)
|
|
478
|
+
3. Greptile API key (code search)
|
|
479
|
+
4. Done — skip remaining
|
|
480
|
+
|
|
481
|
+
Which? (comma-separated numbers, or "done")
|
|
482
|
+
```
|
|
483
|
+
|
|
484
|
+
For each, prompt for the API key and write to `.env`.
|
|
485
|
+
|
|
486
|
+
### Step 7: Service Verification
|
|
487
|
+
|
|
488
|
+
After all services are configured, run verification:
|
|
489
|
+
|
|
490
|
+
```bash
|
|
491
|
+
npm run healthcheck
|
|
492
|
+
```
|
|
493
|
+
|
|
494
|
+
Report the results and flag any services that aren't configured.
|
|
495
|
+
|
|
496
|
+
## Phase 5: Final Verification
|
|
497
|
+
|
|
498
|
+
After ALL phases are complete, run these verification steps:
|
|
499
|
+
|
|
500
|
+
### Step 1: Grep for old agent references
|
|
501
|
+
|
|
502
|
+
Search critical files for any remaining references to the old agent's first name (case-insensitive). Check:
|
|
503
|
+
- CLAUDE.md
|
|
504
|
+
- config/agent.ts
|
|
505
|
+
- config/environment.yaml
|
|
506
|
+
- config/contacts.yaml
|
|
507
|
+
- config/priorities.yaml
|
|
508
|
+
- package.json
|
|
509
|
+
- All files in schedules/triggers/
|
|
510
|
+
- All agent.md files in agents/
|
|
511
|
+
|
|
512
|
+
Report any stragglers and fix them.
|
|
513
|
+
|
|
514
|
+
### Step 2: Validate config/agent.ts
|
|
515
|
+
|
|
516
|
+
Read `config/agent.ts` and verify it has valid TypeScript syntax and all fields are populated with the new values.
|
|
517
|
+
|
|
518
|
+
### Step 3: Summary
|
|
519
|
+
|
|
520
|
+
Print a completion summary:
|
|
521
|
+
|
|
522
|
+
```
|
|
523
|
+
Maestro initialization complete.
|
|
524
|
+
|
|
525
|
+
Agent: {fullName}, {title}
|
|
526
|
+
Archetype: {archetype}
|
|
527
|
+
Company: {company}
|
|
528
|
+
Principal: {principalName}
|
|
529
|
+
Machine: {machineName}
|
|
530
|
+
|
|
531
|
+
Files modified:
|
|
532
|
+
- config/agent.ts (central identity config)
|
|
533
|
+
- CLAUDE.md (system prompt and operating instructions)
|
|
534
|
+
- config/environment.yaml
|
|
535
|
+
- config/contacts.yaml
|
|
536
|
+
- config/priorities.yaml
|
|
537
|
+
- package.json
|
|
538
|
+
- agents/{agent-slug}/agent.md (+ 30 other agent definitions)
|
|
539
|
+
- schedules/triggers/ (13 trigger prompts)
|
|
540
|
+
- README.md
|
|
541
|
+
|
|
542
|
+
Next steps:
|
|
543
|
+
1. Review the changes: git diff
|
|
544
|
+
2. Run machine setup: npm run init-agent
|
|
545
|
+
3. Fill in API keys in .env
|
|
546
|
+
4. Verify daemons: launchctl list | grep adaptic
|
|
547
|
+
5. Run health check: npm run healthcheck
|
|
548
|
+
6. Commit when satisfied: git add -A && git commit -m "Initialize {fullName} as {title}"
|
|
549
|
+
```
|
|
550
|
+
|
|
551
|
+
## Guidelines for the Wizard Conversation
|
|
552
|
+
|
|
553
|
+
- Be warm and professional. This is a setup experience, not an interrogation.
|
|
554
|
+
- Offer sensible defaults wherever possible. If the user says "defaults" for any field, use the archetype-appropriate default.
|
|
555
|
+
- If the user provides all information upfront (e.g., as arguments to the command), skip the conversational steps and go straight to confirmation.
|
|
556
|
+
- Always confirm before executing. The changes are extensive and hard to undo.
|
|
557
|
+
- When spawning sub-agents, give each one the COMPLETE set of gathered values so they can work independently.
|
|
558
|
+
- Sub-agents MUST run in parallel (use `run_in_background: true`) -- do not run them sequentially.
|
|
559
|
+
- After all sub-agents finish, do the verification grep yourself (do not delegate it).
|
|
560
|
+
|
|
561
|
+
## Error Handling
|
|
562
|
+
|
|
563
|
+
- If a sub-agent fails, report which one failed and what went wrong. Offer to retry just that sub-agent.
|
|
564
|
+
- If the user wants to abort mid-wizard, confirm and exit cleanly.
|
|
565
|
+
- If config/agent.ts cannot be read, warn that the repo may not be properly set up and suggest running `npm install` first.
|