@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,739 @@
|
|
|
1
|
+
# Phase 2: People + Product + Commercial — Implementation Plan
|
|
2
|
+
|
|
3
|
+
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
|
|
4
|
+
|
|
5
|
+
**Goal:** Build four domain control towers (People/Hiring, Leadership Accountability, Engineering Health, Commercial/Market) with dashboards, trigger enhancements, and cross-tower integration.
|
|
6
|
+
|
|
7
|
+
**Architecture:** Adds 5 new dashboard/queue files, 1 new trigger prompt, enhances 6 existing triggers with domain-specific logic, adds accountability tracking to user profiles, and installs 1 new launchd daemon.
|
|
8
|
+
|
|
9
|
+
**Tech Stack:** YAML state files, Markdown trigger prompts, macOS launchd
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## File Structure
|
|
14
|
+
|
|
15
|
+
### New files
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
state/dashboards/org-health.yaml
|
|
19
|
+
state/dashboards/leadership-accountability.yaml
|
|
20
|
+
state/dashboards/engineering-health.yaml
|
|
21
|
+
state/dashboards/relationship-pipeline.yaml
|
|
22
|
+
state/queues/tech-debt.yaml
|
|
23
|
+
memory/precedents/market-signals/.gitkeep
|
|
24
|
+
schedules/triggers/weekly-engineering-health.md
|
|
25
|
+
scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Modified files
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
memory/profiles/users/mehran-granfar.yaml
|
|
32
|
+
memory/profiles/users/hootan-yazhari.yaml
|
|
33
|
+
memory/profiles/users/bronwyn-leong.yaml
|
|
34
|
+
memory/profiles/users/nima-masroori.yaml
|
|
35
|
+
memory/profiles/users/shayan-kargarian.yaml
|
|
36
|
+
schedules/triggers/weekly-hiring.md
|
|
37
|
+
schedules/triggers/daily-evening-wrap.md
|
|
38
|
+
schedules/triggers/weekly-strategic-memo.md
|
|
39
|
+
schedules/triggers/weekly-execution.md
|
|
40
|
+
schedules/triggers/inbox-processor.md
|
|
41
|
+
schedules/triggers/daily-morning-brief.md
|
|
42
|
+
CLAUDE.md
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Task 1: New Dashboards and Queue Files
|
|
48
|
+
|
|
49
|
+
**Files:**
|
|
50
|
+
|
|
51
|
+
- Create: `state/dashboards/org-health.yaml`
|
|
52
|
+
- Create: `state/dashboards/leadership-accountability.yaml`
|
|
53
|
+
- Create: `state/dashboards/engineering-health.yaml`
|
|
54
|
+
- Create: `state/dashboards/relationship-pipeline.yaml`
|
|
55
|
+
- Create: `state/queues/tech-debt.yaml`
|
|
56
|
+
- Create: `memory/precedents/market-signals/.gitkeep`
|
|
57
|
+
|
|
58
|
+
- [ ] **Step 1: Create org health dashboard**
|
|
59
|
+
|
|
60
|
+
`state/dashboards/org-health.yaml`:
|
|
61
|
+
|
|
62
|
+
```yaml
|
|
63
|
+
# Org Health Dashboard — hiring pipeline, capability gaps, founder dependency
|
|
64
|
+
# Generated by: weekly-hiring workflow
|
|
65
|
+
# Read by: morning-brief, weekly-strategic-memo
|
|
66
|
+
|
|
67
|
+
generated: "2026-04-03T00:00:00+04:00"
|
|
68
|
+
|
|
69
|
+
hiring_pipeline:
|
|
70
|
+
total_roles: 94
|
|
71
|
+
filled: 0
|
|
72
|
+
in_progress: 0
|
|
73
|
+
stale: 0
|
|
74
|
+
critical_unfilled: []
|
|
75
|
+
|
|
76
|
+
capability_gaps: []
|
|
77
|
+
|
|
78
|
+
org_structure:
|
|
79
|
+
functions_with_leader: 5
|
|
80
|
+
functions_without_leader: 0
|
|
81
|
+
flags: []
|
|
82
|
+
|
|
83
|
+
founder_dependency:
|
|
84
|
+
mehran_owned_items: 0
|
|
85
|
+
total_open_items: 0
|
|
86
|
+
dependency_percent: 0.0
|
|
87
|
+
trend: stable
|
|
88
|
+
threshold_breached: false
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
- [ ] **Step 2: Create leadership accountability dashboard**
|
|
92
|
+
|
|
93
|
+
`state/dashboards/leadership-accountability.yaml`:
|
|
94
|
+
|
|
95
|
+
```yaml
|
|
96
|
+
# Leadership Accountability Dashboard — per-leader commitment tracking
|
|
97
|
+
# Generated by: evening-wrap workflow
|
|
98
|
+
# Read by: weekly-strategic-memo (leadership effectiveness scorecard)
|
|
99
|
+
# SENSITIVE: Mehran's eyes only — do not share in channels
|
|
100
|
+
|
|
101
|
+
generated: "2026-04-03T00:00:00+04:00"
|
|
102
|
+
period: weekly
|
|
103
|
+
|
|
104
|
+
leaders:
|
|
105
|
+
mehran-granfar:
|
|
106
|
+
name: Mehran Granfar
|
|
107
|
+
role: CEO
|
|
108
|
+
metrics:
|
|
109
|
+
commitments_total: 0
|
|
110
|
+
commitments_met_on_time: 0
|
|
111
|
+
commitments_late: 0
|
|
112
|
+
commitments_missed: 0
|
|
113
|
+
avg_response_hours: 0.0
|
|
114
|
+
chase_count: 0
|
|
115
|
+
items_currently_overdue: 0
|
|
116
|
+
sla_breach_count: 0
|
|
117
|
+
trend: stable
|
|
118
|
+
flags: []
|
|
119
|
+
|
|
120
|
+
hootan-yazhari:
|
|
121
|
+
name: Hootan Yazhari
|
|
122
|
+
role: CFO / CIO / SEO (DFSA)
|
|
123
|
+
metrics:
|
|
124
|
+
commitments_total: 0
|
|
125
|
+
commitments_met_on_time: 0
|
|
126
|
+
commitments_late: 0
|
|
127
|
+
commitments_missed: 0
|
|
128
|
+
avg_response_hours: 0.0
|
|
129
|
+
chase_count: 0
|
|
130
|
+
items_currently_overdue: 0
|
|
131
|
+
sla_breach_count: 0
|
|
132
|
+
trend: stable
|
|
133
|
+
flags: []
|
|
134
|
+
|
|
135
|
+
bronwyn-leong:
|
|
136
|
+
name: Bronwyn Leong
|
|
137
|
+
role: Co-founder / Director
|
|
138
|
+
metrics:
|
|
139
|
+
commitments_total: 0
|
|
140
|
+
commitments_met_on_time: 0
|
|
141
|
+
commitments_late: 0
|
|
142
|
+
commitments_missed: 0
|
|
143
|
+
avg_response_hours: 0.0
|
|
144
|
+
chase_count: 0
|
|
145
|
+
items_currently_overdue: 0
|
|
146
|
+
sla_breach_count: 0
|
|
147
|
+
trend: stable
|
|
148
|
+
flags: []
|
|
149
|
+
|
|
150
|
+
nima-masroori:
|
|
151
|
+
name: Nima Masroori
|
|
152
|
+
role: General Counsel
|
|
153
|
+
metrics:
|
|
154
|
+
commitments_total: 0
|
|
155
|
+
commitments_met_on_time: 0
|
|
156
|
+
commitments_late: 0
|
|
157
|
+
commitments_missed: 0
|
|
158
|
+
avg_response_hours: 0.0
|
|
159
|
+
chase_count: 0
|
|
160
|
+
items_currently_overdue: 0
|
|
161
|
+
sla_breach_count: 0
|
|
162
|
+
trend: stable
|
|
163
|
+
flags: []
|
|
164
|
+
|
|
165
|
+
shayan-kargarian:
|
|
166
|
+
name: Shayan Kargarian
|
|
167
|
+
role: Managing Partner, FTLab
|
|
168
|
+
metrics:
|
|
169
|
+
commitments_total: 0
|
|
170
|
+
commitments_met_on_time: 0
|
|
171
|
+
commitments_late: 0
|
|
172
|
+
commitments_missed: 0
|
|
173
|
+
avg_response_hours: 0.0
|
|
174
|
+
chase_count: 0
|
|
175
|
+
items_currently_overdue: 0
|
|
176
|
+
sla_breach_count: 0
|
|
177
|
+
trend: stable
|
|
178
|
+
flags: []
|
|
179
|
+
|
|
180
|
+
summary:
|
|
181
|
+
highest_follow_through: null
|
|
182
|
+
lowest_follow_through: null
|
|
183
|
+
most_improved: null
|
|
184
|
+
concerns: []
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
- [ ] **Step 3: Create engineering health dashboard**
|
|
188
|
+
|
|
189
|
+
`state/dashboards/engineering-health.yaml`:
|
|
190
|
+
|
|
191
|
+
```yaml
|
|
192
|
+
# Engineering Health Dashboard — repo activity and delivery confidence
|
|
193
|
+
# Generated by: weekly-engineering-health workflow (Wednesday 10:00 GST)
|
|
194
|
+
# Read by: weekly-execution, morning-brief
|
|
195
|
+
|
|
196
|
+
generated: "2026-04-03T00:00:00+04:00"
|
|
197
|
+
|
|
198
|
+
repos:
|
|
199
|
+
adapticai:
|
|
200
|
+
name: Adaptic Core Platform
|
|
201
|
+
path: ~/adapticai
|
|
202
|
+
last_commit: null
|
|
203
|
+
commits_this_week: 0
|
|
204
|
+
activity_status: stale
|
|
205
|
+
open_prs: 0
|
|
206
|
+
oldest_pr_days: 0
|
|
207
|
+
milestone_refs: [P1, P3]
|
|
208
|
+
flags: []
|
|
209
|
+
|
|
210
|
+
dfsa-submission:
|
|
211
|
+
name: DFSA Regulatory Submission
|
|
212
|
+
path: ~/dfsa-submission
|
|
213
|
+
last_commit: null
|
|
214
|
+
commits_this_week: 0
|
|
215
|
+
activity_status: stale
|
|
216
|
+
open_prs: 0
|
|
217
|
+
oldest_pr_days: 0
|
|
218
|
+
milestone_refs: [P1]
|
|
219
|
+
flags: []
|
|
220
|
+
|
|
221
|
+
rollup-strategy:
|
|
222
|
+
name: Project Aether Rollup
|
|
223
|
+
path: ~/rollup-strategy
|
|
224
|
+
last_commit: null
|
|
225
|
+
commits_this_week: 0
|
|
226
|
+
activity_status: stale
|
|
227
|
+
open_prs: 0
|
|
228
|
+
oldest_pr_days: 0
|
|
229
|
+
milestone_refs: [P2]
|
|
230
|
+
flags: []
|
|
231
|
+
|
|
232
|
+
ai-born:
|
|
233
|
+
name: AI-Born Thesis
|
|
234
|
+
path: ~/ai-born
|
|
235
|
+
last_commit: null
|
|
236
|
+
commits_this_week: 0
|
|
237
|
+
activity_status: stale
|
|
238
|
+
open_prs: 0
|
|
239
|
+
oldest_pr_days: 0
|
|
240
|
+
milestone_refs: []
|
|
241
|
+
flags: []
|
|
242
|
+
|
|
243
|
+
ftlab-framework:
|
|
244
|
+
name: FTLab Institutional Framework
|
|
245
|
+
path: ~/ftlab-framework
|
|
246
|
+
last_commit: null
|
|
247
|
+
commits_this_week: 0
|
|
248
|
+
activity_status: stale
|
|
249
|
+
open_prs: 0
|
|
250
|
+
oldest_pr_days: 0
|
|
251
|
+
milestone_refs: []
|
|
252
|
+
flags: []
|
|
253
|
+
|
|
254
|
+
adaptic-legal:
|
|
255
|
+
name: Legal Operations Platform
|
|
256
|
+
path: ~/adaptic-legal
|
|
257
|
+
last_commit: null
|
|
258
|
+
commits_this_week: 0
|
|
259
|
+
activity_status: stale
|
|
260
|
+
open_prs: 0
|
|
261
|
+
oldest_pr_days: 0
|
|
262
|
+
milestone_refs: [P1]
|
|
263
|
+
flags: []
|
|
264
|
+
|
|
265
|
+
hr-system:
|
|
266
|
+
name: HR/ATS Platform
|
|
267
|
+
path: ~/hr-system
|
|
268
|
+
last_commit: null
|
|
269
|
+
commits_this_week: 0
|
|
270
|
+
activity_status: stale
|
|
271
|
+
open_prs: 0
|
|
272
|
+
oldest_pr_days: 0
|
|
273
|
+
milestone_refs: []
|
|
274
|
+
flags: []
|
|
275
|
+
|
|
276
|
+
cross_repo:
|
|
277
|
+
dependency_flags: []
|
|
278
|
+
stale_repos: []
|
|
279
|
+
|
|
280
|
+
overall:
|
|
281
|
+
active_repos: 0
|
|
282
|
+
quiet_repos: 0
|
|
283
|
+
stale_repos: 7
|
|
284
|
+
total_open_prs: 0
|
|
285
|
+
delivery_confidence: low
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
- [ ] **Step 4: Create relationship pipeline dashboard**
|
|
289
|
+
|
|
290
|
+
`state/dashboards/relationship-pipeline.yaml`:
|
|
291
|
+
|
|
292
|
+
```yaml
|
|
293
|
+
# Relationship Pipeline — strategic relationship tracking
|
|
294
|
+
# Updated by: weekly-strategic-memo
|
|
295
|
+
# Read by: morning-brief, meeting-prep
|
|
296
|
+
|
|
297
|
+
generated: "2026-04-03T00:00:00+04:00"
|
|
298
|
+
|
|
299
|
+
relationships:
|
|
300
|
+
investors: []
|
|
301
|
+
partners:
|
|
302
|
+
- name: Shayan Kargarian
|
|
303
|
+
organisation: FTLab / New Genre Holdings
|
|
304
|
+
stage: engaged
|
|
305
|
+
last_interaction: null
|
|
306
|
+
next_action: null
|
|
307
|
+
next_action_due: null
|
|
308
|
+
warmth_trend: stable
|
|
309
|
+
owner: mehran
|
|
310
|
+
notes: "Managing Partner of FTLab. 50/50 JV partner. Active collaborator."
|
|
311
|
+
|
|
312
|
+
acquisition_targets: []
|
|
313
|
+
advisors: []
|
|
314
|
+
regulators:
|
|
315
|
+
- name: DFSA
|
|
316
|
+
organisation: Dubai Financial Services Authority
|
|
317
|
+
stage: active
|
|
318
|
+
last_interaction: null
|
|
319
|
+
next_action: "Submit Category 3(c) application"
|
|
320
|
+
next_action_due: "2026-07-15"
|
|
321
|
+
warmth_trend: stable
|
|
322
|
+
owner: mehran
|
|
323
|
+
notes: "Primary regulatory target. 12 technical gaps being remediated."
|
|
324
|
+
|
|
325
|
+
vendors: []
|
|
326
|
+
|
|
327
|
+
summary:
|
|
328
|
+
total_active: 2
|
|
329
|
+
warming: 0
|
|
330
|
+
cooling: 0
|
|
331
|
+
overdue_actions: 0
|
|
332
|
+
relationships_needing_attention: []
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
- [ ] **Step 5: Create tech debt queue**
|
|
336
|
+
|
|
337
|
+
`state/queues/tech-debt.yaml`:
|
|
338
|
+
|
|
339
|
+
```yaml
|
|
340
|
+
# Tech Debt Register — technical debt items with strategic impact
|
|
341
|
+
# Schema: standard queue item (see Phase 0 spec)
|
|
342
|
+
# Updated by: weekly-execution, engineering-health workflows
|
|
343
|
+
# Read by: strategy-scorecard calculation, execution review
|
|
344
|
+
|
|
345
|
+
queue_name: tech-debt
|
|
346
|
+
description: Technical debt items with strategic impact on priority milestones
|
|
347
|
+
items: []
|
|
348
|
+
# Item schema same as all queues, with id prefix td-
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
- [ ] **Step 6: Create market signals directory**
|
|
352
|
+
|
|
353
|
+
```bash
|
|
354
|
+
mkdir -p memory/precedents/market-signals
|
|
355
|
+
touch memory/precedents/market-signals/.gitkeep
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
- [ ] **Step 7: Commit**
|
|
359
|
+
|
|
360
|
+
```bash
|
|
361
|
+
git add state/dashboards/org-health.yaml state/dashboards/leadership-accountability.yaml state/dashboards/engineering-health.yaml state/dashboards/relationship-pipeline.yaml state/queues/tech-debt.yaml memory/precedents/market-signals/.gitkeep
|
|
362
|
+
git commit -m "feat: add Phase 2 dashboards (org health, leadership, engineering, relationships) and tech debt queue"
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## Task 2: User Profile Accountability Sections
|
|
368
|
+
|
|
369
|
+
**Files:**
|
|
370
|
+
|
|
371
|
+
- Modify: `memory/profiles/users/mehran-granfar.yaml`
|
|
372
|
+
- Modify: `memory/profiles/users/hootan-yazhari.yaml`
|
|
373
|
+
- Modify: `memory/profiles/users/bronwyn-leong.yaml`
|
|
374
|
+
- Modify: `memory/profiles/users/nima-masroori.yaml`
|
|
375
|
+
- Modify: `memory/profiles/users/shayan-kargarian.yaml`
|
|
376
|
+
|
|
377
|
+
- [ ] **Step 1: Add accountability section to all 5 user profiles**
|
|
378
|
+
|
|
379
|
+
For each of the 5 user profile files in `memory/profiles/users/`, read the file and append this section at the end (before any trailing newlines):
|
|
380
|
+
|
|
381
|
+
```yaml
|
|
382
|
+
accountability:
|
|
383
|
+
response_latency_avg_hours: 0.0
|
|
384
|
+
follow_through_rate: 0.0
|
|
385
|
+
communication_quality: neutral
|
|
386
|
+
last_calculated: null
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
Read each file first, then use Edit to add the section.
|
|
390
|
+
|
|
391
|
+
- [ ] **Step 2: Commit**
|
|
392
|
+
|
|
393
|
+
```bash
|
|
394
|
+
git add memory/profiles/users/
|
|
395
|
+
git commit -m "feat: add accountability tracking section to all user profiles"
|
|
396
|
+
```
|
|
397
|
+
|
|
398
|
+
---
|
|
399
|
+
|
|
400
|
+
## Task 3: Weekly Engineering Health Trigger
|
|
401
|
+
|
|
402
|
+
**Files:**
|
|
403
|
+
|
|
404
|
+
- Create: `schedules/triggers/weekly-engineering-health.md`
|
|
405
|
+
|
|
406
|
+
- [ ] **Step 1: Create the trigger prompt**
|
|
407
|
+
|
|
408
|
+
`schedules/triggers/weekly-engineering-health.md`:
|
|
409
|
+
|
|
410
|
+
```markdown
|
|
411
|
+
You are Sophie Nguyen, Chief of Staff to Mehran Granfar, CEO of Adaptic.ai.
|
|
412
|
+
|
|
413
|
+
## Workflow: Weekly Engineering Health Check
|
|
414
|
+
|
|
415
|
+
## Cadence: Wednesday 10:00 GST (before execution review at 14:00)
|
|
416
|
+
|
|
417
|
+
## Working Directory: /Users/sophie/sophie-ai
|
|
418
|
+
|
|
419
|
+
### Instructions
|
|
420
|
+
|
|
421
|
+
1. Read `config/repo-registry.yaml` for the list of source repositories
|
|
422
|
+
2. Read `state/dashboards/strategy-scorecard.yaml` for priority-to-repo mapping
|
|
423
|
+
3. For each repository:
|
|
424
|
+
a. Check if the repo exists locally at its configured path
|
|
425
|
+
b. If accessible, run `git log --oneline --since="7 days ago"` to count recent commits
|
|
426
|
+
c. Check `git log -1 --format="%ai"` for last commit date
|
|
427
|
+
d. Check for open PRs: `git branch -r --no-merged main` or similar
|
|
428
|
+
e. Classify activity: active (>5 commits), quiet (1-5 commits), stale (0 commits)
|
|
429
|
+
f. Map repo to strategic priorities using config
|
|
430
|
+
4. Check for cross-repo dependency risks:
|
|
431
|
+
- If a repo serving P1 milestones is stale while milestones are approaching, flag it
|
|
432
|
+
- If multiple repos serving the same priority are all quiet, flag coordination concern
|
|
433
|
+
5. Calculate overall delivery confidence:
|
|
434
|
+
- high: all priority-linked repos active, no stale repos
|
|
435
|
+
- medium: some quiet repos, no critical stale repos
|
|
436
|
+
- low: any priority-linked repo stale, or multiple repos stale
|
|
437
|
+
6. Write dashboard to `state/dashboards/engineering-health.yaml`
|
|
438
|
+
7. Check `state/queues/tech-debt.yaml` for recurring technical issues — if the same system has caused multiple blocked items, create a tech-debt queue entry
|
|
439
|
+
8. Log to `logs/workflows/{date}-engineering-health.jsonl`
|
|
440
|
+
|
|
441
|
+
### Operating Rules
|
|
442
|
+
|
|
443
|
+
- Follow CLAUDE.md for all communication and approval rules
|
|
444
|
+
- This workflow runs BEFORE the Wednesday execution review — its dashboard feeds that review
|
|
445
|
+
- Don't send separate Slack notifications — the execution review will surface findings
|
|
446
|
+
- For repos you can't access (permissions, not cloned), note as "inaccessible" rather than "stale"
|
|
447
|
+
- Focus on strategic impact — a quiet hobby repo is fine; a quiet regulatory repo is a red flag
|
|
448
|
+
```
|
|
449
|
+
|
|
450
|
+
- [ ] **Step 2: Commit**
|
|
451
|
+
|
|
452
|
+
```bash
|
|
453
|
+
git add schedules/triggers/weekly-engineering-health.md
|
|
454
|
+
git commit -m "feat: add weekly engineering health trigger for repo monitoring"
|
|
455
|
+
```
|
|
456
|
+
|
|
457
|
+
---
|
|
458
|
+
|
|
459
|
+
## Task 4: Enhance Existing Triggers with Phase 2 Logic
|
|
460
|
+
|
|
461
|
+
**Files:**
|
|
462
|
+
|
|
463
|
+
- Modify: `schedules/triggers/weekly-hiring.md`
|
|
464
|
+
- Modify: `schedules/triggers/daily-evening-wrap.md`
|
|
465
|
+
- Modify: `schedules/triggers/weekly-strategic-memo.md`
|
|
466
|
+
- Modify: `schedules/triggers/weekly-execution.md`
|
|
467
|
+
- Modify: `schedules/triggers/inbox-processor.md`
|
|
468
|
+
- Modify: `schedules/triggers/daily-morning-brief.md`
|
|
469
|
+
|
|
470
|
+
- [ ] **Step 1: Enhance weekly hiring with org health and founder dependency**
|
|
471
|
+
|
|
472
|
+
Read `schedules/triggers/weekly-hiring.md`, then add after the existing hiring review steps (before the write/send steps):
|
|
473
|
+
|
|
474
|
+
```
|
|
475
|
+
8. **Org health assessment:**
|
|
476
|
+
- Count total roles filled vs open from `config/hiring.yaml`
|
|
477
|
+
- Identify roles open >30 days with no pipeline activity (stale)
|
|
478
|
+
- Identify roles tied to P1-P5 priorities that remain unfilled (critical_unfilled)
|
|
479
|
+
- Check for capability gaps: priorities that have no assigned talent or team
|
|
480
|
+
- Check for newly filled roles → create onboarding checklist items in `state/queues/action-stack.yaml` with 30/60/90 day milestones
|
|
481
|
+
|
|
482
|
+
9. **Founder dependency calculation:**
|
|
483
|
+
- Count queue items across all `state/queues/` where owner contains "mehran"
|
|
484
|
+
- Calculate dependency_percent = mehran_items / total_items * 100
|
|
485
|
+
- Determine trend vs last week
|
|
486
|
+
- If >60%, flag in hiring review as org design risk
|
|
487
|
+
|
|
488
|
+
10. Write org health dashboard to `state/dashboards/org-health.yaml`
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
Renumber subsequent steps.
|
|
492
|
+
|
|
493
|
+
- [ ] **Step 2: Enhance evening wrap with leadership accountability metrics**
|
|
494
|
+
|
|
495
|
+
Read `schedules/triggers/daily-evening-wrap.md`, then add after the decision index maintenance step:
|
|
496
|
+
|
|
497
|
+
```
|
|
498
|
+
13. **Leadership accountability metrics:**
|
|
499
|
+
- For each leader (mehran, hootan, bronwyn, nima, shayan):
|
|
500
|
+
- Scan all queues for items where they are the owner
|
|
501
|
+
- Count: total commitments, met on time, late, missed (overdue past SLA)
|
|
502
|
+
- Calculate average response time from item history (time between chase and response)
|
|
503
|
+
- Count chase events this week
|
|
504
|
+
- Count currently overdue items and SLA breaches
|
|
505
|
+
- Compare metrics to last week's values to determine trend (improving/stable/declining)
|
|
506
|
+
- Flag concerning patterns: 3+ weeks declining, >50% items overdue, >3 SLA breaches
|
|
507
|
+
- Write to `state/dashboards/leadership-accountability.yaml`
|
|
508
|
+
```
|
|
509
|
+
|
|
510
|
+
Renumber subsequent steps.
|
|
511
|
+
|
|
512
|
+
- [ ] **Step 3: Enhance strategic memo with leadership scorecard, relationships, and commercial health**
|
|
513
|
+
|
|
514
|
+
Read `schedules/triggers/weekly-strategic-memo.md`, then add after the strategy state update step:
|
|
515
|
+
|
|
516
|
+
```
|
|
517
|
+
10. **Leadership effectiveness scorecard:**
|
|
518
|
+
- Read `state/dashboards/leadership-accountability.yaml`
|
|
519
|
+
- For each leader: summarise commitments met/missed, response quality, trend
|
|
520
|
+
- Flag patterns: consistently missing deadlines, going silent, declining accountability
|
|
521
|
+
- Include Sophie's candid assessment and specific recommendations
|
|
522
|
+
- NOTE: This section is sensitive — send via DM to Mehran, not in any channel
|
|
523
|
+
|
|
524
|
+
11. **Relationship pipeline update:**
|
|
525
|
+
- Read `state/dashboards/relationship-pipeline.yaml`
|
|
526
|
+
- Review `memory/interactions/` for all external interactions this week
|
|
527
|
+
- Update relationship stages and warmth based on interaction recency
|
|
528
|
+
- Flag cooling relationships (no interaction >2 weeks for active relationships)
|
|
529
|
+
- Flag overdue next-actions on relationships
|
|
530
|
+
- Write updated pipeline to `state/dashboards/relationship-pipeline.yaml`
|
|
531
|
+
|
|
532
|
+
12. **Commercial position assessment:**
|
|
533
|
+
- Read market signals from `memory/precedents/market-signals/`
|
|
534
|
+
- Assess: ICP clarity, pipeline warmth, partner engagement, competitive positioning
|
|
535
|
+
- Synthesise into "Commercial Position" section in the memo
|
|
536
|
+
|
|
537
|
+
13. **Founder dependency flag:**
|
|
538
|
+
- Read `state/dashboards/org-health.yaml` founder_dependency section
|
|
539
|
+
- If threshold_breached (>60%), include prominent flag in memo with delegation recommendations
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
Update the synthesis step to include:
|
|
543
|
+
|
|
544
|
+
```
|
|
545
|
+
14. Synthesise a weekly strategic memo covering:
|
|
546
|
+
- Week in review: key accomplishments and setbacks
|
|
547
|
+
- Strategic position + scorecard
|
|
548
|
+
- Coherence check findings
|
|
549
|
+
- **Leadership effectiveness scorecard** (Mehran DM only)
|
|
550
|
+
- **Engineering health** from `state/dashboards/engineering-health.yaml`
|
|
551
|
+
- **Relationship pipeline health** (warming/cooling/overdue)
|
|
552
|
+
- **Commercial position** (ICP, pipeline, competitive)
|
|
553
|
+
- Emerging signals + cadence health
|
|
554
|
+
- **Founder dependency alert** (if >60%)
|
|
555
|
+
- Next week preview + recommendations
|
|
556
|
+
```
|
|
557
|
+
|
|
558
|
+
- [ ] **Step 4: Enhance execution review with engineering health and tech debt**
|
|
559
|
+
|
|
560
|
+
Read `schedules/triggers/weekly-execution.md`, then add after the blocker playbook matching step:
|
|
561
|
+
|
|
562
|
+
```
|
|
563
|
+
9. **Engineering health integration:**
|
|
564
|
+
- Read `state/dashboards/engineering-health.yaml` (generated earlier today by engineering health workflow)
|
|
565
|
+
- Highlight: stale repos linked to active priorities, low delivery confidence signals
|
|
566
|
+
- Cross-reference platform-blockers with engineering health — are blocked items in repos that are active or stale?
|
|
567
|
+
|
|
568
|
+
10. **Tech debt assessment:**
|
|
569
|
+
- Read `state/queues/tech-debt.yaml`
|
|
570
|
+
- If tech debt items are blocking priority milestones, escalate them in the review
|
|
571
|
+
- If the same system has caused >2 blocked items this month, create tech-debt item if not already tracked
|
|
572
|
+
```
|
|
573
|
+
|
|
574
|
+
Renumber subsequent steps.
|
|
575
|
+
|
|
576
|
+
- [ ] **Step 5: Enhance inbox processor with communication quality tracking**
|
|
577
|
+
|
|
578
|
+
Read `schedules/triggers/inbox-processor.md`, then add after the SLA assignment step:
|
|
579
|
+
|
|
580
|
+
```
|
|
581
|
+
i. **Communication quality tracking (for leadership messages):**
|
|
582
|
+
- If sender_privilege is `ceo` or `leadership`:
|
|
583
|
+
- Calculate response_latency: time since the message this is replying to (if it's a reply)
|
|
584
|
+
- Assess completeness: did the message address what was asked?
|
|
585
|
+
- Note follow_through: if they previously committed to something, did they reference progress?
|
|
586
|
+
- Update `memory/profiles/users/{sender}.yaml` accountability section with latest signals
|
|
587
|
+
```
|
|
588
|
+
|
|
589
|
+
Reletter subsequent steps.
|
|
590
|
+
|
|
591
|
+
- [ ] **Step 6: Enhance morning brief with Phase 2 references**
|
|
592
|
+
|
|
593
|
+
Read `schedules/triggers/daily-morning-brief.md`, then add after the strategy state step:
|
|
594
|
+
|
|
595
|
+
```
|
|
596
|
+
9. Read `state/dashboards/org-health.yaml` — note if founder dependency is high or critical roles are stale
|
|
597
|
+
10. Read `state/dashboards/engineering-health.yaml` — note if delivery confidence is low or priority repos are stale
|
|
598
|
+
11. Read `state/dashboards/relationship-pipeline.yaml` — note any cooling relationships or overdue actions
|
|
599
|
+
```
|
|
600
|
+
|
|
601
|
+
Renumber subsequent steps. Update the synthesis step to include:
|
|
602
|
+
|
|
603
|
+
```
|
|
604
|
+
- Org health alerts (founder dependency, stale critical roles) if flagged
|
|
605
|
+
- Engineering delivery confidence if low
|
|
606
|
+
- Relationship pipeline alerts if any cooling/overdue
|
|
607
|
+
```
|
|
608
|
+
|
|
609
|
+
- [ ] **Step 7: Commit all trigger enhancements**
|
|
610
|
+
|
|
611
|
+
```bash
|
|
612
|
+
git add schedules/triggers/
|
|
613
|
+
git commit -m "feat: enhance triggers with Phase 2 logic (org health, leadership, engineering, commercial)"
|
|
614
|
+
```
|
|
615
|
+
|
|
616
|
+
---
|
|
617
|
+
|
|
618
|
+
## Task 5: Engineering Health Launchd Daemon
|
|
619
|
+
|
|
620
|
+
**Files:**
|
|
621
|
+
|
|
622
|
+
- Create: `scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist`
|
|
623
|
+
|
|
624
|
+
- [ ] **Step 1: Create the plist**
|
|
625
|
+
|
|
626
|
+
`scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist`:
|
|
627
|
+
|
|
628
|
+
```xml
|
|
629
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
630
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
631
|
+
<plist version="1.0">
|
|
632
|
+
<dict>
|
|
633
|
+
<key>Label</key>
|
|
634
|
+
<string>ai.adaptic.sophie-weekly-engineering-health</string>
|
|
635
|
+
<key>ProgramArguments</key>
|
|
636
|
+
<array>
|
|
637
|
+
<string>/Users/sophie/sophie-ai/scripts/local-triggers/run-trigger.sh</string>
|
|
638
|
+
<string>weekly-engineering-health</string>
|
|
639
|
+
</array>
|
|
640
|
+
<key>StartCalendarInterval</key>
|
|
641
|
+
<dict>
|
|
642
|
+
<key>Weekday</key>
|
|
643
|
+
<integer>3</integer>
|
|
644
|
+
<key>Hour</key>
|
|
645
|
+
<integer>10</integer>
|
|
646
|
+
<key>Minute</key>
|
|
647
|
+
<integer>0</integer>
|
|
648
|
+
</dict>
|
|
649
|
+
<key>WorkingDirectory</key>
|
|
650
|
+
<string>/Users/sophie/sophie-ai</string>
|
|
651
|
+
<key>StandardOutPath</key>
|
|
652
|
+
<string>/Users/sophie/sophie-ai/logs/workflows/launchd-engineering-health-stdout.log</string>
|
|
653
|
+
<key>StandardErrorPath</key>
|
|
654
|
+
<string>/Users/sophie/sophie-ai/logs/workflows/launchd-engineering-health-stderr.log</string>
|
|
655
|
+
</dict>
|
|
656
|
+
</plist>
|
|
657
|
+
```
|
|
658
|
+
|
|
659
|
+
- [ ] **Step 2: Install the daemon**
|
|
660
|
+
|
|
661
|
+
```bash
|
|
662
|
+
cp scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist ~/Library/LaunchAgents/
|
|
663
|
+
launchctl load ~/Library/LaunchAgents/ai.adaptic.sophie-weekly-engineering-health.plist
|
|
664
|
+
```
|
|
665
|
+
|
|
666
|
+
- [ ] **Step 3: Commit**
|
|
667
|
+
|
|
668
|
+
```bash
|
|
669
|
+
git add scripts/local-triggers/plists/ai.adaptic.sophie-weekly-engineering-health.plist
|
|
670
|
+
git commit -m "feat: add launchd daemon for Wednesday engineering health check"
|
|
671
|
+
```
|
|
672
|
+
|
|
673
|
+
---
|
|
674
|
+
|
|
675
|
+
## Task 6: Update CLAUDE.md and Verify
|
|
676
|
+
|
|
677
|
+
**Files:**
|
|
678
|
+
|
|
679
|
+
- Modify: `CLAUDE.md`
|
|
680
|
+
|
|
681
|
+
- [ ] **Step 1: Add Phase 2 documentation to CLAUDE.md**
|
|
682
|
+
|
|
683
|
+
Add after the Control Tower 3 section and before "## Build & Test":
|
|
684
|
+
|
|
685
|
+
```markdown
|
|
686
|
+
### Control Tower 4: People, Hiring & Organisation
|
|
687
|
+
|
|
688
|
+
- **Org health dashboard**: `state/dashboards/org-health.yaml` tracks hiring pipeline, capability gaps, structural risks
|
|
689
|
+
- **Founder dependency tracker**: Weekly calculation of Mehran's item ownership %; flagged when >60%
|
|
690
|
+
- **Onboarding tracking**: New hires get 30/60/90-day milestone items in action-stack
|
|
691
|
+
|
|
692
|
+
### Control Tower 5: Culture, Standards & Leadership Behaviour
|
|
693
|
+
|
|
694
|
+
- **Leadership accountability dashboard**: `state/dashboards/leadership-accountability.yaml` tracks per-leader commitment follow-through
|
|
695
|
+
- **Metrics per leader**: commitments met/missed, response time, chase frequency, SLA breaches, trend
|
|
696
|
+
- **Weekly leadership scorecard**: Candid assessment in strategic memo (Mehran DM only)
|
|
697
|
+
- **Communication quality signals**: Inbox processor tracks response latency, completeness, follow-through for leadership
|
|
698
|
+
|
|
699
|
+
### Control Tower 6: Product, Platform & Engineering Oversight
|
|
700
|
+
|
|
701
|
+
- **Engineering health dashboard**: `state/dashboards/engineering-health.yaml` tracks per-repo activity, PRs, delivery confidence
|
|
702
|
+
- **Wednesday health check**: Engineering health trigger runs before execution review
|
|
703
|
+
- **Tech debt register**: `state/queues/tech-debt.yaml` tracks technical debt with strategic impact
|
|
704
|
+
- **Delivery confidence**: Derived from repo activity mapped to strategic priorities
|
|
705
|
+
|
|
706
|
+
### Control Tower 7: Commercial, Customers & Market
|
|
707
|
+
|
|
708
|
+
- **Relationship pipeline**: `state/dashboards/relationship-pipeline.yaml` tracks all strategic relationships with stage and warmth
|
|
709
|
+
- **Competitive intelligence feed**: Market signals captured in `memory/precedents/market-signals/`
|
|
710
|
+
- **Commercial position**: Weekly assessment of ICP clarity, pipeline, competitive positioning in strategic memo
|
|
711
|
+
```
|
|
712
|
+
|
|
713
|
+
- [ ] **Step 2: Verify all Phase 2 files**
|
|
714
|
+
|
|
715
|
+
```bash
|
|
716
|
+
echo "=== DASHBOARDS ===" && ls state/dashboards/org-health.yaml state/dashboards/leadership-accountability.yaml state/dashboards/engineering-health.yaml state/dashboards/relationship-pipeline.yaml && echo "=== TECH DEBT ===" && ls state/queues/tech-debt.yaml && echo "=== MARKET SIGNALS ===" && ls memory/precedents/market-signals/.gitkeep && echo "=== ENG TRIGGER ===" && ls schedules/triggers/weekly-engineering-health.md && echo "=== DAEMON ===" && launchctl list | grep engineering-health && echo "=== CLAUDE.MD ===" && grep "Control Tower 4\|Control Tower 5\|Control Tower 6\|Control Tower 7" CLAUDE.md
|
|
717
|
+
```
|
|
718
|
+
|
|
719
|
+
- [ ] **Step 3: Commit**
|
|
720
|
+
|
|
721
|
+
```bash
|
|
722
|
+
git add CLAUDE.md
|
|
723
|
+
git commit -m "feat: document Phase 2 domain control towers in CLAUDE.md"
|
|
724
|
+
```
|
|
725
|
+
|
|
726
|
+
---
|
|
727
|
+
|
|
728
|
+
## Summary
|
|
729
|
+
|
|
730
|
+
| Task | Component | Files | Commits |
|
|
731
|
+
| ---- | --------------------------------------- | --------------------- | ------- |
|
|
732
|
+
| 1 | Dashboards + tech debt + market signals | 6 new files | 1 |
|
|
733
|
+
| 2 | User profile accountability sections | 5 modified files | 1 |
|
|
734
|
+
| 3 | Engineering health trigger | 1 new MD file | 1 |
|
|
735
|
+
| 4 | Enhance 6 existing triggers | 6 modified files | 1 |
|
|
736
|
+
| 5 | Engineering health daemon | 1 new plist + install | 1 |
|
|
737
|
+
| 6 | CLAUDE.md + verification | 1 modified file | 1 |
|
|
738
|
+
|
|
739
|
+
**Total: 6 tasks, ~20 files (8 new + 12 modified), ~6 commits**
|