@spinabot/brigade 0.1.1 → 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/LICENSE +1 -1
- package/README.md +746 -93
- package/brigade.mjs +150 -73
- package/dist/agents/a2a-policy-canonicalize.d.ts +60 -0
- package/dist/agents/a2a-policy-canonicalize.d.ts.map +1 -0
- package/dist/agents/a2a-policy-canonicalize.js +103 -0
- package/dist/agents/a2a-policy-canonicalize.js.map +1 -0
- package/dist/agents/agent-event-bus.d.ts +221 -0
- package/dist/agents/agent-event-bus.d.ts.map +1 -0
- package/dist/agents/agent-event-bus.js +88 -0
- package/dist/agents/agent-event-bus.js.map +1 -0
- package/dist/agents/agent-events.d.ts +84 -0
- package/dist/agents/agent-events.d.ts.map +1 -0
- package/dist/agents/agent-events.js +309 -0
- package/dist/agents/agent-events.js.map +1 -0
- package/dist/agents/agent-events.types.d.ts +139 -0
- package/dist/agents/agent-events.types.d.ts.map +1 -0
- package/dist/agents/agent-events.types.js +27 -0
- package/dist/agents/agent-events.types.js.map +1 -0
- package/dist/agents/agent-loop.d.ts +145 -0
- package/dist/agents/agent-loop.d.ts.map +1 -0
- package/dist/agents/agent-loop.js +1938 -0
- package/dist/agents/agent-loop.js.map +1 -0
- package/dist/agents/agent-scope.d.ts +28 -0
- package/dist/agents/agent-scope.d.ts.map +1 -0
- package/dist/agents/agent-scope.js +39 -0
- package/dist/agents/agent-scope.js.map +1 -0
- package/dist/agents/approval-bridge.d.ts +139 -0
- package/dist/agents/approval-bridge.d.ts.map +1 -0
- package/dist/agents/approval-bridge.js +178 -0
- package/dist/agents/approval-bridge.js.map +1 -0
- package/dist/agents/carrow.d.ts +49 -0
- package/dist/agents/carrow.d.ts.map +1 -0
- package/dist/agents/carrow.js +57 -0
- package/dist/agents/carrow.js.map +1 -0
- package/dist/agents/channels/abort-triggers.d.ts +17 -0
- package/dist/agents/channels/abort-triggers.d.ts.map +1 -0
- package/dist/agents/channels/abort-triggers.js +52 -0
- package/dist/agents/channels/abort-triggers.js.map +1 -0
- package/dist/agents/channels/access-control/index.d.ts +5 -0
- package/dist/agents/channels/access-control/index.d.ts.map +1 -0
- package/dist/agents/channels/access-control/index.js +4 -0
- package/dist/agents/channels/access-control/index.js.map +1 -0
- package/dist/agents/channels/access-control/policy.d.ts +69 -0
- package/dist/agents/channels/access-control/policy.d.ts.map +1 -0
- package/dist/agents/channels/access-control/policy.js +123 -0
- package/dist/agents/channels/access-control/policy.js.map +1 -0
- package/dist/agents/channels/access-control/store.d.ts +86 -0
- package/dist/agents/channels/access-control/store.d.ts.map +1 -0
- package/dist/agents/channels/access-control/store.js +482 -0
- package/dist/agents/channels/access-control/store.js.map +1 -0
- package/dist/agents/channels/access-control/types.d.ts +52 -0
- package/dist/agents/channels/access-control/types.d.ts.map +1 -0
- package/dist/agents/channels/access-control/types.js +20 -0
- package/dist/agents/channels/access-control/types.js.map +1 -0
- package/dist/agents/channels/active-manager.d.ts +31 -0
- package/dist/agents/channels/active-manager.d.ts.map +1 -0
- package/dist/agents/channels/active-manager.js +41 -0
- package/dist/agents/channels/active-manager.js.map +1 -0
- package/dist/agents/channels/agent-switch-command.d.ts +53 -0
- package/dist/agents/channels/agent-switch-command.d.ts.map +1 -0
- package/dist/agents/channels/agent-switch-command.js +349 -0
- package/dist/agents/channels/agent-switch-command.js.map +1 -0
- package/dist/agents/channels/approval-router.d.ts +158 -0
- package/dist/agents/channels/approval-router.d.ts.map +1 -0
- package/dist/agents/channels/approval-router.js +446 -0
- package/dist/agents/channels/approval-router.js.map +1 -0
- package/dist/agents/channels/channel-entry-contract.d.ts +70 -0
- package/dist/agents/channels/channel-entry-contract.d.ts.map +1 -0
- package/dist/agents/channels/channel-entry-contract.js +48 -0
- package/dist/agents/channels/channel-entry-contract.js.map +1 -0
- package/dist/agents/channels/channel-plugin-manager.d.ts +86 -0
- package/dist/agents/channels/channel-plugin-manager.d.ts.map +1 -0
- package/dist/agents/channels/channel-plugin-manager.js +345 -0
- package/dist/agents/channels/channel-plugin-manager.js.map +1 -0
- package/dist/agents/channels/chat-type.d.ts +27 -0
- package/dist/agents/channels/chat-type.d.ts.map +1 -0
- package/dist/agents/channels/chat-type.js +33 -0
- package/dist/agents/channels/chat-type.js.map +1 -0
- package/dist/agents/channels/dedupe.d.ts +44 -0
- package/dist/agents/channels/dedupe.d.ts.map +1 -0
- package/dist/agents/channels/dedupe.js +80 -0
- package/dist/agents/channels/dedupe.js.map +1 -0
- package/dist/agents/channels/inbound-pipeline.d.ts +90 -0
- package/dist/agents/channels/inbound-pipeline.d.ts.map +1 -0
- package/dist/agents/channels/inbound-pipeline.js +721 -0
- package/dist/agents/channels/inbound-pipeline.js.map +1 -0
- package/dist/agents/channels/last-channel.d.ts +56 -0
- package/dist/agents/channels/last-channel.d.ts.map +1 -0
- package/dist/agents/channels/last-channel.js +65 -0
- package/dist/agents/channels/last-channel.js.map +1 -0
- package/dist/agents/channels/manager.d.ts +76 -0
- package/dist/agents/channels/manager.d.ts.map +1 -0
- package/dist/agents/channels/manager.js +132 -0
- package/dist/agents/channels/manager.js.map +1 -0
- package/dist/agents/channels/media-capture.d.ts +23 -0
- package/dist/agents/channels/media-capture.d.ts.map +1 -0
- package/dist/agents/channels/media-capture.js +40 -0
- package/dist/agents/channels/media-capture.js.map +1 -0
- package/dist/agents/channels/plugin-channel-manager-facade.d.ts +18 -0
- package/dist/agents/channels/plugin-channel-manager-facade.d.ts.map +1 -0
- package/dist/agents/channels/plugin-channel-manager-facade.js +52 -0
- package/dist/agents/channels/plugin-channel-manager-facade.js.map +1 -0
- package/dist/agents/channels/reply-sanitizer.d.ts +38 -0
- package/dist/agents/channels/reply-sanitizer.d.ts.map +1 -0
- package/dist/agents/channels/reply-sanitizer.js +94 -0
- package/dist/agents/channels/reply-sanitizer.js.map +1 -0
- package/dist/agents/channels/retryable-inbound.d.ts +31 -0
- package/dist/agents/channels/retryable-inbound.d.ts.map +1 -0
- package/dist/agents/channels/retryable-inbound.js +37 -0
- package/dist/agents/channels/retryable-inbound.js.map +1 -0
- package/dist/agents/channels/types.adapters.d.ts +399 -0
- package/dist/agents/channels/types.adapters.d.ts.map +1 -0
- package/dist/agents/channels/types.adapters.js +33 -0
- package/dist/agents/channels/types.adapters.js.map +1 -0
- package/dist/agents/channels/types.core.d.ts +134 -0
- package/dist/agents/channels/types.core.d.ts.map +1 -0
- package/dist/agents/channels/types.core.js +32 -0
- package/dist/agents/channels/types.core.js.map +1 -0
- package/dist/agents/channels/types.plugin.d.ts +78 -0
- package/dist/agents/channels/types.plugin.d.ts.map +1 -0
- package/dist/agents/channels/types.plugin.js +30 -0
- package/dist/agents/channels/types.plugin.js.map +1 -0
- package/dist/agents/channels/whatsapp/account-config.d.ts +50 -0
- package/dist/agents/channels/whatsapp/account-config.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/account-config.js +105 -0
- package/dist/agents/channels/whatsapp/account-config.js.map +1 -0
- package/dist/agents/channels/whatsapp/adapter.d.ts +22 -0
- package/dist/agents/channels/whatsapp/adapter.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/adapter.js +270 -0
- package/dist/agents/channels/whatsapp/adapter.js.map +1 -0
- package/dist/agents/channels/whatsapp/chunk.d.ts +26 -0
- package/dist/agents/channels/whatsapp/chunk.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/chunk.js +123 -0
- package/dist/agents/channels/whatsapp/chunk.js.map +1 -0
- package/dist/agents/channels/whatsapp/connection.d.ts +249 -0
- package/dist/agents/channels/whatsapp/connection.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/connection.js +1628 -0
- package/dist/agents/channels/whatsapp/connection.js.map +1 -0
- package/dist/agents/channels/whatsapp/convex-auth-state.d.ts +34 -0
- package/dist/agents/channels/whatsapp/convex-auth-state.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/convex-auth-state.js +168 -0
- package/dist/agents/channels/whatsapp/convex-auth-state.js.map +1 -0
- package/dist/agents/channels/whatsapp/format.d.ts +15 -0
- package/dist/agents/channels/whatsapp/format.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/format.js +66 -0
- package/dist/agents/channels/whatsapp/format.js.map +1 -0
- package/dist/agents/channels/whatsapp/inbound-extras.d.ts +30 -0
- package/dist/agents/channels/whatsapp/inbound-extras.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/inbound-extras.js +146 -0
- package/dist/agents/channels/whatsapp/inbound-extras.js.map +1 -0
- package/dist/agents/channels/whatsapp/index.d.ts +7 -0
- package/dist/agents/channels/whatsapp/index.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/index.js +7 -0
- package/dist/agents/channels/whatsapp/index.js.map +1 -0
- package/dist/agents/channels/whatsapp/media.d.ts +47 -0
- package/dist/agents/channels/whatsapp/media.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/media.js +192 -0
- package/dist/agents/channels/whatsapp/media.js.map +1 -0
- package/dist/agents/channels/whatsapp/module.d.ts +10 -0
- package/dist/agents/channels/whatsapp/module.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/module.js +17 -0
- package/dist/agents/channels/whatsapp/module.js.map +1 -0
- package/dist/agents/channels/whatsapp/plugin.d.ts +60 -0
- package/dist/agents/channels/whatsapp/plugin.d.ts.map +1 -0
- package/dist/agents/channels/whatsapp/plugin.js +238 -0
- package/dist/agents/channels/whatsapp/plugin.js.map +1 -0
- package/dist/agents/cmd-ism-guard.d.ts +47 -0
- package/dist/agents/cmd-ism-guard.d.ts.map +1 -0
- package/dist/agents/cmd-ism-guard.js +100 -0
- package/dist/agents/cmd-ism-guard.js.map +1 -0
- package/dist/agents/config-write-guard.d.ts +25 -0
- package/dist/agents/config-write-guard.d.ts.map +1 -0
- package/dist/agents/config-write-guard.js +95 -0
- package/dist/agents/config-write-guard.js.map +1 -0
- package/dist/agents/content-quality-retry.d.ts +66 -0
- package/dist/agents/content-quality-retry.d.ts.map +1 -0
- package/dist/agents/content-quality-retry.js +140 -0
- package/dist/agents/content-quality-retry.js.map +1 -0
- package/dist/agents/error-classifier.d.ts +89 -0
- package/dist/agents/error-classifier.d.ts.map +1 -0
- package/dist/agents/error-classifier.js +630 -0
- package/dist/agents/error-classifier.js.map +1 -0
- package/dist/agents/exec-gate.d.ts +113 -0
- package/dist/agents/exec-gate.d.ts.map +1 -0
- package/dist/agents/exec-gate.js +335 -0
- package/dist/agents/exec-gate.js.map +1 -0
- package/dist/agents/exec-session-allow.d.ts +30 -0
- package/dist/agents/exec-session-allow.d.ts.map +1 -0
- package/dist/agents/exec-session-allow.js +50 -0
- package/dist/agents/exec-session-allow.js.map +1 -0
- package/dist/agents/extensions/active-registry.d.ts +4 -0
- package/dist/agents/extensions/active-registry.d.ts.map +1 -0
- package/dist/agents/extensions/active-registry.js +18 -0
- package/dist/agents/extensions/active-registry.js.map +1 -0
- package/dist/agents/extensions/discovery.d.ts +84 -0
- package/dist/agents/extensions/discovery.d.ts.map +1 -0
- package/dist/agents/extensions/discovery.js +249 -0
- package/dist/agents/extensions/discovery.js.map +1 -0
- package/dist/agents/extensions/hook-runner.d.ts +67 -0
- package/dist/agents/extensions/hook-runner.d.ts.map +1 -0
- package/dist/agents/extensions/hook-runner.js +155 -0
- package/dist/agents/extensions/hook-runner.js.map +1 -0
- package/dist/agents/extensions/index.d.ts +15 -0
- package/dist/agents/extensions/index.d.ts.map +1 -0
- package/dist/agents/extensions/index.js +14 -0
- package/dist/agents/extensions/index.js.map +1 -0
- package/dist/agents/extensions/loader.d.ts +38 -0
- package/dist/agents/extensions/loader.d.ts.map +1 -0
- package/dist/agents/extensions/loader.js +142 -0
- package/dist/agents/extensions/loader.js.map +1 -0
- package/dist/agents/extensions/modules/arxiv.d.ts +28 -0
- package/dist/agents/extensions/modules/arxiv.d.ts.map +1 -0
- package/dist/agents/extensions/modules/arxiv.js +145 -0
- package/dist/agents/extensions/modules/arxiv.js.map +1 -0
- package/dist/agents/extensions/modules/brave.d.ts +28 -0
- package/dist/agents/extensions/modules/brave.d.ts.map +1 -0
- package/dist/agents/extensions/modules/brave.js +489 -0
- package/dist/agents/extensions/modules/brave.js.map +1 -0
- package/dist/agents/extensions/modules/duckduckgo.d.ts +27 -0
- package/dist/agents/extensions/modules/duckduckgo.d.ts.map +1 -0
- package/dist/agents/extensions/modules/duckduckgo.js +263 -0
- package/dist/agents/extensions/modules/duckduckgo.js.map +1 -0
- package/dist/agents/extensions/modules/exa.d.ts +19 -0
- package/dist/agents/extensions/modules/exa.d.ts.map +1 -0
- package/dist/agents/extensions/modules/exa.js +208 -0
- package/dist/agents/extensions/modules/exa.js.map +1 -0
- package/dist/agents/extensions/modules/firecrawl.d.ts +51 -0
- package/dist/agents/extensions/modules/firecrawl.d.ts.map +1 -0
- package/dist/agents/extensions/modules/firecrawl.js +280 -0
- package/dist/agents/extensions/modules/firecrawl.js.map +1 -0
- package/dist/agents/extensions/modules/github-search.d.ts +29 -0
- package/dist/agents/extensions/modules/github-search.d.ts.map +1 -0
- package/dist/agents/extensions/modules/github-search.js +197 -0
- package/dist/agents/extensions/modules/github-search.js.map +1 -0
- package/dist/agents/extensions/modules/hackernews.d.ts +17 -0
- package/dist/agents/extensions/modules/hackernews.d.ts.map +1 -0
- package/dist/agents/extensions/modules/hackernews.js +144 -0
- package/dist/agents/extensions/modules/hackernews.js.map +1 -0
- package/dist/agents/extensions/modules/index.d.ts +11 -0
- package/dist/agents/extensions/modules/index.d.ts.map +1 -0
- package/dist/agents/extensions/modules/index.js +64 -0
- package/dist/agents/extensions/modules/index.js.map +1 -0
- package/dist/agents/extensions/modules/npm-search.d.ts +15 -0
- package/dist/agents/extensions/modules/npm-search.d.ts.map +1 -0
- package/dist/agents/extensions/modules/npm-search.js +126 -0
- package/dist/agents/extensions/modules/npm-search.js.map +1 -0
- package/dist/agents/extensions/modules/ollama-search.d.ts +30 -0
- package/dist/agents/extensions/modules/ollama-search.d.ts.map +1 -0
- package/dist/agents/extensions/modules/ollama-search.js +171 -0
- package/dist/agents/extensions/modules/ollama-search.js.map +1 -0
- package/dist/agents/extensions/modules/perplexity.d.ts +19 -0
- package/dist/agents/extensions/modules/perplexity.d.ts.map +1 -0
- package/dist/agents/extensions/modules/perplexity.js +358 -0
- package/dist/agents/extensions/modules/perplexity.js.map +1 -0
- package/dist/agents/extensions/modules/searxng.d.ts +43 -0
- package/dist/agents/extensions/modules/searxng.d.ts.map +1 -0
- package/dist/agents/extensions/modules/searxng.js +191 -0
- package/dist/agents/extensions/modules/searxng.js.map +1 -0
- package/dist/agents/extensions/modules/tavily.d.ts +71 -0
- package/dist/agents/extensions/modules/tavily.d.ts.map +1 -0
- package/dist/agents/extensions/modules/tavily.js +330 -0
- package/dist/agents/extensions/modules/tavily.js.map +1 -0
- package/dist/agents/extensions/modules/web-provider-helpers.d.ts +89 -0
- package/dist/agents/extensions/modules/web-provider-helpers.d.ts.map +1 -0
- package/dist/agents/extensions/modules/web-provider-helpers.js +146 -0
- package/dist/agents/extensions/modules/web-provider-helpers.js.map +1 -0
- package/dist/agents/extensions/modules/web-search-filters.d.ts +62 -0
- package/dist/agents/extensions/modules/web-search-filters.d.ts.map +1 -0
- package/dist/agents/extensions/modules/web-search-filters.js +179 -0
- package/dist/agents/extensions/modules/web-search-filters.js.map +1 -0
- package/dist/agents/extensions/modules/wikipedia.d.ts +16 -0
- package/dist/agents/extensions/modules/wikipedia.d.ts.map +1 -0
- package/dist/agents/extensions/modules/wikipedia.js +138 -0
- package/dist/agents/extensions/modules/wikipedia.js.map +1 -0
- package/dist/agents/extensions/registry-cache.d.ts +74 -0
- package/dist/agents/extensions/registry-cache.d.ts.map +1 -0
- package/dist/agents/extensions/registry-cache.js +117 -0
- package/dist/agents/extensions/registry-cache.js.map +1 -0
- package/dist/agents/extensions/registry.d.ts +184 -0
- package/dist/agents/extensions/registry.d.ts.map +1 -0
- package/dist/agents/extensions/registry.js +512 -0
- package/dist/agents/extensions/registry.js.map +1 -0
- package/dist/agents/extensions/types.d.ts +1195 -0
- package/dist/agents/extensions/types.d.ts.map +1 -0
- package/dist/agents/extensions/types.js +28 -0
- package/dist/agents/extensions/types.js.map +1 -0
- package/dist/agents/gateway-call.d.ts +171 -0
- package/dist/agents/gateway-call.d.ts.map +1 -0
- package/dist/agents/gateway-call.js +74 -0
- package/dist/agents/gateway-call.js.map +1 -0
- package/dist/agents/heartbeat-runner.d.ts +100 -0
- package/dist/agents/heartbeat-runner.d.ts.map +1 -0
- package/dist/agents/heartbeat-runner.js +268 -0
- package/dist/agents/heartbeat-runner.js.map +1 -0
- package/dist/agents/heartbeat-scheduler.d.ts +56 -0
- package/dist/agents/heartbeat-scheduler.d.ts.map +1 -0
- package/dist/agents/heartbeat-scheduler.js +366 -0
- package/dist/agents/heartbeat-scheduler.js.map +1 -0
- package/dist/agents/heartbeat-wake.d.ts +99 -0
- package/dist/agents/heartbeat-wake.d.ts.map +1 -0
- package/dist/agents/heartbeat-wake.js +304 -0
- package/dist/agents/heartbeat-wake.js.map +1 -0
- package/dist/agents/identity-file.d.ts +26 -0
- package/dist/agents/identity-file.d.ts.map +1 -0
- package/dist/agents/identity-file.js +86 -0
- package/dist/agents/identity-file.js.map +1 -0
- package/dist/agents/identity-links.d.ts +44 -0
- package/dist/agents/identity-links.d.ts.map +1 -0
- package/dist/agents/identity-links.js +51 -0
- package/dist/agents/identity-links.js.map +1 -0
- package/dist/agents/loop/autonomous-agent.d.ts +55 -0
- package/dist/agents/loop/autonomous-agent.d.ts.map +1 -0
- package/dist/agents/loop/autonomous-agent.js +91 -0
- package/dist/agents/loop/autonomous-agent.js.map +1 -0
- package/dist/agents/loop/loop-guards.d.ts +95 -0
- package/dist/agents/loop/loop-guards.d.ts.map +1 -0
- package/dist/agents/loop/loop-guards.js +169 -0
- package/dist/agents/loop/loop-guards.js.map +1 -0
- package/dist/agents/loop/loop-runner.d.ts +72 -0
- package/dist/agents/loop/loop-runner.d.ts.map +1 -0
- package/dist/agents/loop/loop-runner.js +114 -0
- package/dist/agents/loop/loop-runner.js.map +1 -0
- package/dist/agents/memory/auto-recall.d.ts +69 -0
- package/dist/agents/memory/auto-recall.d.ts.map +1 -0
- package/dist/agents/memory/auto-recall.js +147 -0
- package/dist/agents/memory/auto-recall.js.map +1 -0
- package/dist/agents/memory/behavior-review.d.ts +68 -0
- package/dist/agents/memory/behavior-review.d.ts.map +1 -0
- package/dist/agents/memory/behavior-review.js +131 -0
- package/dist/agents/memory/behavior-review.js.map +1 -0
- package/dist/agents/memory/consolidate.d.ts +62 -0
- package/dist/agents/memory/consolidate.d.ts.map +1 -0
- package/dist/agents/memory/consolidate.js +275 -0
- package/dist/agents/memory/consolidate.js.map +1 -0
- package/dist/agents/memory/contradiction.d.ts +44 -0
- package/dist/agents/memory/contradiction.d.ts.map +1 -0
- package/dist/agents/memory/contradiction.js +86 -0
- package/dist/agents/memory/contradiction.js.map +1 -0
- package/dist/agents/memory/curator.d.ts +22 -0
- package/dist/agents/memory/curator.d.ts.map +1 -0
- package/dist/agents/memory/curator.js +52 -0
- package/dist/agents/memory/curator.js.map +1 -0
- package/dist/agents/memory/decay.d.ts +32 -0
- package/dist/agents/memory/decay.d.ts.map +1 -0
- package/dist/agents/memory/decay.js +86 -0
- package/dist/agents/memory/decay.js.map +1 -0
- package/dist/agents/memory/dream.d.ts +52 -0
- package/dist/agents/memory/dream.d.ts.map +1 -0
- package/dist/agents/memory/dream.js +192 -0
- package/dist/agents/memory/dream.js.map +1 -0
- package/dist/agents/memory/embedder-providers.d.ts +114 -0
- package/dist/agents/memory/embedder-providers.d.ts.map +1 -0
- package/dist/agents/memory/embedder-providers.js +213 -0
- package/dist/agents/memory/embedder-providers.js.map +1 -0
- package/dist/agents/memory/embedder.d.ts +84 -0
- package/dist/agents/memory/embedder.d.ts.map +1 -0
- package/dist/agents/memory/embedder.js +218 -0
- package/dist/agents/memory/embedder.js.map +1 -0
- package/dist/agents/memory/eval/asr-bench.d.ts +33 -0
- package/dist/agents/memory/eval/asr-bench.d.ts.map +1 -0
- package/dist/agents/memory/eval/asr-bench.js +129 -0
- package/dist/agents/memory/eval/asr-bench.js.map +1 -0
- package/dist/agents/memory/eval/capabilities.d.ts +97 -0
- package/dist/agents/memory/eval/capabilities.d.ts.map +1 -0
- package/dist/agents/memory/eval/capabilities.js +210 -0
- package/dist/agents/memory/eval/capabilities.js.map +1 -0
- package/dist/agents/memory/eval/gold-export.d.ts +44 -0
- package/dist/agents/memory/eval/gold-export.d.ts.map +1 -0
- package/dist/agents/memory/eval/gold-export.js +85 -0
- package/dist/agents/memory/eval/gold-export.js.map +1 -0
- package/dist/agents/memory/eval/gold-hard.d.ts +35 -0
- package/dist/agents/memory/eval/gold-hard.d.ts.map +1 -0
- package/dist/agents/memory/eval/gold-hard.js +113 -0
- package/dist/agents/memory/eval/gold-hard.js.map +1 -0
- package/dist/agents/memory/eval/gold-rich.d.ts +33 -0
- package/dist/agents/memory/eval/gold-rich.d.ts.map +1 -0
- package/dist/agents/memory/eval/gold-rich.js +82 -0
- package/dist/agents/memory/eval/gold-rich.js.map +1 -0
- package/dist/agents/memory/eval/gold-synthetic.d.ts +19 -0
- package/dist/agents/memory/eval/gold-synthetic.d.ts.map +1 -0
- package/dist/agents/memory/eval/gold-synthetic.js +65 -0
- package/dist/agents/memory/eval/gold-synthetic.js.map +1 -0
- package/dist/agents/memory/eval/gold.d.ts +73 -0
- package/dist/agents/memory/eval/gold.d.ts.map +1 -0
- package/dist/agents/memory/eval/gold.js +174 -0
- package/dist/agents/memory/eval/gold.js.map +1 -0
- package/dist/agents/memory/eval/harness.d.ts +110 -0
- package/dist/agents/memory/eval/harness.d.ts.map +1 -0
- package/dist/agents/memory/eval/harness.js +123 -0
- package/dist/agents/memory/eval/harness.js.map +1 -0
- package/dist/agents/memory/eval/metrics.d.ts +71 -0
- package/dist/agents/memory/eval/metrics.d.ts.map +1 -0
- package/dist/agents/memory/eval/metrics.js +169 -0
- package/dist/agents/memory/eval/metrics.js.map +1 -0
- package/dist/agents/memory/event-log.d.ts +52 -0
- package/dist/agents/memory/event-log.d.ts.map +1 -0
- package/dist/agents/memory/event-log.js +65 -0
- package/dist/agents/memory/event-log.js.map +1 -0
- package/dist/agents/memory/extract.d.ts +155 -0
- package/dist/agents/memory/extract.d.ts.map +1 -0
- package/dist/agents/memory/extract.js +571 -0
- package/dist/agents/memory/extract.js.map +1 -0
- package/dist/agents/memory/governance.d.ts +45 -0
- package/dist/agents/memory/governance.d.ts.map +1 -0
- package/dist/agents/memory/governance.js +113 -0
- package/dist/agents/memory/governance.js.map +1 -0
- package/dist/agents/memory/graph-export.d.ts +59 -0
- package/dist/agents/memory/graph-export.d.ts.map +1 -0
- package/dist/agents/memory/graph-export.js +181 -0
- package/dist/agents/memory/graph-export.js.map +1 -0
- package/dist/agents/memory/graph-recall.d.ts +42 -0
- package/dist/agents/memory/graph-recall.d.ts.map +1 -0
- package/dist/agents/memory/graph-recall.js +165 -0
- package/dist/agents/memory/graph-recall.js.map +1 -0
- package/dist/agents/memory/graph.d.ts +92 -0
- package/dist/agents/memory/graph.d.ts.map +1 -0
- package/dist/agents/memory/graph.js +266 -0
- package/dist/agents/memory/graph.js.map +1 -0
- package/dist/agents/memory/host-ports.d.ts +27 -0
- package/dist/agents/memory/host-ports.d.ts.map +1 -0
- package/dist/agents/memory/host-ports.js +31 -0
- package/dist/agents/memory/host-ports.js.map +1 -0
- package/dist/agents/memory/hybrid.d.ts +46 -0
- package/dist/agents/memory/hybrid.d.ts.map +1 -0
- package/dist/agents/memory/hybrid.js +184 -0
- package/dist/agents/memory/hybrid.js.map +1 -0
- package/dist/agents/memory/index.d.ts +13 -0
- package/dist/agents/memory/index.d.ts.map +1 -0
- package/dist/agents/memory/index.js +13 -0
- package/dist/agents/memory/index.js.map +1 -0
- package/dist/agents/memory/json-scan.d.ts +14 -0
- package/dist/agents/memory/json-scan.d.ts.map +1 -0
- package/dist/agents/memory/json-scan.js +47 -0
- package/dist/agents/memory/json-scan.js.map +1 -0
- package/dist/agents/memory/links.d.ts +92 -0
- package/dist/agents/memory/links.d.ts.map +1 -0
- package/dist/agents/memory/links.js +140 -0
- package/dist/agents/memory/links.js.map +1 -0
- package/dist/agents/memory/maintenance.d.ts +18 -0
- package/dist/agents/memory/maintenance.d.ts.map +1 -0
- package/dist/agents/memory/maintenance.js +66 -0
- package/dist/agents/memory/maintenance.js.map +1 -0
- package/dist/agents/memory/memory-mcp-server.d.ts +39 -0
- package/dist/agents/memory/memory-mcp-server.d.ts.map +1 -0
- package/dist/agents/memory/memory-mcp-server.js +122 -0
- package/dist/agents/memory/memory-mcp-server.js.map +1 -0
- package/dist/agents/memory/memory-mcp.d.ts +34 -0
- package/dist/agents/memory/memory-mcp.d.ts.map +1 -0
- package/dist/agents/memory/memory-mcp.js +130 -0
- package/dist/agents/memory/memory-mcp.js.map +1 -0
- package/dist/agents/memory/plugin-runtime.d.ts +133 -0
- package/dist/agents/memory/plugin-runtime.d.ts.map +1 -0
- package/dist/agents/memory/plugin-runtime.js +149 -0
- package/dist/agents/memory/plugin-runtime.js.map +1 -0
- package/dist/agents/memory/query.d.ts +50 -0
- package/dist/agents/memory/query.d.ts.map +1 -0
- package/dist/agents/memory/query.js +94 -0
- package/dist/agents/memory/query.js.map +1 -0
- package/dist/agents/memory/records.d.ts +617 -0
- package/dist/agents/memory/records.d.ts.map +1 -0
- package/dist/agents/memory/records.js +1327 -0
- package/dist/agents/memory/records.js.map +1 -0
- package/dist/agents/memory/reembed.d.ts +42 -0
- package/dist/agents/memory/reembed.d.ts.map +1 -0
- package/dist/agents/memory/reembed.js +60 -0
- package/dist/agents/memory/reembed.js.map +1 -0
- package/dist/agents/memory/relationship-extract.d.ts +259 -0
- package/dist/agents/memory/relationship-extract.d.ts.map +1 -0
- package/dist/agents/memory/relationship-extract.js +454 -0
- package/dist/agents/memory/relationship-extract.js.map +1 -0
- package/dist/agents/memory/rerank.d.ts +37 -0
- package/dist/agents/memory/rerank.d.ts.map +1 -0
- package/dist/agents/memory/rerank.js +43 -0
- package/dist/agents/memory/rerank.js.map +1 -0
- package/dist/agents/memory/scoring.d.ts +85 -0
- package/dist/agents/memory/scoring.d.ts.map +1 -0
- package/dist/agents/memory/scoring.js +139 -0
- package/dist/agents/memory/scoring.js.map +1 -0
- package/dist/agents/memory/self-improve.d.ts +56 -0
- package/dist/agents/memory/self-improve.d.ts.map +1 -0
- package/dist/agents/memory/self-improve.js +98 -0
- package/dist/agents/memory/self-improve.js.map +1 -0
- package/dist/agents/memory/self-review.d.ts +68 -0
- package/dist/agents/memory/self-review.d.ts.map +1 -0
- package/dist/agents/memory/self-review.js +109 -0
- package/dist/agents/memory/self-review.js.map +1 -0
- package/dist/agents/memory/storage.d.ts +156 -0
- package/dist/agents/memory/storage.d.ts.map +1 -0
- package/dist/agents/memory/storage.js +359 -0
- package/dist/agents/memory/storage.js.map +1 -0
- package/dist/agents/memory/tideline.d.ts +203 -0
- package/dist/agents/memory/tideline.d.ts.map +1 -0
- package/dist/agents/memory/tideline.js +189 -0
- package/dist/agents/memory/tideline.js.map +1 -0
- package/dist/agents/memory/vault.d.ts +142 -0
- package/dist/agents/memory/vault.d.ts.map +1 -0
- package/dist/agents/memory/vault.js +787 -0
- package/dist/agents/memory/vault.js.map +1 -0
- package/dist/agents/memory/write-gate.d.ts +76 -0
- package/dist/agents/memory/write-gate.d.ts.map +1 -0
- package/dist/agents/memory/write-gate.js +140 -0
- package/dist/agents/memory/write-gate.js.map +1 -0
- package/dist/agents/mid-turn-switch.d.ts +25 -0
- package/dist/agents/mid-turn-switch.d.ts.map +1 -0
- package/dist/agents/mid-turn-switch.js +103 -0
- package/dist/agents/mid-turn-switch.js.map +1 -0
- package/dist/agents/model-fallback.d.ts +50 -0
- package/dist/agents/model-fallback.d.ts.map +1 -0
- package/dist/agents/model-fallback.js +226 -0
- package/dist/agents/model-fallback.js.map +1 -0
- package/dist/agents/model-resolution.d.ts +38 -0
- package/dist/agents/model-resolution.d.ts.map +1 -0
- package/dist/agents/model-resolution.js +155 -0
- package/dist/agents/model-resolution.js.map +1 -0
- package/dist/agents/org/a2a-adapter.d.ts +49 -0
- package/dist/agents/org/a2a-adapter.d.ts.map +1 -0
- package/dist/agents/org/a2a-adapter.js +92 -0
- package/dist/agents/org/a2a-adapter.js.map +1 -0
- package/dist/agents/org/assets/mascots/README.md +34 -0
- package/dist/agents/org/assets/mascots/Untitled-1.png +0 -0
- package/dist/agents/org/assets/mascots/brigade_biceps.png +0 -0
- package/dist/agents/org/audit-log.d.ts +22 -0
- package/dist/agents/org/audit-log.d.ts.map +1 -0
- package/dist/agents/org/audit-log.js +37 -0
- package/dist/agents/org/audit-log.js.map +1 -0
- package/dist/agents/org/auto-derive.d.ts +22 -0
- package/dist/agents/org/auto-derive.d.ts.map +1 -0
- package/dist/agents/org/auto-derive.js +66 -0
- package/dist/agents/org/auto-derive.js.map +1 -0
- package/dist/agents/org/delivery-kind.d.ts +89 -0
- package/dist/agents/org/delivery-kind.d.ts.map +1 -0
- package/dist/agents/org/delivery-kind.js +149 -0
- package/dist/agents/org/delivery-kind.js.map +1 -0
- package/dist/agents/org/derive-graph.d.ts +34 -0
- package/dist/agents/org/derive-graph.d.ts.map +1 -0
- package/dist/agents/org/derive-graph.js +266 -0
- package/dist/agents/org/derive-graph.js.map +1 -0
- package/dist/agents/org/lints.d.ts +21 -0
- package/dist/agents/org/lints.d.ts.map +1 -0
- package/dist/agents/org/lints.js +133 -0
- package/dist/agents/org/lints.js.map +1 -0
- package/dist/agents/org/pride-html.d.ts +61 -0
- package/dist/agents/org/pride-html.d.ts.map +1 -0
- package/dist/agents/org/pride-html.js +565 -0
- package/dist/agents/org/pride-html.js.map +1 -0
- package/dist/agents/org/pride-image.d.ts +101 -0
- package/dist/agents/org/pride-image.d.ts.map +1 -0
- package/dist/agents/org/pride-image.js +210 -0
- package/dist/agents/org/pride-image.js.map +1 -0
- package/dist/agents/org/pride-taunts.d.ts +47 -0
- package/dist/agents/org/pride-taunts.d.ts.map +1 -0
- package/dist/agents/org/pride-taunts.js +411 -0
- package/dist/agents/org/pride-taunts.js.map +1 -0
- package/dist/agents/org/pride-template.d.ts +272 -0
- package/dist/agents/org/pride-template.d.ts.map +1 -0
- package/dist/agents/org/pride-template.js +892 -0
- package/dist/agents/org/pride-template.js.map +1 -0
- package/dist/agents/org/pride-themes.d.ts +80 -0
- package/dist/agents/org/pride-themes.d.ts.map +1 -0
- package/dist/agents/org/pride-themes.js +7596 -0
- package/dist/agents/org/pride-themes.js.map +1 -0
- package/dist/agents/org/structured-errors.d.ts +47 -0
- package/dist/agents/org/structured-errors.d.ts.map +1 -0
- package/dist/agents/org/structured-errors.js +97 -0
- package/dist/agents/org/structured-errors.js.map +1 -0
- package/dist/agents/org/types.d.ts +139 -0
- package/dist/agents/org/types.d.ts.map +1 -0
- package/dist/agents/org/types.js +43 -0
- package/dist/agents/org/types.js.map +1 -0
- package/dist/agents/org/validate.d.ts +36 -0
- package/dist/agents/org/validate.d.ts.map +1 -0
- package/dist/agents/org/validate.js +135 -0
- package/dist/agents/org/validate.js.map +1 -0
- package/dist/agents/path-write-guard.d.ts +82 -0
- package/dist/agents/path-write-guard.d.ts.map +1 -0
- package/dist/agents/path-write-guard.js +722 -0
- package/dist/agents/path-write-guard.js.map +1 -0
- package/dist/agents/payload-mutators.d.ts +175 -0
- package/dist/agents/payload-mutators.d.ts.map +1 -0
- package/dist/agents/payload-mutators.js +994 -0
- package/dist/agents/payload-mutators.js.map +1 -0
- package/dist/agents/pending-system-events.d.ts +76 -0
- package/dist/agents/pending-system-events.d.ts.map +1 -0
- package/dist/agents/pending-system-events.js +115 -0
- package/dist/agents/pending-system-events.js.map +1 -0
- package/dist/agents/provider-attribution.d.ts +19 -0
- package/dist/agents/provider-attribution.d.ts.map +1 -0
- package/dist/agents/provider-attribution.js +62 -0
- package/dist/agents/provider-attribution.js.map +1 -0
- package/dist/agents/quality/slop-detector.d.ts +40 -0
- package/dist/agents/quality/slop-detector.d.ts.map +1 -0
- package/dist/agents/quality/slop-detector.js +108 -0
- package/dist/agents/quality/slop-detector.js.map +1 -0
- package/dist/agents/quality/slop-index.d.ts +27 -0
- package/dist/agents/quality/slop-index.d.ts.map +1 -0
- package/dist/agents/quality/slop-index.js +124 -0
- package/dist/agents/quality/slop-index.js.map +1 -0
- package/dist/agents/retry-policy.d.ts +38 -0
- package/dist/agents/retry-policy.d.ts.map +1 -0
- package/dist/agents/retry-policy.js +276 -0
- package/dist/agents/retry-policy.js.map +1 -0
- package/dist/agents/routing/account-id.d.ts +43 -0
- package/dist/agents/routing/account-id.d.ts.map +1 -0
- package/dist/agents/routing/account-id.js +103 -0
- package/dist/agents/routing/account-id.js.map +1 -0
- package/dist/agents/routing/bindings.d.ts +20 -0
- package/dist/agents/routing/bindings.d.ts.map +1 -0
- package/dist/agents/routing/bindings.js +22 -0
- package/dist/agents/routing/bindings.js.map +1 -0
- package/dist/agents/routing/dm-scope-warning.d.ts +37 -0
- package/dist/agents/routing/dm-scope-warning.d.ts.map +1 -0
- package/dist/agents/routing/dm-scope-warning.js +110 -0
- package/dist/agents/routing/dm-scope-warning.js.map +1 -0
- package/dist/agents/routing/identity-links.d.ts +45 -0
- package/dist/agents/routing/identity-links.d.ts.map +1 -0
- package/dist/agents/routing/identity-links.js +85 -0
- package/dist/agents/routing/identity-links.js.map +1 -0
- package/dist/agents/routing/resolve-route.d.ts +91 -0
- package/dist/agents/routing/resolve-route.d.ts.map +1 -0
- package/dist/agents/routing/resolve-route.js +653 -0
- package/dist/agents/routing/resolve-route.js.map +1 -0
- package/dist/agents/routing/session-key.d.ts +168 -0
- package/dist/agents/routing/session-key.d.ts.map +1 -0
- package/dist/agents/routing/session-key.js +268 -0
- package/dist/agents/routing/session-key.js.map +1 -0
- package/dist/agents/sanitize-surrogates.d.ts +30 -0
- package/dist/agents/sanitize-surrogates.d.ts.map +1 -0
- package/dist/agents/sanitize-surrogates.js +56 -0
- package/dist/agents/sanitize-surrogates.js.map +1 -0
- package/dist/agents/session-context.d.ts +80 -0
- package/dist/agents/session-context.d.ts.map +1 -0
- package/dist/agents/session-context.js +76 -0
- package/dist/agents/session-context.js.map +1 -0
- package/dist/agents/session-event-prompt.d.ts +124 -0
- package/dist/agents/session-event-prompt.d.ts.map +1 -0
- package/dist/agents/session-event-prompt.js +179 -0
- package/dist/agents/session-event-prompt.js.map +1 -0
- package/dist/agents/session-inbox.d.ts +129 -0
- package/dist/agents/session-inbox.d.ts.map +1 -0
- package/dist/agents/session-inbox.js +492 -0
- package/dist/agents/session-inbox.js.map +1 -0
- package/dist/agents/session-registry.d.ts +148 -0
- package/dist/agents/session-registry.d.ts.map +1 -0
- package/dist/agents/session-registry.js +405 -0
- package/dist/agents/session-registry.js.map +1 -0
- package/dist/agents/session-wiring.d.ts +214 -0
- package/dist/agents/session-wiring.d.ts.map +1 -0
- package/dist/agents/session-wiring.js +278 -0
- package/dist/agents/session-wiring.js.map +1 -0
- package/dist/agents/session-write-lock.d.ts +15 -0
- package/dist/agents/session-write-lock.d.ts.map +1 -0
- package/dist/agents/session-write-lock.js +15 -0
- package/dist/agents/session-write-lock.js.map +1 -0
- package/dist/agents/skills/agent-filter.d.ts +43 -0
- package/dist/agents/skills/agent-filter.d.ts.map +1 -0
- package/dist/agents/skills/agent-filter.js +89 -0
- package/dist/agents/skills/agent-filter.js.map +1 -0
- package/dist/agents/skills/discovery.d.ts +97 -0
- package/dist/agents/skills/discovery.d.ts.map +1 -0
- package/dist/agents/skills/discovery.js +136 -0
- package/dist/agents/skills/discovery.js.map +1 -0
- package/dist/agents/skills/eligibility.d.ts +118 -0
- package/dist/agents/skills/eligibility.d.ts.map +1 -0
- package/dist/agents/skills/eligibility.js +280 -0
- package/dist/agents/skills/eligibility.js.map +1 -0
- package/dist/agents/skills/grant.d.ts +70 -0
- package/dist/agents/skills/grant.d.ts.map +1 -0
- package/dist/agents/skills/grant.js +106 -0
- package/dist/agents/skills/grant.js.map +1 -0
- package/dist/agents/skills/index.d.ts +35 -0
- package/dist/agents/skills/index.d.ts.map +1 -0
- package/dist/agents/skills/index.js +88 -0
- package/dist/agents/skills/index.js.map +1 -0
- package/dist/agents/skills/install-spec.d.ts +51 -0
- package/dist/agents/skills/install-spec.d.ts.map +1 -0
- package/dist/agents/skills/install-spec.js +21 -0
- package/dist/agents/skills/install-spec.js.map +1 -0
- package/dist/agents/skills/install.d.ts +68 -0
- package/dist/agents/skills/install.d.ts.map +1 -0
- package/dist/agents/skills/install.js +206 -0
- package/dist/agents/skills/install.js.map +1 -0
- package/dist/agents/skills/org-access.d.ts +27 -0
- package/dist/agents/skills/org-access.d.ts.map +1 -0
- package/dist/agents/skills/org-access.js +87 -0
- package/dist/agents/skills/org-access.js.map +1 -0
- package/dist/agents/skills/skill-consolidate.d.ts +76 -0
- package/dist/agents/skills/skill-consolidate.d.ts.map +1 -0
- package/dist/agents/skills/skill-consolidate.js +264 -0
- package/dist/agents/skills/skill-consolidate.js.map +1 -0
- package/dist/agents/skills/skill-curator.d.ts +91 -0
- package/dist/agents/skills/skill-curator.d.ts.map +1 -0
- package/dist/agents/skills/skill-curator.js +239 -0
- package/dist/agents/skills/skill-curator.js.map +1 -0
- package/dist/agents/skills/skill-manifest.d.ts +35 -0
- package/dist/agents/skills/skill-manifest.d.ts.map +1 -0
- package/dist/agents/skills/skill-manifest.js +82 -0
- package/dist/agents/skills/skill-manifest.js.map +1 -0
- package/dist/agents/skills/skill-review.d.ts +91 -0
- package/dist/agents/skills/skill-review.d.ts.map +1 -0
- package/dist/agents/skills/skill-review.js +271 -0
- package/dist/agents/skills/skill-review.js.map +1 -0
- package/dist/agents/skills/skill-usage.d.ts +81 -0
- package/dist/agents/skills/skill-usage.d.ts.map +1 -0
- package/dist/agents/skills/skill-usage.js +208 -0
- package/dist/agents/skills/skill-usage.js.map +1 -0
- package/dist/agents/skills/status.d.ts +68 -0
- package/dist/agents/skills/status.d.ts.map +1 -0
- package/dist/agents/skills/status.js +147 -0
- package/dist/agents/skills/status.js.map +1 -0
- package/dist/agents/skills/update-config.d.ts +32 -0
- package/dist/agents/skills/update-config.d.ts.map +1 -0
- package/dist/agents/skills/update-config.js +53 -0
- package/dist/agents/skills/update-config.js.map +1 -0
- package/dist/agents/slash-commands.d.ts +25 -0
- package/dist/agents/slash-commands.d.ts.map +1 -0
- package/dist/agents/slash-commands.js +151 -0
- package/dist/agents/slash-commands.js.map +1 -0
- package/dist/agents/smart-compaction.d.ts +105 -0
- package/dist/agents/smart-compaction.d.ts.map +1 -0
- package/dist/agents/smart-compaction.js +355 -0
- package/dist/agents/smart-compaction.js.map +1 -0
- package/dist/agents/stream-wrappers.d.ts +20 -0
- package/dist/agents/stream-wrappers.d.ts.map +1 -0
- package/dist/agents/stream-wrappers.js +307 -0
- package/dist/agents/stream-wrappers.js.map +1 -0
- package/dist/agents/subagent-abort-cascade.d.ts +31 -0
- package/dist/agents/subagent-abort-cascade.d.ts.map +1 -0
- package/dist/agents/subagent-abort-cascade.js +124 -0
- package/dist/agents/subagent-abort-cascade.js.map +1 -0
- package/dist/agents/subagent-announce-delivery.d.ts +83 -0
- package/dist/agents/subagent-announce-delivery.d.ts.map +1 -0
- package/dist/agents/subagent-announce-delivery.js +159 -0
- package/dist/agents/subagent-announce-delivery.js.map +1 -0
- package/dist/agents/subagent-budget.d.ts +36 -0
- package/dist/agents/subagent-budget.d.ts.map +1 -0
- package/dist/agents/subagent-budget.js +93 -0
- package/dist/agents/subagent-budget.js.map +1 -0
- package/dist/agents/subagent-completion-bridge.d.ts +42 -0
- package/dist/agents/subagent-completion-bridge.d.ts.map +1 -0
- package/dist/agents/subagent-completion-bridge.js +338 -0
- package/dist/agents/subagent-completion-bridge.js.map +1 -0
- package/dist/agents/subagent-lifecycle-events.d.ts +31 -0
- package/dist/agents/subagent-lifecycle-events.d.ts.map +1 -0
- package/dist/agents/subagent-lifecycle-events.js +21 -0
- package/dist/agents/subagent-lifecycle-events.js.map +1 -0
- package/dist/agents/subagent-policy.d.ts +206 -0
- package/dist/agents/subagent-policy.d.ts.map +1 -0
- package/dist/agents/subagent-policy.js +295 -0
- package/dist/agents/subagent-policy.js.map +1 -0
- package/dist/agents/subagent-registry-completion.d.ts +69 -0
- package/dist/agents/subagent-registry-completion.d.ts.map +1 -0
- package/dist/agents/subagent-registry-completion.js +128 -0
- package/dist/agents/subagent-registry-completion.js.map +1 -0
- package/dist/agents/subagent-registry.d.ts +85 -0
- package/dist/agents/subagent-registry.d.ts.map +1 -0
- package/dist/agents/subagent-registry.js +215 -0
- package/dist/agents/subagent-registry.js.map +1 -0
- package/dist/agents/subagent-registry.types.d.ts +94 -0
- package/dist/agents/subagent-registry.types.d.ts.map +1 -0
- package/dist/agents/subagent-registry.types.js +19 -0
- package/dist/agents/subagent-registry.types.js.map +1 -0
- package/dist/agents/subagent-runner.d.ts +75 -0
- package/dist/agents/subagent-runner.d.ts.map +1 -0
- package/dist/agents/subagent-runner.js +358 -0
- package/dist/agents/subagent-runner.js.map +1 -0
- package/dist/agents/subagent-spawn-abort-marker.d.ts +46 -0
- package/dist/agents/subagent-spawn-abort-marker.d.ts.map +1 -0
- package/dist/agents/subagent-spawn-abort-marker.js +81 -0
- package/dist/agents/subagent-spawn-abort-marker.js.map +1 -0
- package/dist/agents/subagent-spawn.d.ts +104 -0
- package/dist/agents/subagent-spawn.d.ts.map +1 -0
- package/dist/agents/subagent-spawn.js +358 -0
- package/dist/agents/subagent-spawn.js.map +1 -0
- package/dist/agents/thinking-fallback.d.ts +49 -0
- package/dist/agents/thinking-fallback.d.ts.map +1 -0
- package/dist/agents/thinking-fallback.js +97 -0
- package/dist/agents/thinking-fallback.js.map +1 -0
- package/dist/agents/tool-guard.d.ts +71 -0
- package/dist/agents/tool-guard.d.ts.map +1 -0
- package/dist/agents/tool-guard.js +154 -0
- package/dist/agents/tool-guard.js.map +1 -0
- package/dist/agents/tool-loop-detector.d.ts +115 -0
- package/dist/agents/tool-loop-detector.d.ts.map +1 -0
- package/dist/agents/tool-loop-detector.js +0 -0
- package/dist/agents/tool-loop-detector.js.map +1 -0
- package/dist/agents/tool-summaries.d.ts +3 -0
- package/dist/agents/tool-summaries.d.ts.map +1 -0
- package/dist/agents/tool-summaries.js +78 -0
- package/dist/agents/tool-summaries.js.map +1 -0
- package/dist/agents/tools/agents-list-tool.d.ts +51 -0
- package/dist/agents/tools/agents-list-tool.d.ts.map +1 -0
- package/dist/agents/tools/agents-list-tool.js +167 -0
- package/dist/agents/tools/agents-list-tool.js.map +1 -0
- package/dist/agents/tools/browser.d.ts +144 -0
- package/dist/agents/tools/browser.d.ts.map +1 -0
- package/dist/agents/tools/browser.js +1538 -0
- package/dist/agents/tools/browser.js.map +1 -0
- package/dist/agents/tools/common.d.ts +208 -0
- package/dist/agents/tools/common.d.ts.map +1 -0
- package/dist/agents/tools/common.js +405 -0
- package/dist/agents/tools/common.js.map +1 -0
- package/dist/agents/tools/composio-tool.d.ts +179 -0
- package/dist/agents/tools/composio-tool.d.ts.map +1 -0
- package/dist/agents/tools/composio-tool.js +474 -0
- package/dist/agents/tools/composio-tool.js.map +1 -0
- package/dist/agents/tools/cron-tool.d.ts +187 -0
- package/dist/agents/tools/cron-tool.d.ts.map +1 -0
- package/dist/agents/tools/cron-tool.js +985 -0
- package/dist/agents/tools/cron-tool.js.map +1 -0
- package/dist/agents/tools/find-tool.d.ts +55 -0
- package/dist/agents/tools/find-tool.d.ts.map +1 -0
- package/dist/agents/tools/find-tool.js +163 -0
- package/dist/agents/tools/find-tool.js.map +1 -0
- package/dist/agents/tools/generate-image-tool.d.ts +77 -0
- package/dist/agents/tools/generate-image-tool.d.ts.map +1 -0
- package/dist/agents/tools/generate-image-tool.js +421 -0
- package/dist/agents/tools/generate-image-tool.js.map +1 -0
- package/dist/agents/tools/index.d.ts +14 -0
- package/dist/agents/tools/index.d.ts.map +1 -0
- package/dist/agents/tools/index.js +12 -0
- package/dist/agents/tools/index.js.map +1 -0
- package/dist/agents/tools/manage-access-tool.d.ts +64 -0
- package/dist/agents/tools/manage-access-tool.d.ts.map +1 -0
- package/dist/agents/tools/manage-access-tool.js +188 -0
- package/dist/agents/tools/manage-access-tool.js.map +1 -0
- package/dist/agents/tools/manage-agent-tool.d.ts +50 -0
- package/dist/agents/tools/manage-agent-tool.d.ts.map +1 -0
- package/dist/agents/tools/manage-agent-tool.js +232 -0
- package/dist/agents/tools/manage-agent-tool.js.map +1 -0
- package/dist/agents/tools/manage-channel-access-tool.d.ts +44 -0
- package/dist/agents/tools/manage-channel-access-tool.d.ts.map +1 -0
- package/dist/agents/tools/manage-channel-access-tool.js +144 -0
- package/dist/agents/tools/manage-channel-access-tool.js.map +1 -0
- package/dist/agents/tools/manage-memory-tool.d.ts +30 -0
- package/dist/agents/tools/manage-memory-tool.d.ts.map +1 -0
- package/dist/agents/tools/manage-memory-tool.js +309 -0
- package/dist/agents/tools/manage-memory-tool.js.map +1 -0
- package/dist/agents/tools/manage-provider-tool.d.ts +65 -0
- package/dist/agents/tools/manage-provider-tool.d.ts.map +1 -0
- package/dist/agents/tools/manage-provider-tool.js +249 -0
- package/dist/agents/tools/manage-provider-tool.js.map +1 -0
- package/dist/agents/tools/manage-skill-tool.d.ts +121 -0
- package/dist/agents/tools/manage-skill-tool.d.ts.map +1 -0
- package/dist/agents/tools/manage-skill-tool.js +722 -0
- package/dist/agents/tools/manage-skill-tool.js.map +1 -0
- package/dist/agents/tools/memory-tools.d.ts +172 -0
- package/dist/agents/tools/memory-tools.d.ts.map +1 -0
- package/dist/agents/tools/memory-tools.js +561 -0
- package/dist/agents/tools/memory-tools.js.map +1 -0
- package/dist/agents/tools/oauth-authorize-tool.d.ts +94 -0
- package/dist/agents/tools/oauth-authorize-tool.d.ts.map +1 -0
- package/dist/agents/tools/oauth-authorize-tool.js +670 -0
- package/dist/agents/tools/oauth-authorize-tool.js.map +1 -0
- package/dist/agents/tools/org-tool.d.ts +208 -0
- package/dist/agents/tools/org-tool.d.ts.map +1 -0
- package/dist/agents/tools/org-tool.js +790 -0
- package/dist/agents/tools/org-tool.js.map +1 -0
- package/dist/agents/tools/registry.d.ts +146 -0
- package/dist/agents/tools/registry.d.ts.map +1 -0
- package/dist/agents/tools/registry.js +396 -0
- package/dist/agents/tools/registry.js.map +1 -0
- package/dist/agents/tools/send-media-tool.d.ts +92 -0
- package/dist/agents/tools/send-media-tool.d.ts.map +1 -0
- package/dist/agents/tools/send-media-tool.js +512 -0
- package/dist/agents/tools/send-media-tool.js.map +1 -0
- package/dist/agents/tools/send-message-tool.d.ts +84 -0
- package/dist/agents/tools/send-message-tool.d.ts.map +1 -0
- package/dist/agents/tools/send-message-tool.js +226 -0
- package/dist/agents/tools/send-message-tool.js.map +1 -0
- package/dist/agents/tools/sessions/history.d.ts +53 -0
- package/dist/agents/tools/sessions/history.d.ts.map +1 -0
- package/dist/agents/tools/sessions/history.js +138 -0
- package/dist/agents/tools/sessions/history.js.map +1 -0
- package/dist/agents/tools/sessions/index.d.ts +92 -0
- package/dist/agents/tools/sessions/index.d.ts.map +1 -0
- package/dist/agents/tools/sessions/index.js +125 -0
- package/dist/agents/tools/sessions/index.js.map +1 -0
- package/dist/agents/tools/sessions/list.d.ts +53 -0
- package/dist/agents/tools/sessions/list.d.ts.map +1 -0
- package/dist/agents/tools/sessions/list.js +134 -0
- package/dist/agents/tools/sessions/list.js.map +1 -0
- package/dist/agents/tools/sessions/resolve-access.d.ts +34 -0
- package/dist/agents/tools/sessions/resolve-access.d.ts.map +1 -0
- package/dist/agents/tools/sessions/resolve-access.js +67 -0
- package/dist/agents/tools/sessions/resolve-access.js.map +1 -0
- package/dist/agents/tools/sessions/send.d.ts +68 -0
- package/dist/agents/tools/sessions/send.d.ts.map +1 -0
- package/dist/agents/tools/sessions/send.js +556 -0
- package/dist/agents/tools/sessions/send.js.map +1 -0
- package/dist/agents/tools/sessions/shared.d.ts +145 -0
- package/dist/agents/tools/sessions/shared.d.ts.map +1 -0
- package/dist/agents/tools/sessions/shared.js +352 -0
- package/dist/agents/tools/sessions/shared.js.map +1 -0
- package/dist/agents/tools/sessions/spawn.d.ts +71 -0
- package/dist/agents/tools/sessions/spawn.d.ts.map +1 -0
- package/dist/agents/tools/sessions/spawn.js +132 -0
- package/dist/agents/tools/sessions/spawn.js.map +1 -0
- package/dist/agents/tools/spawn-agent-tool.d.ts +87 -0
- package/dist/agents/tools/spawn-agent-tool.d.ts.map +1 -0
- package/dist/agents/tools/spawn-agent-tool.js +189 -0
- package/dist/agents/tools/spawn-agent-tool.js.map +1 -0
- package/dist/agents/tools/spawn-agents-tool.d.ts +75 -0
- package/dist/agents/tools/spawn-agents-tool.d.ts.map +1 -0
- package/dist/agents/tools/spawn-agents-tool.js +267 -0
- package/dist/agents/tools/spawn-agents-tool.js.map +1 -0
- package/dist/agents/tools/types.d.ts +55 -0
- package/dist/agents/tools/types.d.ts.map +1 -0
- package/dist/agents/tools/types.js +28 -0
- package/dist/agents/tools/types.js.map +1 -0
- package/dist/agents/tools/web-fetch-utils.d.ts +114 -0
- package/dist/agents/tools/web-fetch-utils.d.ts.map +1 -0
- package/dist/agents/tools/web-fetch-utils.js +560 -0
- package/dist/agents/tools/web-fetch-utils.js.map +1 -0
- package/dist/agents/tools/web-fetch.d.ts +97 -0
- package/dist/agents/tools/web-fetch.d.ts.map +1 -0
- package/dist/agents/tools/web-fetch.js +369 -0
- package/dist/agents/tools/web-fetch.js.map +1 -0
- package/dist/agents/tools/web-retry.d.ts +55 -0
- package/dist/agents/tools/web-retry.d.ts.map +1 -0
- package/dist/agents/tools/web-retry.js +172 -0
- package/dist/agents/tools/web-retry.js.map +1 -0
- package/dist/agents/tools/web-search.d.ts +96 -0
- package/dist/agents/tools/web-search.d.ts.map +1 -0
- package/dist/agents/tools/web-search.js +459 -0
- package/dist/agents/tools/web-search.js.map +1 -0
- package/dist/agents/tools/web-shared.d.ts +123 -0
- package/dist/agents/tools/web-shared.d.ts.map +1 -0
- package/dist/agents/tools/web-shared.js +207 -0
- package/dist/agents/tools/web-shared.js.map +1 -0
- package/dist/assets/brigade-favicon.png +0 -0
- package/dist/auth/profile-cooldown.d.ts +105 -0
- package/dist/auth/profile-cooldown.d.ts.map +1 -0
- package/dist/auth/profile-cooldown.js +466 -0
- package/dist/auth/profile-cooldown.js.map +1 -0
- package/dist/auth/profiles.d.ts +93 -0
- package/dist/auth/profiles.d.ts.map +1 -0
- package/dist/auth/profiles.js +321 -0
- package/dist/auth/profiles.js.map +1 -0
- package/dist/buildstamp.json +1 -0
- package/dist/cli/argv.d.ts +20 -0
- package/dist/cli/argv.d.ts.map +1 -0
- package/dist/cli/argv.js +47 -0
- package/dist/cli/argv.js.map +1 -0
- package/dist/cli/commands/agent.d.ts +19 -0
- package/dist/cli/commands/agent.d.ts.map +1 -0
- package/dist/cli/commands/agent.js +297 -0
- package/dist/cli/commands/agent.js.map +1 -0
- package/dist/cli/commands/agents-bindings.d.ts +80 -0
- package/dist/cli/commands/agents-bindings.d.ts.map +1 -0
- package/dist/cli/commands/agents-bindings.js +252 -0
- package/dist/cli/commands/agents-bindings.js.map +1 -0
- package/dist/cli/commands/agents-cmd.d.ts +160 -0
- package/dist/cli/commands/agents-cmd.d.ts.map +1 -0
- package/dist/cli/commands/agents-cmd.js +1199 -0
- package/dist/cli/commands/agents-cmd.js.map +1 -0
- package/dist/cli/commands/agents-config.d.ts +102 -0
- package/dist/cli/commands/agents-config.d.ts.map +1 -0
- package/dist/cli/commands/agents-config.js +294 -0
- package/dist/cli/commands/agents-config.js.map +1 -0
- package/dist/cli/commands/agents-shared.d.ts +57 -0
- package/dist/cli/commands/agents-shared.d.ts.map +1 -0
- package/dist/cli/commands/agents-shared.js +83 -0
- package/dist/cli/commands/agents-shared.js.map +1 -0
- package/dist/cli/commands/backup.d.ts +36 -0
- package/dist/cli/commands/backup.d.ts.map +1 -0
- package/dist/cli/commands/backup.js +244 -0
- package/dist/cli/commands/backup.js.map +1 -0
- package/dist/cli/commands/channels.d.ts +106 -0
- package/dist/cli/commands/channels.d.ts.map +1 -0
- package/dist/cli/commands/channels.js +830 -0
- package/dist/cli/commands/channels.js.map +1 -0
- package/dist/cli/commands/chat.d.ts +43 -0
- package/dist/cli/commands/chat.d.ts.map +1 -0
- package/dist/cli/commands/chat.js +84 -0
- package/dist/cli/commands/chat.js.map +1 -0
- package/dist/cli/commands/config-cmd.d.ts +62 -0
- package/dist/cli/commands/config-cmd.d.ts.map +1 -0
- package/dist/cli/commands/config-cmd.js +404 -0
- package/dist/cli/commands/config-cmd.js.map +1 -0
- package/dist/cli/commands/connect.d.ts +73 -0
- package/dist/cli/commands/connect.d.ts.map +1 -0
- package/dist/cli/commands/connect.js +1952 -0
- package/dist/cli/commands/connect.js.map +1 -0
- package/dist/cli/commands/cron.d.ts +58 -0
- package/dist/cli/commands/cron.d.ts.map +1 -0
- package/dist/cli/commands/cron.js +250 -0
- package/dist/cli/commands/cron.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +25 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +618 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/encrypt-cmd.d.ts +12 -0
- package/dist/cli/commands/encrypt-cmd.d.ts.map +1 -0
- package/dist/cli/commands/encrypt-cmd.js +119 -0
- package/dist/cli/commands/encrypt-cmd.js.map +1 -0
- package/dist/cli/commands/exec-cmd.d.ts +55 -0
- package/dist/cli/commands/exec-cmd.d.ts.map +1 -0
- package/dist/cli/commands/exec-cmd.js +253 -0
- package/dist/cli/commands/exec-cmd.js.map +1 -0
- package/dist/cli/commands/gateway-install.d.ts +21 -0
- package/dist/cli/commands/gateway-install.d.ts.map +1 -0
- package/dist/cli/commands/gateway-install.js +71 -0
- package/dist/cli/commands/gateway-install.js.map +1 -0
- package/dist/cli/commands/gateway-supervise.d.ts +102 -0
- package/dist/cli/commands/gateway-supervise.d.ts.map +1 -0
- package/dist/cli/commands/gateway-supervise.js +194 -0
- package/dist/cli/commands/gateway-supervise.js.map +1 -0
- package/dist/cli/commands/gateway.d.ts +58 -0
- package/dist/cli/commands/gateway.d.ts.map +1 -0
- package/dist/cli/commands/gateway.js +497 -0
- package/dist/cli/commands/gateway.js.map +1 -0
- package/dist/cli/commands/logs.d.ts +14 -0
- package/dist/cli/commands/logs.d.ts.map +1 -0
- package/dist/cli/commands/logs.js +93 -0
- package/dist/cli/commands/logs.js.map +1 -0
- package/dist/cli/commands/mcp-cmd.d.ts +4 -0
- package/dist/cli/commands/mcp-cmd.d.ts.map +1 -0
- package/dist/cli/commands/mcp-cmd.js +30 -0
- package/dist/cli/commands/mcp-cmd.js.map +1 -0
- package/dist/cli/commands/onboard-config.d.ts +23 -0
- package/dist/cli/commands/onboard-config.d.ts.map +1 -0
- package/dist/cli/commands/onboard-config.js +33 -0
- package/dist/cli/commands/onboard-config.js.map +1 -0
- package/dist/cli/commands/onboard.d.ts +48 -0
- package/dist/cli/commands/onboard.d.ts.map +1 -0
- package/dist/cli/commands/onboard.js +397 -0
- package/dist/cli/commands/onboard.js.map +1 -0
- package/dist/cli/commands/org-cmd.d.ts +87 -0
- package/dist/cli/commands/org-cmd.d.ts.map +1 -0
- package/dist/cli/commands/org-cmd.js +394 -0
- package/dist/cli/commands/org-cmd.js.map +1 -0
- package/dist/cli/commands/org-cmd.templates.d.ts +66 -0
- package/dist/cli/commands/org-cmd.templates.d.ts.map +1 -0
- package/dist/cli/commands/org-cmd.templates.js +145 -0
- package/dist/cli/commands/org-cmd.templates.js.map +1 -0
- package/dist/cli/commands/org-slash.d.ts +107 -0
- package/dist/cli/commands/org-slash.d.ts.map +1 -0
- package/dist/cli/commands/org-slash.js +263 -0
- package/dist/cli/commands/org-slash.js.map +1 -0
- package/dist/cli/commands/pairing.d.ts +33 -0
- package/dist/cli/commands/pairing.d.ts.map +1 -0
- package/dist/cli/commands/pairing.js +155 -0
- package/dist/cli/commands/pairing.js.map +1 -0
- package/dist/cli/commands/secrets-audit.d.ts +17 -0
- package/dist/cli/commands/secrets-audit.d.ts.map +1 -0
- package/dist/cli/commands/secrets-audit.js +109 -0
- package/dist/cli/commands/secrets-audit.js.map +1 -0
- package/dist/cli/commands/sessions.d.ts +22 -0
- package/dist/cli/commands/sessions.d.ts.map +1 -0
- package/dist/cli/commands/sessions.js +99 -0
- package/dist/cli/commands/sessions.js.map +1 -0
- package/dist/cli/commands/skills.d.ts +17 -0
- package/dist/cli/commands/skills.d.ts.map +1 -0
- package/dist/cli/commands/skills.js +100 -0
- package/dist/cli/commands/skills.js.map +1 -0
- package/dist/cli/commands/status.d.ts +26 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +252 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/commands/store-cmd.d.ts +36 -0
- package/dist/cli/commands/store-cmd.d.ts.map +1 -0
- package/dist/cli/commands/store-cmd.js +405 -0
- package/dist/cli/commands/store-cmd.js.map +1 -0
- package/dist/cli/flows/web-setup.d.ts +47 -0
- package/dist/cli/flows/web-setup.d.ts.map +1 -0
- package/dist/cli/flows/web-setup.js +324 -0
- package/dist/cli/flows/web-setup.js.map +1 -0
- package/dist/cli/program/build-program.d.ts +3 -0
- package/dist/cli/program/build-program.d.ts.map +1 -0
- package/dist/cli/program/build-program.js +1326 -0
- package/dist/cli/program/build-program.js.map +1 -0
- package/dist/cli/run-main.d.ts +2 -0
- package/dist/cli/run-main.d.ts.map +1 -0
- package/dist/cli/run-main.js +63 -0
- package/dist/cli/run-main.js.map +1 -0
- package/dist/config/agent-limits.d.ts +22 -0
- package/dist/config/agent-limits.d.ts.map +1 -0
- package/dist/config/agent-limits.js +34 -0
- package/dist/config/agent-limits.js.map +1 -0
- package/dist/config/io.d.ts +378 -0
- package/dist/config/io.d.ts.map +1 -0
- package/dist/config/io.js +602 -0
- package/dist/config/io.js.map +1 -0
- package/dist/config/paths.d.ts +80 -0
- package/dist/config/paths.d.ts.map +1 -0
- package/dist/config/paths.js +342 -0
- package/dist/config/paths.js.map +1 -0
- package/dist/config/types.d.ts +12 -0
- package/dist/config/types.d.ts.map +1 -0
- package/dist/config/types.js +12 -0
- package/dist/config/types.js.map +1 -0
- package/dist/core/agent-dispatcher.d.ts +91 -0
- package/dist/core/agent-dispatcher.d.ts.map +1 -0
- package/dist/core/agent-dispatcher.js +251 -0
- package/dist/core/agent-dispatcher.js.map +1 -0
- package/dist/core/agent-events-stream.d.ts +76 -0
- package/dist/core/agent-events-stream.d.ts.map +1 -0
- package/dist/core/agent-events-stream.js +185 -0
- package/dist/core/agent-events-stream.js.map +1 -0
- package/dist/core/agent-runtime-persist.d.ts +53 -0
- package/dist/core/agent-runtime-persist.d.ts.map +1 -0
- package/dist/core/agent-runtime-persist.js +114 -0
- package/dist/core/agent-runtime-persist.js.map +1 -0
- package/dist/core/auth-bridge.d.ts +8 -0
- package/dist/core/auth-bridge.d.ts.map +1 -0
- package/dist/core/auth-bridge.js +102 -0
- package/dist/core/auth-bridge.js.map +1 -0
- package/dist/core/auth-error.d.ts +49 -0
- package/dist/core/auth-error.d.ts.map +1 -0
- package/dist/core/auth-error.js.map +1 -0
- package/dist/core/brigade-config.d.ts +205 -0
- package/dist/core/brigade-config.d.ts.map +1 -0
- package/dist/core/brigade-config.js +58 -6
- package/dist/core/brigade-config.js.map +1 -0
- package/dist/core/config.d.ts +17 -0
- package/dist/core/config.d.ts.map +1 -0
- package/dist/core/config.js +92 -246
- package/dist/core/config.js.map +1 -0
- package/dist/core/console-stream.d.ts +52 -0
- package/dist/core/console-stream.d.ts.map +1 -0
- package/dist/core/console-stream.js +49 -3
- package/dist/core/console-stream.js.map +1 -0
- package/dist/core/daemon/launchd.d.ts +19 -0
- package/dist/core/daemon/launchd.d.ts.map +1 -0
- package/dist/core/daemon/launchd.js +117 -0
- package/dist/core/daemon/launchd.js.map +1 -0
- package/dist/core/daemon/schtasks.d.ts +23 -0
- package/dist/core/daemon/schtasks.d.ts.map +1 -0
- package/dist/core/daemon/schtasks.js +139 -0
- package/dist/core/daemon/schtasks.js.map +1 -0
- package/dist/core/daemon/service.d.ts +56 -0
- package/dist/core/daemon/service.d.ts.map +1 -0
- package/dist/core/daemon/service.js +54 -0
- package/dist/core/daemon/service.js.map +1 -0
- package/dist/core/daemon/systemd.d.ts +19 -0
- package/dist/core/daemon/systemd.d.ts.map +1 -0
- package/dist/core/daemon/systemd.js +117 -0
- package/dist/core/daemon/systemd.js.map +1 -0
- package/dist/core/event-logger.d.ts +74 -0
- package/dist/core/event-logger.d.ts.map +1 -0
- package/dist/core/event-logger.js +299 -6
- package/dist/core/event-logger.js.map +1 -0
- package/dist/core/exec-approvals.d.ts +178 -0
- package/dist/core/exec-approvals.d.ts.map +1 -0
- package/dist/core/exec-approvals.js +591 -266
- package/dist/core/exec-approvals.js.map +1 -0
- package/dist/core/extension-lifecycle.d.ts +27 -0
- package/dist/core/extension-lifecycle.d.ts.map +1 -0
- package/dist/core/extension-lifecycle.js +45 -0
- package/dist/core/extension-lifecycle.js.map +1 -0
- package/dist/core/gateway-caller-impl.d.ts +42 -0
- package/dist/core/gateway-caller-impl.d.ts.map +1 -0
- package/dist/core/gateway-caller-impl.js +95 -0
- package/dist/core/gateway-caller-impl.js.map +1 -0
- package/dist/core/gateway-lock.d.ts +88 -0
- package/dist/core/gateway-lock.d.ts.map +1 -0
- package/dist/core/gateway-lock.js +204 -0
- package/dist/core/gateway-lock.js.map +1 -0
- package/dist/core/gateway-probe.d.ts +148 -0
- package/dist/core/gateway-probe.d.ts.map +1 -0
- package/dist/core/gateway-probe.js +319 -0
- package/dist/core/gateway-probe.js.map +1 -0
- package/dist/core/gateway-spawn.d.ts +40 -0
- package/dist/core/gateway-spawn.d.ts.map +1 -0
- package/dist/core/gateway-spawn.js +156 -0
- package/dist/core/gateway-spawn.js.map +1 -0
- package/dist/core/model-caps.d.ts +85 -0
- package/dist/core/model-caps.d.ts.map +1 -0
- package/dist/core/model-caps.js +88 -2
- package/dist/core/model-caps.js.map +1 -0
- package/dist/core/port-inspect.d.ts +37 -0
- package/dist/core/port-inspect.d.ts.map +1 -0
- package/dist/core/port-inspect.js +165 -0
- package/dist/core/port-inspect.js.map +1 -0
- package/dist/core/server-lanes.d.ts +25 -0
- package/dist/core/server-lanes.d.ts.map +1 -0
- package/dist/core/server-lanes.js +31 -0
- package/dist/core/server-lanes.js.map +1 -0
- package/dist/core/server-methods/cron.d.ts +104 -0
- package/dist/core/server-methods/cron.d.ts.map +1 -0
- package/dist/core/server-methods/cron.js +183 -0
- package/dist/core/server-methods/cron.js.map +1 -0
- package/dist/core/server-methods/health.d.ts +36 -0
- package/dist/core/server-methods/health.d.ts.map +1 -0
- package/dist/core/server-methods/health.js +51 -0
- package/dist/core/server-methods/health.js.map +1 -0
- package/dist/core/server-methods/org.d.ts +93 -0
- package/dist/core/server-methods/org.d.ts.map +1 -0
- package/dist/core/server-methods/org.js +95 -0
- package/dist/core/server-methods/org.js.map +1 -0
- package/dist/core/server-methods/sessions.d.ts +133 -0
- package/dist/core/server-methods/sessions.d.ts.map +1 -0
- package/dist/core/server-methods/sessions.js +209 -0
- package/dist/core/server-methods/sessions.js.map +1 -0
- package/dist/core/server.d.ts +46 -0
- package/dist/core/server.d.ts.map +1 -0
- package/dist/core/server.js +4716 -249
- package/dist/core/server.js.map +1 -0
- package/dist/core/system-prompt.d.ts +92 -0
- package/dist/core/system-prompt.d.ts.map +1 -0
- package/dist/core/system-prompt.js +180 -1584
- package/dist/core/system-prompt.js.map +1 -0
- package/dist/core/version.d.ts +4 -0
- package/dist/core/version.d.ts.map +1 -0
- package/dist/core/version.js +8 -13
- package/dist/core/version.js.map +1 -0
- package/dist/core/webhook-guards.d.ts +131 -0
- package/dist/core/webhook-guards.d.ts.map +1 -0
- package/dist/core/webhook-guards.js +283 -0
- package/dist/core/webhook-guards.js.map +1 -0
- package/dist/core/ws-subscription-filter.d.ts +9 -0
- package/dist/core/ws-subscription-filter.d.ts.map +1 -0
- package/dist/core/ws-subscription-filter.js +39 -0
- package/dist/core/ws-subscription-filter.js.map +1 -0
- package/dist/cron/active-service.d.ts +30 -0
- package/dist/cron/active-service.d.ts.map +1 -0
- package/dist/cron/active-service.js +48 -0
- package/dist/cron/active-service.js.map +1 -0
- package/dist/cron/isolated-agent/run-executor.d.ts +49 -0
- package/dist/cron/isolated-agent/run-executor.d.ts.map +1 -0
- package/dist/cron/isolated-agent/run-executor.js +343 -0
- package/dist/cron/isolated-agent/run-executor.js.map +1 -0
- package/dist/cron/isolated-agent/run.d.ts +27 -0
- package/dist/cron/isolated-agent/run.d.ts.map +1 -0
- package/dist/cron/isolated-agent/run.js +29 -0
- package/dist/cron/isolated-agent/run.js.map +1 -0
- package/dist/cron/normalize.d.ts +103 -0
- package/dist/cron/normalize.d.ts.map +1 -0
- package/dist/cron/normalize.js +376 -0
- package/dist/cron/normalize.js.map +1 -0
- package/dist/cron/parse.d.ts +27 -0
- package/dist/cron/parse.d.ts.map +1 -0
- package/dist/cron/parse.js +55 -0
- package/dist/cron/parse.js.map +1 -0
- package/dist/cron/reminder-context.d.ts +78 -0
- package/dist/cron/reminder-context.d.ts.map +1 -0
- package/dist/cron/reminder-context.js +167 -0
- package/dist/cron/reminder-context.js.map +1 -0
- package/dist/cron/run-log.d.ts +48 -0
- package/dist/cron/run-log.d.ts.map +1 -0
- package/dist/cron/run-log.js +225 -0
- package/dist/cron/run-log.js.map +1 -0
- package/dist/cron/schedule.d.ts +46 -0
- package/dist/cron/schedule.d.ts.map +1 -0
- package/dist/cron/schedule.js +144 -0
- package/dist/cron/schedule.js.map +1 -0
- package/dist/cron/service/jobs.d.ts +138 -0
- package/dist/cron/service/jobs.d.ts.map +1 -0
- package/dist/cron/service/jobs.js +370 -0
- package/dist/cron/service/jobs.js.map +1 -0
- package/dist/cron/service/locked.d.ts +46 -0
- package/dist/cron/service/locked.d.ts.map +1 -0
- package/dist/cron/service/locked.js +54 -0
- package/dist/cron/service/locked.js.map +1 -0
- package/dist/cron/service/ops.d.ts +124 -0
- package/dist/cron/service/ops.d.ts.map +1 -0
- package/dist/cron/service/ops.js +415 -0
- package/dist/cron/service/ops.js.map +1 -0
- package/dist/cron/service/state.d.ts +254 -0
- package/dist/cron/service/state.d.ts.map +1 -0
- package/dist/cron/service/state.js +50 -0
- package/dist/cron/service/state.js.map +1 -0
- package/dist/cron/service/store.d.ts +65 -0
- package/dist/cron/service/store.d.ts.map +1 -0
- package/dist/cron/service/store.js +350 -0
- package/dist/cron/service/store.js.map +1 -0
- package/dist/cron/service/timer.d.ts +113 -0
- package/dist/cron/service/timer.d.ts.map +1 -0
- package/dist/cron/service/timer.js +1081 -0
- package/dist/cron/service/timer.js.map +1 -0
- package/dist/cron/session-reaper.d.ts +62 -0
- package/dist/cron/session-reaper.d.ts.map +1 -0
- package/dist/cron/session-reaper.js +152 -0
- package/dist/cron/session-reaper.js.map +1 -0
- package/dist/cron/session-target.d.ts +56 -0
- package/dist/cron/session-target.d.ts.map +1 -0
- package/dist/cron/session-target.js +96 -0
- package/dist/cron/session-target.js.map +1 -0
- package/dist/cron/stagger.d.ts +34 -0
- package/dist/cron/stagger.d.ts.map +1 -0
- package/dist/cron/stagger.js +69 -0
- package/dist/cron/stagger.js.map +1 -0
- package/dist/cron/types.d.ts +287 -0
- package/dist/cron/types.d.ts.map +1 -0
- package/dist/cron/types.js +22 -0
- package/dist/cron/types.js.map +1 -0
- package/dist/cron/validate-timestamp.d.ts +33 -0
- package/dist/cron/validate-timestamp.d.ts.map +1 -0
- package/dist/cron/validate-timestamp.js +54 -0
- package/dist/cron/validate-timestamp.js.map +1 -0
- package/dist/entry.d.ts +2 -0
- package/dist/entry.d.ts.map +1 -0
- package/dist/entry.js +57 -0
- package/dist/entry.js.map +1 -0
- package/dist/extension-sdk.d.ts +28 -0
- package/dist/extension-sdk.d.ts.map +1 -0
- package/dist/extension-sdk.js +26 -0
- package/dist/extension-sdk.js.map +1 -0
- package/dist/identity/device.d.ts +19 -0
- package/dist/identity/device.d.ts.map +1 -0
- package/dist/identity/device.js +88 -0
- package/dist/identity/device.js.map +1 -0
- package/dist/infra/backoff.d.ts +24 -0
- package/dist/infra/backoff.d.ts.map +1 -0
- package/dist/infra/backoff.js +48 -0
- package/dist/infra/backoff.js.map +1 -0
- package/dist/infra/errors.d.ts +35 -0
- package/dist/infra/errors.d.ts.map +1 -0
- package/dist/infra/errors.js +54 -0
- package/dist/infra/errors.js.map +1 -0
- package/dist/infra/fs/atomic-rename.d.ts +31 -0
- package/dist/infra/fs/atomic-rename.d.ts.map +1 -0
- package/dist/infra/fs/atomic-rename.js +75 -0
- package/dist/infra/fs/atomic-rename.js.map +1 -0
- package/dist/infra/json-file.d.ts +25 -0
- package/dist/infra/json-file.d.ts.map +1 -0
- package/dist/infra/json-file.js +49 -0
- package/dist/infra/json-file.js.map +1 -0
- package/dist/infra/json-utf8-bytes.d.ts +14 -0
- package/dist/infra/json-utf8-bytes.d.ts.map +1 -0
- package/dist/infra/json-utf8-bytes.js +20 -0
- package/dist/infra/json-utf8-bytes.js.map +1 -0
- package/dist/infra/net/dns-pinning.d.ts +66 -0
- package/dist/infra/net/dns-pinning.d.ts.map +1 -0
- package/dist/infra/net/dns-pinning.js +128 -0
- package/dist/infra/net/dns-pinning.js.map +1 -0
- package/dist/infra/net/fetch-guard.d.ts +85 -0
- package/dist/infra/net/fetch-guard.d.ts.map +1 -0
- package/dist/infra/net/fetch-guard.js +439 -0
- package/dist/infra/net/fetch-guard.js.map +1 -0
- package/dist/infra/prototype-keys.d.ts +19 -0
- package/dist/infra/prototype-keys.d.ts.map +1 -0
- package/dist/infra/prototype-keys.js +22 -0
- package/dist/infra/prototype-keys.js.map +1 -0
- package/dist/integrations/ollama.d.ts +67 -0
- package/dist/integrations/ollama.d.ts.map +1 -0
- package/dist/integrations/ollama.js +53 -0
- package/dist/integrations/ollama.js.map +1 -0
- package/dist/integrations/provider-discovery.d.ts +66 -0
- package/dist/integrations/provider-discovery.d.ts.map +1 -0
- package/dist/integrations/provider-discovery.js +166 -0
- package/dist/integrations/provider-discovery.js.map +1 -0
- package/dist/logging/redact.d.ts +28 -0
- package/dist/logging/redact.d.ts.map +1 -0
- package/dist/logging/redact.js +51 -0
- package/dist/logging/redact.js.map +1 -0
- package/dist/logging/subsystem-logger.d.ts +77 -0
- package/dist/logging/subsystem-logger.d.ts.map +1 -0
- package/dist/logging/subsystem-logger.js +577 -0
- package/dist/logging/subsystem-logger.js.map +1 -0
- package/dist/logging/subsystem.d.ts +13 -0
- package/dist/logging/subsystem.d.ts.map +1 -0
- package/dist/logging/subsystem.js +12 -0
- package/dist/logging/subsystem.js.map +1 -0
- package/dist/process/command-queue.d.ts +152 -0
- package/dist/process/command-queue.d.ts.map +1 -0
- package/dist/process/command-queue.js +420 -0
- package/dist/process/command-queue.js.map +1 -0
- package/dist/process/lanes.d.ts +102 -0
- package/dist/process/lanes.d.ts.map +1 -0
- package/dist/process/lanes.js +117 -0
- package/dist/process/lanes.js.map +1 -0
- package/dist/process/session-lane.d.ts +31 -0
- package/dist/process/session-lane.d.ts.map +1 -0
- package/dist/process/session-lane.js +45 -0
- package/dist/process/session-lane.js.map +1 -0
- package/dist/protocol/errors.d.ts +35 -0
- package/dist/protocol/errors.d.ts.map +1 -0
- package/dist/protocol/errors.js +36 -0
- package/dist/protocol/errors.js.map +1 -0
- package/dist/protocol/handshake.d.ts +101 -0
- package/dist/protocol/handshake.d.ts.map +1 -0
- package/dist/protocol/handshake.js +49 -0
- package/dist/protocol/handshake.js.map +1 -0
- package/dist/protocol/messages.d.ts +68 -0
- package/dist/protocol/messages.d.ts.map +1 -0
- package/dist/protocol/messages.js +20 -0
- package/dist/protocol/messages.js.map +1 -0
- package/dist/protocol/methods.d.ts +312 -0
- package/dist/protocol/methods.d.ts.map +1 -0
- package/dist/protocol/methods.js +16 -0
- package/dist/protocol/methods.js.map +1 -0
- package/dist/protocol.d.ts +598 -0
- package/dist/protocol.d.ts.map +1 -0
- package/dist/protocol.js +12 -0
- package/dist/protocol.js.map +1 -0
- package/dist/providers/auth-methods.d.ts +82 -0
- package/dist/providers/auth-methods.d.ts.map +1 -0
- package/dist/providers/auth-methods.js +180 -0
- package/dist/providers/auth-methods.js.map +1 -0
- package/dist/providers/catalog.d.ts +85 -0
- package/dist/providers/catalog.d.ts.map +1 -0
- package/dist/providers/catalog.js +41 -0
- package/dist/providers/catalog.js.map +1 -0
- package/dist/providers/validate-key.d.ts +42 -0
- package/dist/providers/validate-key.d.ts.map +1 -0
- package/dist/providers/validate-key.js.map +1 -0
- package/dist/security/external-content.d.ts +67 -0
- package/dist/security/external-content.d.ts.map +1 -0
- package/dist/security/external-content.js +80 -0
- package/dist/security/external-content.js.map +1 -0
- package/dist/security/injection-patterns.d.ts +33 -0
- package/dist/security/injection-patterns.d.ts.map +1 -0
- package/dist/security/injection-patterns.js +97 -0
- package/dist/security/injection-patterns.js.map +1 -0
- package/dist/security/media-path-guard.d.ts +25 -0
- package/dist/security/media-path-guard.d.ts.map +1 -0
- package/dist/security/media-path-guard.js +98 -0
- package/dist/security/media-path-guard.js.map +1 -0
- package/dist/security/terminal-input-sanitizer.d.ts +30 -0
- package/dist/security/terminal-input-sanitizer.d.ts.map +1 -0
- package/dist/security/terminal-input-sanitizer.js +70 -0
- package/dist/security/terminal-input-sanitizer.js.map +1 -0
- package/dist/sessions/bootstrap-marker.d.ts +5 -0
- package/dist/sessions/bootstrap-marker.d.ts.map +1 -0
- package/dist/sessions/bootstrap-marker.js +120 -0
- package/dist/sessions/bootstrap-marker.js.map +1 -0
- package/dist/sessions/session-file-repair.d.ts +12 -0
- package/dist/sessions/session-file-repair.d.ts.map +1 -0
- package/dist/sessions/session-file-repair.js +155 -0
- package/dist/sessions/session-file-repair.js.map +1 -0
- package/dist/sessions/session-key-utils.d.ts +54 -0
- package/dist/sessions/session-key-utils.d.ts.map +1 -0
- package/dist/sessions/session-key-utils.js +133 -0
- package/dist/sessions/session-key-utils.js.map +1 -0
- package/dist/sessions/session-manager-factory.d.ts +21 -0
- package/dist/sessions/session-manager-factory.d.ts.map +1 -0
- package/dist/sessions/session-manager-factory.js +142 -0
- package/dist/sessions/session-manager-factory.js.map +1 -0
- package/dist/sessions/session-store.d.ts +154 -0
- package/dist/sessions/session-store.d.ts.map +1 -0
- package/dist/sessions/session-store.js +498 -0
- package/dist/sessions/session-store.js.map +1 -0
- package/dist/sessions/session-write-lock.d.ts +10 -0
- package/dist/sessions/session-write-lock.d.ts.map +1 -0
- package/dist/sessions/session-write-lock.js +167 -0
- package/dist/sessions/session-write-lock.js.map +1 -0
- package/dist/sessions/transcript-reader.d.ts +37 -0
- package/dist/sessions/transcript-reader.d.ts.map +1 -0
- package/dist/sessions/transcript-reader.js +136 -0
- package/dist/sessions/transcript-reader.js.map +1 -0
- package/dist/sessions/transcript-repair.d.ts +16 -0
- package/dist/sessions/transcript-repair.d.ts.map +1 -0
- package/dist/sessions/transcript-repair.js +214 -0
- package/dist/sessions/transcript-repair.js.map +1 -0
- package/dist/shared/global-singleton.d.ts +27 -0
- package/dist/shared/global-singleton.d.ts.map +1 -0
- package/dist/shared/global-singleton.js +35 -0
- package/dist/shared/global-singleton.js.map +1 -0
- package/dist/shared/string-coerce.d.ts +12 -0
- package/dist/shared/string-coerce.d.ts.map +1 -0
- package/dist/shared/string-coerce.js +12 -0
- package/dist/shared/string-coerce.js.map +1 -0
- package/dist/storage/boot.d.ts +28 -0
- package/dist/storage/boot.d.ts.map +1 -0
- package/dist/storage/boot.js +588 -0
- package/dist/storage/boot.js.map +1 -0
- package/dist/storage/config-cache.d.ts +23 -0
- package/dist/storage/config-cache.d.ts.map +1 -0
- package/dist/storage/config-cache.js +58 -0
- package/dist/storage/config-cache.js.map +1 -0
- package/dist/storage/convex/auth-store.d.ts +52 -0
- package/dist/storage/convex/auth-store.d.ts.map +1 -0
- package/dist/storage/convex/auth-store.js +282 -0
- package/dist/storage/convex/auth-store.js.map +1 -0
- package/dist/storage/convex/blob-store.d.ts +20 -0
- package/dist/storage/convex/blob-store.d.ts.map +1 -0
- package/dist/storage/convex/blob-store.js +74 -0
- package/dist/storage/convex/blob-store.js.map +1 -0
- package/dist/storage/convex/channel-store.d.ts +112 -0
- package/dist/storage/convex/channel-store.d.ts.map +1 -0
- package/dist/storage/convex/channel-store.js +267 -0
- package/dist/storage/convex/channel-store.js.map +1 -0
- package/dist/storage/convex/client.d.ts +53 -0
- package/dist/storage/convex/client.d.ts.map +1 -0
- package/dist/storage/convex/client.js +121 -0
- package/dist/storage/convex/client.js.map +1 -0
- package/dist/storage/convex/config-store.d.ts +29 -0
- package/dist/storage/convex/config-store.d.ts.map +1 -0
- package/dist/storage/convex/config-store.js +205 -0
- package/dist/storage/convex/config-store.js.map +1 -0
- package/dist/storage/convex/cron-store.d.ts +86 -0
- package/dist/storage/convex/cron-store.d.ts.map +1 -0
- package/dist/storage/convex/cron-store.js +428 -0
- package/dist/storage/convex/cron-store.js.map +1 -0
- package/dist/storage/convex/exec-approval-store.d.ts +38 -0
- package/dist/storage/convex/exec-approval-store.d.ts.map +1 -0
- package/dist/storage/convex/exec-approval-store.js +147 -0
- package/dist/storage/convex/exec-approval-store.js.map +1 -0
- package/dist/storage/convex/extension-store.d.ts +28 -0
- package/dist/storage/convex/extension-store.d.ts.map +1 -0
- package/dist/storage/convex/extension-store.js +39 -0
- package/dist/storage/convex/extension-store.js.map +1 -0
- package/dist/storage/convex/index.d.ts +35 -0
- package/dist/storage/convex/index.d.ts.map +1 -0
- package/dist/storage/convex/index.js +141 -0
- package/dist/storage/convex/index.js.map +1 -0
- package/dist/storage/convex/instance-store.d.ts +37 -0
- package/dist/storage/convex/instance-store.d.ts.map +1 -0
- package/dist/storage/convex/instance-store.js +88 -0
- package/dist/storage/convex/instance-store.js.map +1 -0
- package/dist/storage/convex/log-store.d.ts +36 -0
- package/dist/storage/convex/log-store.d.ts.map +1 -0
- package/dist/storage/convex/log-store.js +213 -0
- package/dist/storage/convex/log-store.js.map +1 -0
- package/dist/storage/convex/memory-store.d.ts +50 -0
- package/dist/storage/convex/memory-store.d.ts.map +1 -0
- package/dist/storage/convex/memory-store.js +537 -0
- package/dist/storage/convex/memory-store.js.map +1 -0
- package/dist/storage/convex/message-store.d.ts +32 -0
- package/dist/storage/convex/message-store.d.ts.map +1 -0
- package/dist/storage/convex/message-store.js +272 -0
- package/dist/storage/convex/message-store.js.map +1 -0
- package/dist/storage/convex/org-store.d.ts +46 -0
- package/dist/storage/convex/org-store.d.ts.map +1 -0
- package/dist/storage/convex/org-store.js +101 -0
- package/dist/storage/convex/org-store.js.map +1 -0
- package/dist/storage/convex/session-store.d.ts +44 -0
- package/dist/storage/convex/session-store.d.ts.map +1 -0
- package/dist/storage/convex/session-store.js +257 -0
- package/dist/storage/convex/session-store.js.map +1 -0
- package/dist/storage/convex/skill-store.d.ts +49 -0
- package/dist/storage/convex/skill-store.d.ts.map +1 -0
- package/dist/storage/convex/skill-store.js +84 -0
- package/dist/storage/convex/skill-store.js.map +1 -0
- package/dist/storage/convex/subagent-store.d.ts +28 -0
- package/dist/storage/convex/subagent-store.d.ts.map +1 -0
- package/dist/storage/convex/subagent-store.js +83 -0
- package/dist/storage/convex/subagent-store.js.map +1 -0
- package/dist/storage/convex/workspace-store.d.ts +25 -0
- package/dist/storage/convex/workspace-store.d.ts.map +1 -0
- package/dist/storage/convex/workspace-store.js +127 -0
- package/dist/storage/convex/workspace-store.js.map +1 -0
- package/dist/storage/cron-cache.d.ts +17 -0
- package/dist/storage/cron-cache.d.ts.map +1 -0
- package/dist/storage/cron-cache.js +67 -0
- package/dist/storage/cron-cache.js.map +1 -0
- package/dist/storage/encryption.d.ts +69 -0
- package/dist/storage/encryption.d.ts.map +1 -0
- package/dist/storage/encryption.js +389 -0
- package/dist/storage/encryption.js.map +1 -0
- package/dist/storage/factory-reset.d.ts +7 -0
- package/dist/storage/factory-reset.d.ts.map +1 -0
- package/dist/storage/factory-reset.js +34 -0
- package/dist/storage/factory-reset.js.map +1 -0
- package/dist/storage/facts-cache.d.ts +24 -0
- package/dist/storage/facts-cache.d.ts.map +1 -0
- package/dist/storage/facts-cache.js +110 -0
- package/dist/storage/facts-cache.js.map +1 -0
- package/dist/storage/flush.d.ts +4 -0
- package/dist/storage/flush.d.ts.map +1 -0
- package/dist/storage/flush.js +128 -0
- package/dist/storage/flush.js.map +1 -0
- package/dist/storage/instance-admin.d.ts +52 -0
- package/dist/storage/instance-admin.d.ts.map +1 -0
- package/dist/storage/instance-admin.js +90 -0
- package/dist/storage/instance-admin.js.map +1 -0
- package/dist/storage/local/auth-store.d.ts +44 -0
- package/dist/storage/local/auth-store.d.ts.map +1 -0
- package/dist/storage/local/auth-store.js +252 -0
- package/dist/storage/local/auth-store.js.map +1 -0
- package/dist/storage/local/blob-store.d.ts +14 -0
- package/dist/storage/local/blob-store.d.ts.map +1 -0
- package/dist/storage/local/blob-store.js +87 -0
- package/dist/storage/local/blob-store.js.map +1 -0
- package/dist/storage/local/channel-store.d.ts +107 -0
- package/dist/storage/local/channel-store.d.ts.map +1 -0
- package/dist/storage/local/channel-store.js +147 -0
- package/dist/storage/local/channel-store.js.map +1 -0
- package/dist/storage/local/config-store.d.ts +23 -0
- package/dist/storage/local/config-store.d.ts.map +1 -0
- package/dist/storage/local/config-store.js +98 -0
- package/dist/storage/local/config-store.js.map +1 -0
- package/dist/storage/local/cron-store.d.ts +30 -0
- package/dist/storage/local/cron-store.d.ts.map +1 -0
- package/dist/storage/local/cron-store.js +186 -0
- package/dist/storage/local/cron-store.js.map +1 -0
- package/dist/storage/local/exec-approval-store.d.ts +41 -0
- package/dist/storage/local/exec-approval-store.d.ts.map +1 -0
- package/dist/storage/local/exec-approval-store.js +78 -0
- package/dist/storage/local/exec-approval-store.js.map +1 -0
- package/dist/storage/local/extension-store.d.ts +13 -0
- package/dist/storage/local/extension-store.d.ts.map +1 -0
- package/dist/storage/local/extension-store.js +36 -0
- package/dist/storage/local/extension-store.js.map +1 -0
- package/dist/storage/local/file-watcher.d.ts +24 -0
- package/dist/storage/local/file-watcher.d.ts.map +1 -0
- package/dist/storage/local/file-watcher.js +141 -0
- package/dist/storage/local/file-watcher.js.map +1 -0
- package/dist/storage/local/index.d.ts +33 -0
- package/dist/storage/local/index.d.ts.map +1 -0
- package/dist/storage/local/index.js +143 -0
- package/dist/storage/local/index.js.map +1 -0
- package/dist/storage/local/instance-store.d.ts +30 -0
- package/dist/storage/local/instance-store.d.ts.map +1 -0
- package/dist/storage/local/instance-store.js +83 -0
- package/dist/storage/local/instance-store.js.map +1 -0
- package/dist/storage/local/log-store.d.ts +27 -0
- package/dist/storage/local/log-store.d.ts.map +1 -0
- package/dist/storage/local/log-store.js +185 -0
- package/dist/storage/local/log-store.js.map +1 -0
- package/dist/storage/local/memory-store.d.ts +39 -0
- package/dist/storage/local/memory-store.d.ts.map +1 -0
- package/dist/storage/local/memory-store.js +258 -0
- package/dist/storage/local/memory-store.js.map +1 -0
- package/dist/storage/local/message-store.d.ts +27 -0
- package/dist/storage/local/message-store.d.ts.map +1 -0
- package/dist/storage/local/message-store.js +253 -0
- package/dist/storage/local/message-store.js.map +1 -0
- package/dist/storage/local/org-store.d.ts +39 -0
- package/dist/storage/local/org-store.d.ts.map +1 -0
- package/dist/storage/local/org-store.js +155 -0
- package/dist/storage/local/org-store.js.map +1 -0
- package/dist/storage/local/session-store.d.ts +30 -0
- package/dist/storage/local/session-store.d.ts.map +1 -0
- package/dist/storage/local/session-store.js +82 -0
- package/dist/storage/local/session-store.js.map +1 -0
- package/dist/storage/local/skill-store.d.ts +40 -0
- package/dist/storage/local/skill-store.d.ts.map +1 -0
- package/dist/storage/local/skill-store.js +121 -0
- package/dist/storage/local/skill-store.js.map +1 -0
- package/dist/storage/local/subagent-store.d.ts +20 -0
- package/dist/storage/local/subagent-store.d.ts.map +1 -0
- package/dist/storage/local/subagent-store.js +71 -0
- package/dist/storage/local/subagent-store.js.map +1 -0
- package/dist/storage/local/workspace-store.d.ts +22 -0
- package/dist/storage/local/workspace-store.d.ts.map +1 -0
- package/dist/storage/local/workspace-store.js +190 -0
- package/dist/storage/local/workspace-store.js.map +1 -0
- package/dist/storage/migrate.d.ts +64 -0
- package/dist/storage/migrate.d.ts.map +1 -0
- package/dist/storage/migrate.js +581 -0
- package/dist/storage/migrate.js.map +1 -0
- package/dist/storage/runtime-context.d.ts +35 -0
- package/dist/storage/runtime-context.d.ts.map +1 -0
- package/dist/storage/runtime-context.js +145 -0
- package/dist/storage/runtime-context.js.map +1 -0
- package/dist/storage/sentinel.d.ts +28 -0
- package/dist/storage/sentinel.d.ts.map +1 -0
- package/dist/storage/sentinel.js +98 -0
- package/dist/storage/sentinel.js.map +1 -0
- package/dist/storage/session-cache.d.ts +15 -0
- package/dist/storage/session-cache.d.ts.map +1 -0
- package/dist/storage/session-cache.js +81 -0
- package/dist/storage/session-cache.js.map +1 -0
- package/dist/storage/store.d.ts +745 -0
- package/dist/storage/store.d.ts.map +1 -0
- package/dist/storage/store.js +36 -0
- package/dist/storage/store.js.map +1 -0
- package/dist/storage/strict-guard.d.ts +17 -0
- package/dist/storage/strict-guard.d.ts.map +1 -0
- package/dist/storage/strict-guard.js +200 -0
- package/dist/storage/strict-guard.js.map +1 -0
- package/dist/storage/workspace-live-mirror.d.ts +33 -0
- package/dist/storage/workspace-live-mirror.d.ts.map +1 -0
- package/dist/storage/workspace-live-mirror.js +207 -0
- package/dist/storage/workspace-live-mirror.js.map +1 -0
- package/dist/system-prompt/assembler.d.ts +113 -0
- package/dist/system-prompt/assembler.d.ts.map +1 -0
- package/dist/system-prompt/assembler.js +649 -0
- package/dist/system-prompt/assembler.js.map +1 -0
- package/dist/system-prompt/bootstrap-budget.d.ts +22 -0
- package/dist/system-prompt/bootstrap-budget.d.ts.map +1 -0
- package/dist/system-prompt/bootstrap-budget.js +83 -0
- package/dist/system-prompt/bootstrap-budget.js.map +1 -0
- package/dist/system-prompt/cache-boundary.d.ts +13 -0
- package/dist/system-prompt/cache-boundary.d.ts.map +1 -0
- package/dist/system-prompt/cache-boundary.js +56 -0
- package/dist/system-prompt/cache-boundary.js.map +1 -0
- package/dist/system-prompt/cache-stability.d.ts +3 -0
- package/dist/system-prompt/cache-stability.d.ts.map +1 -0
- package/dist/system-prompt/cache-stability.js +18 -0
- package/dist/system-prompt/cache-stability.js.map +1 -0
- package/dist/system-prompt/guidance.d.ts +147 -0
- package/dist/system-prompt/guidance.d.ts.map +1 -0
- package/dist/system-prompt/guidance.js +352 -0
- package/dist/system-prompt/guidance.js.map +1 -0
- package/dist/system-prompt/identity-defaults.d.ts +50 -0
- package/dist/system-prompt/identity-defaults.d.ts.map +1 -0
- package/dist/system-prompt/identity-defaults.js +119 -0
- package/dist/system-prompt/identity-defaults.js.map +1 -0
- package/dist/system-prompt/org/escalation-inbox.d.ts +53 -0
- package/dist/system-prompt/org/escalation-inbox.d.ts.map +1 -0
- package/dist/system-prompt/org/escalation-inbox.js +71 -0
- package/dist/system-prompt/org/escalation-inbox.js.map +1 -0
- package/dist/system-prompt/org/receiver-hint.d.ts +72 -0
- package/dist/system-prompt/org/receiver-hint.d.ts.map +1 -0
- package/dist/system-prompt/org/receiver-hint.js +116 -0
- package/dist/system-prompt/org/receiver-hint.js.map +1 -0
- package/dist/system-prompt/org/render-org-block.d.ts +42 -0
- package/dist/system-prompt/org/render-org-block.d.ts.map +1 -0
- package/dist/system-prompt/org/render-org-block.js +57 -0
- package/dist/system-prompt/org/render-org-block.js.map +1 -0
- package/dist/system-prompt/org/sub-agent-anchor.d.ts +30 -0
- package/dist/system-prompt/org/sub-agent-anchor.d.ts.map +1 -0
- package/dist/system-prompt/org/sub-agent-anchor.js +36 -0
- package/dist/system-prompt/org/sub-agent-anchor.js.map +1 -0
- package/dist/system-prompt/override.d.ts +7 -0
- package/dist/system-prompt/override.d.ts.map +1 -0
- package/dist/system-prompt/override.js +13 -0
- package/dist/system-prompt/override.js.map +1 -0
- package/dist/system-prompt/pi-injection.d.ts +5 -0
- package/dist/system-prompt/pi-injection.d.ts.map +1 -0
- package/dist/system-prompt/pi-injection.js +33 -0
- package/dist/system-prompt/pi-injection.js.map +1 -0
- package/dist/system-prompt/runtime-params.d.ts +34 -0
- package/dist/system-prompt/runtime-params.d.ts.map +1 -0
- package/dist/system-prompt/runtime-params.js +108 -0
- package/dist/system-prompt/runtime-params.js.map +1 -0
- package/dist/system-prompt/sanitize.d.ts +7 -0
- package/dist/system-prompt/sanitize.d.ts.map +1 -0
- package/dist/system-prompt/sanitize.js +31 -0
- package/dist/system-prompt/sanitize.js.map +1 -0
- package/dist/system-prompt/types.d.ts +7 -0
- package/dist/system-prompt/types.d.ts.map +1 -0
- package/dist/system-prompt/types.js +3 -0
- package/dist/system-prompt/types.js.map +1 -0
- package/dist/system-prompt/workspace-loader.d.ts +12 -0
- package/dist/system-prompt/workspace-loader.d.ts.map +1 -0
- package/dist/system-prompt/workspace-loader.js +115 -0
- package/dist/system-prompt/workspace-loader.js.map +1 -0
- package/dist/tideline/advanced.d.ts +25 -0
- package/dist/tideline/advanced.d.ts.map +1 -0
- package/dist/tideline/advanced.js +34 -0
- package/dist/tideline/advanced.js.map +1 -0
- package/dist/tideline/eval.d.ts +19 -0
- package/dist/tideline/eval.d.ts.map +1 -0
- package/dist/tideline/eval.js +24 -0
- package/dist/tideline/eval.js.map +1 -0
- package/dist/tideline/host-ports.standalone.d.ts +49 -0
- package/dist/tideline/host-ports.standalone.d.ts.map +1 -0
- package/dist/tideline/host-ports.standalone.js +61 -0
- package/dist/tideline/host-ports.standalone.js.map +1 -0
- package/dist/tideline/index.d.ts +34 -0
- package/dist/tideline/index.d.ts.map +1 -0
- package/dist/tideline/index.js +42 -0
- package/dist/tideline/index.js.map +1 -0
- package/dist/tui/approval-prompt.d.ts +73 -0
- package/dist/tui/approval-prompt.d.ts.map +1 -0
- package/dist/tui/approval-prompt.js +272 -0
- package/dist/tui/approval-prompt.js.map +1 -0
- package/dist/tui/client.d.ts +89 -0
- package/dist/tui/client.d.ts.map +1 -0
- package/dist/tui/client.js.map +1 -0
- package/dist/ui/brand-frames-cli.d.ts +19 -0
- package/dist/ui/brand-frames-cli.d.ts.map +1 -0
- package/dist/ui/brand-frames-cli.js +8 -13
- package/dist/ui/brand-frames-cli.js.map +1 -0
- package/dist/ui/brand.d.ts +41 -0
- package/dist/ui/brand.d.ts.map +1 -0
- package/dist/ui/brand.js +28 -6
- package/dist/ui/brand.js.map +1 -0
- package/dist/ui/editor.d.ts +30 -0
- package/dist/ui/editor.d.ts.map +1 -0
- package/dist/ui/editor.js +73 -0
- package/dist/ui/editor.js.map +1 -0
- package/dist/ui/format-session.d.ts +68 -0
- package/dist/ui/format-session.d.ts.map +1 -0
- package/dist/ui/format-session.js +181 -0
- package/dist/ui/format-session.js.map +1 -0
- package/dist/ui/markdown.d.ts +48 -0
- package/dist/ui/markdown.d.ts.map +1 -0
- package/dist/ui/markdown.js +60 -0
- package/dist/ui/markdown.js.map +1 -0
- package/dist/ui/onboard-storage-mode.d.ts +17 -0
- package/dist/ui/onboard-storage-mode.d.ts.map +1 -0
- package/dist/ui/onboard-storage-mode.js +638 -0
- package/dist/ui/onboard-storage-mode.js.map +1 -0
- package/dist/ui/onboarding.d.ts +97 -0
- package/dist/ui/onboarding.d.ts.map +1 -0
- package/dist/ui/onboarding.js +259 -111
- package/dist/ui/onboarding.js.map +1 -0
- package/dist/ui/searchable-select.d.ts +48 -0
- package/dist/ui/searchable-select.d.ts.map +1 -0
- package/dist/ui/searchable-select.js +108 -0
- package/dist/ui/searchable-select.js.map +1 -0
- package/dist/ui/syntax-theme.d.ts +30 -0
- package/dist/ui/syntax-theme.d.ts.map +1 -0
- package/dist/ui/syntax-theme.js +72 -0
- package/dist/ui/syntax-theme.js.map +1 -0
- package/dist/ui/terminal-cleanup.d.ts +46 -0
- package/dist/ui/terminal-cleanup.d.ts.map +1 -0
- package/dist/ui/terminal-cleanup.js +17 -5
- package/dist/ui/terminal-cleanup.js.map +1 -0
- package/dist/ui/theme.d.ts +21 -0
- package/dist/ui/theme.d.ts.map +1 -0
- package/dist/ui/theme.js +66 -2
- package/dist/ui/theme.js.map +1 -0
- package/dist/ui/tool-result.d.ts +47 -0
- package/dist/ui/tool-result.d.ts.map +1 -0
- package/dist/ui/tool-result.js +100 -0
- package/dist/ui/tool-result.js.map +1 -0
- package/dist/utils/delivery-context.d.ts +50 -0
- package/dist/utils/delivery-context.d.ts.map +1 -0
- package/dist/utils/delivery-context.js +82 -0
- package/dist/utils/delivery-context.js.map +1 -0
- package/dist/utils/message-channel.d.ts +60 -0
- package/dist/utils/message-channel.d.ts.map +1 -0
- package/dist/utils/message-channel.js +103 -0
- package/dist/utils/message-channel.js.map +1 -0
- package/dist/utils/string-coerce.d.ts +50 -0
- package/dist/utils/string-coerce.d.ts.map +1 -0
- package/dist/utils/string-coerce.js +101 -0
- package/dist/utils/string-coerce.js.map +1 -0
- package/dist/version.d.ts +20 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +54 -0
- package/dist/version.js.map +1 -0
- package/dist/workspace/bootstrap.d.ts +12 -0
- package/dist/workspace/bootstrap.d.ts.map +1 -0
- package/dist/workspace/bootstrap.js +123 -0
- package/dist/workspace/bootstrap.js.map +1 -0
- package/dist/workspace/fs-utils.d.ts +2 -0
- package/dist/workspace/fs-utils.d.ts.map +1 -0
- package/dist/workspace/fs-utils.js +14 -0
- package/dist/workspace/fs-utils.js.map +1 -0
- package/dist/workspace/git-init.d.ts +5 -0
- package/dist/workspace/git-init.d.ts.map +1 -0
- package/dist/workspace/git-init.js +71 -0
- package/dist/workspace/git-init.js.map +1 -0
- package/dist/workspace/state.d.ts +13 -0
- package/dist/workspace/state.d.ts.map +1 -0
- package/dist/workspace/state.js +128 -0
- package/dist/workspace/state.js.map +1 -0
- package/dist/workspace/template-loader.d.ts +15 -0
- package/dist/workspace/template-loader.d.ts.map +1 -0
- package/dist/workspace/template-loader.js +214 -0
- package/dist/workspace/template-loader.js.map +1 -0
- package/package.json +173 -68
- package/scripts/build-done.mjs +125 -0
- package/scripts/run-brigade.mjs +208 -0
- package/skills/1password/SKILL.md +70 -0
- package/skills/1password/references/cli-examples.md +29 -0
- package/skills/1password/references/get-started.md +17 -0
- package/skills/apple-notes/SKILL.md +77 -0
- package/skills/apple-reminders/SKILL.md +118 -0
- package/skills/bear-notes/SKILL.md +107 -0
- package/skills/blogwatcher/SKILL.md +69 -0
- package/skills/blucli/SKILL.md +47 -0
- package/skills/bluebubbles/SKILL.md +136 -0
- package/skills/camsnap/SKILL.md +45 -0
- package/skills/canvas/SKILL.md +204 -0
- package/skills/coding-agent/SKILL.md +316 -0
- package/skills/discord/SKILL.md +197 -0
- package/skills/eightctl/SKILL.md +50 -0
- package/skills/gemini/SKILL.md +43 -0
- package/skills/gh-issues/SKILL.md +885 -0
- package/skills/gifgrep/SKILL.md +79 -0
- package/skills/git-commit/SKILL.md +40 -0
- package/skills/github/SKILL.md +163 -0
- package/skills/gog/SKILL.md +116 -0
- package/skills/goplaces/SKILL.md +52 -0
- package/skills/healthcheck/SKILL.md +245 -0
- package/skills/himalaya/SKILL.md +257 -0
- package/skills/himalaya/references/configuration.md +184 -0
- package/skills/himalaya/references/message-composition.md +199 -0
- package/skills/imsg/SKILL.md +122 -0
- package/skills/lead-scout/SKILL.md +46 -0
- package/skills/mcporter/SKILL.md +61 -0
- package/skills/model-usage/SKILL.md +69 -0
- package/skills/nano-pdf/SKILL.md +38 -0
- package/skills/node-connect/SKILL.md +142 -0
- package/skills/notion/SKILL.md +174 -0
- package/skills/oauth-setup/SKILL.md +55 -0
- package/skills/obsidian/SKILL.md +81 -0
- package/skills/openai-whisper/SKILL.md +38 -0
- package/skills/openai-whisper-api/SKILL.md +62 -0
- package/skills/openai-whisper-api/scripts/transcribe.sh +88 -0
- package/skills/openhue/SKILL.md +112 -0
- package/skills/oracle/SKILL.md +125 -0
- package/skills/ordercli/SKILL.md +78 -0
- package/skills/peekaboo/SKILL.md +190 -0
- package/skills/sag/SKILL.md +87 -0
- package/skills/session-logs/SKILL.md +151 -0
- package/skills/share-skills/SKILL.md +72 -0
- package/skills/sherpa-onnx-tts/SKILL.md +109 -0
- package/skills/sherpa-onnx-tts/bin/sherpa-onnx-tts +178 -0
- package/skills/skill-creator/SKILL.md +372 -0
- package/skills/skill-creator/license.txt +202 -0
- package/skills/skill-creator/scripts/init_skill.py +378 -0
- package/skills/skill-creator/scripts/package_skill.py +139 -0
- package/skills/skill-creator/scripts/quick_validate.py +159 -0
- package/skills/skill-creator/scripts/test_package_skill.py +160 -0
- package/skills/skill-creator/scripts/test_quick_validate.py +72 -0
- package/skills/slack/SKILL.md +144 -0
- package/skills/songsee/SKILL.md +49 -0
- package/skills/sonoscli/SKILL.md +65 -0
- package/skills/spotify-player/SKILL.md +64 -0
- package/skills/summarize/SKILL.md +87 -0
- package/skills/taskflow/SKILL.md +149 -0
- package/skills/taskflow-inbox-triage/SKILL.md +119 -0
- package/skills/things-mac/SKILL.md +86 -0
- package/skills/tmux/SKILL.md +170 -0
- package/skills/tmux/scripts/find-sessions.sh +112 -0
- package/skills/tmux/scripts/wait-for-text.sh +83 -0
- package/skills/trello/SKILL.md +108 -0
- package/skills/video-frames/SKILL.md +46 -0
- package/skills/video-frames/scripts/frame.sh +81 -0
- package/skills/voice-call/SKILL.md +45 -0
- package/skills/wacli/SKILL.md +72 -0
- package/skills/weather/SKILL.md +129 -0
- package/skills/xurl/SKILL.md +461 -0
- package/templates/workspace/AGENTS.md +223 -0
- package/templates/workspace/BOOTSTRAP.md +64 -0
- package/templates/workspace/HEARTBEAT.md +15 -0
- package/templates/workspace/IDENTITY.md +31 -0
- package/templates/workspace/SOUL.md +47 -0
- package/templates/workspace/TOOLS.md +48 -0
- package/templates/workspace/USER.md +25 -0
- package/CHANGELOG.md +0 -41
- package/SECURITY.md +0 -208
- package/assets/brigade-wordmark.png +0 -0
- package/dist/cli/chat-cmd.js +0 -191
- package/dist/cli/config-cmd.js +0 -171
- package/dist/cli/connect-cmd.js +0 -487
- package/dist/cli/doctor-cmd.js +0 -387
- package/dist/cli/gateway-cmd.js +0 -155
- package/dist/cli.js +0 -328
- package/dist/core/agent.js +0 -1123
- package/dist/core/auth-label.js +0 -147
- package/dist/core/cli-error.js +0 -94
- package/dist/core/error-classifier.js +0 -354
- package/dist/core/provider-payload-mutators.js +0 -517
- package/dist/core/provider-quirks.js +0 -285
- package/dist/core/smart-compaction.js +0 -209
- package/dist/core/system-prompt-defaults.js +0 -264
- package/dist/core/system-prompt-guidance.js +0 -271
- package/dist/index.js +0 -32
- package/dist/ui/brand-frames.js +0 -36
- package/dist/ui/chat.js +0 -1008
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Brigade Pride taunts bank.
|
|
3
|
+
*
|
|
4
|
+
* This bank was researched from real corporate-cringe sources (reddit
|
|
5
|
+
* r/antiwork, r/MaliciousCompliance, r/sysadmin, r/cscareerquestions,
|
|
6
|
+
* twitter / X manager-dunk threads, Hacker News dead-company postmortems,
|
|
7
|
+
* Glassdoor reviews, and classic media tropes such as Office Space, Severance,
|
|
8
|
+
* Silicon Valley, The Office, and Lumon-style middle-management horror).
|
|
9
|
+
*
|
|
10
|
+
* Every example was anonymised, scrubbed of real company / real person
|
|
11
|
+
* identifiers, and re-flavoured into Brigade's voice: lovingly cruel about
|
|
12
|
+
* the CORPORATE CONVENTION, never about a named real human.
|
|
13
|
+
*
|
|
14
|
+
* The M-word ("manager") is banned in this bank and substituted with archetypes
|
|
15
|
+
* (calendar emperor, ceremony master, process police, OKR enforcer, vibes
|
|
16
|
+
* janitor, synergy gardener, Jira gardener, PowerPoint shaman, Confluence
|
|
17
|
+
* colonist, decision deferrer, email forwarder, Slack archaeologist,
|
|
18
|
+
* escalation router, head of nothing in particular, the suit, etc).
|
|
19
|
+
*
|
|
20
|
+
* Live counts (from the synth pipeline):
|
|
21
|
+
* - taunts_total : 145
|
|
22
|
+
* - footer_rules_total : 50
|
|
23
|
+
* - stories_total : 142
|
|
24
|
+
* - dedupe_removed : 87
|
|
25
|
+
* - m_word_strikes : 0
|
|
26
|
+
*
|
|
27
|
+
* Picks happen at every Pride chart render via pickTaunt / pickFooterRule /
|
|
28
|
+
* pickStory, so no two consecutive views show the same joke. Tests pin output
|
|
29
|
+
* by passing a deterministic RNG built from createSeededRng(seed).
|
|
30
|
+
*/
|
|
31
|
+
export const BRIGADE_TAUNTS = [
|
|
32
|
+
"Your org chart has three layers and two of them just forward emails.",
|
|
33
|
+
"The calendar emperor scheduled a meeting to prep for the meeting that preps for the meeting.",
|
|
34
|
+
"Someone on Slack just typed 'circling back' and a Brigade agent already shipped the feature.",
|
|
35
|
+
"A whole department exists to ask if the other department is unblocked. Brigade is the other department.",
|
|
36
|
+
"The process police want a Jira ticket for the Jira ticket.",
|
|
37
|
+
"Your decision deferrer has been 'looping in stakeholders' since Q1. Brigade looped in nobody and shipped.",
|
|
38
|
+
"The escalation router escalated your question to the person who first asked you the question.",
|
|
39
|
+
"A synergy gardener is renaming 'standup' to 'sync' to 'huddle' to 'pulse'. Same meeting. Same nothing.",
|
|
40
|
+
"The OKR enforcer set a key result for the key result.",
|
|
41
|
+
"Your PowerPoint shaman just turned a paragraph into 14 slides and an action item.",
|
|
42
|
+
"The vibes janitor reminded everyone to 'bring their authentic self' to the layoff.",
|
|
43
|
+
"Brigade doesn't have a head of nothing in particular. We checked.",
|
|
44
|
+
"The Confluence colonist wrote a 4000-word doc nobody will read about the doc nobody read.",
|
|
45
|
+
"The suit said 'we're a family' then changed the locks at 5pm Friday.",
|
|
46
|
+
"The Slack archaeologist is still mining 2024 threads for context Brigade inferred in one prompt.",
|
|
47
|
+
"The meeting-haver has 38 hours of meetings this week and 0 hours of output.",
|
|
48
|
+
"Brigade's stand-up is one line of JSON. Yours is forty minutes and a whiteboard photo.",
|
|
49
|
+
"The email forwarder added their name to the thread and called it leadership.",
|
|
50
|
+
"Brigade has no skip-level skip-level. We checked twice. There isn't even a level.",
|
|
51
|
+
"The calendar emperor blocked 'focus time' so you'd be free for their focus-time review.",
|
|
52
|
+
"The decision deferrer called a meeting to decide who should call the meeting to decide.",
|
|
53
|
+
"The OKR theatre director added 'leverage AI synergies' as Q3. Brigade is done with Q4.",
|
|
54
|
+
"Brigade skipped the middle layer. The middle layer was just forwarding emails anyway.",
|
|
55
|
+
"The credit taker is in your 1:1 explaining your work to you so they can present it Tuesday.",
|
|
56
|
+
"The process police want a pre-mortem, post-mortem, and mid-mortem. Brigade just fixed the bug.",
|
|
57
|
+
"Your ceremony master made you write a doc about why you didn't write a doc.",
|
|
58
|
+
"The escalation router CC'd seven VPs on a typo fix.",
|
|
59
|
+
"Brigade's org chart fits on a sticky note. Yours needs a Confluence space.",
|
|
60
|
+
"The synergy gardener called the layoff 'a values-aligned right-sizing toward our north star'.",
|
|
61
|
+
"Calendar emperor declared Wednesday 'no-meeting day' and scheduled a meeting to announce it.",
|
|
62
|
+
"Three weeks of meetings about blockchain. Nobody in the room could spell it.",
|
|
63
|
+
"The org chart has 14 layers. The on-call rotation has one human.",
|
|
64
|
+
"Daily standup at 9, status meeting at 10, recap at 11, retro at 4. When do you ship?",
|
|
65
|
+
"PowerPoint shaman speaks in slide numbers. 'Per slide 14...' Brother, slide 14 is clipart.",
|
|
66
|
+
"OKR enforcer demanded measurable outcomes for breathing. Q3 inhales: 47, on track.",
|
|
67
|
+
"Confluence colonist's life work: a 2,400-page wiki nobody opens.",
|
|
68
|
+
"Vibes janitor's only KPI: how the room feels after their All-Hands.",
|
|
69
|
+
"Jira gardener moved a ticket from 'In Progress' to 'In Progress (v2)'. That's the work.",
|
|
70
|
+
"Process police rejected the PR because the title didn't match the ticket-naming-convention-v3.",
|
|
71
|
+
"Slack archaeologist replied to a thread from March. It was October. Of the next year.",
|
|
72
|
+
"Decision deferrer: 'Let's circle back.' We circled back. The fire is still on fire.",
|
|
73
|
+
"'Just copy-paste to the new engine, should take a week,' said someone who has never seen code.",
|
|
74
|
+
"Calendar emperor blocks 4 hours daily for 'focus time' to look at other people's calendars.",
|
|
75
|
+
"The email forwarder added 'thoughts?' as their entire contribution to a 30-message thread.",
|
|
76
|
+
"Head of nothing in particular celebrated 1 year. Team can't name a thing they shipped.",
|
|
77
|
+
"Whitelist of 10 acceptable websites. Google was one. Most results were blocked.",
|
|
78
|
+
"The meeting-haver invited 'optional 14' to a sync. All 14 showed. Nothing was decided.",
|
|
79
|
+
"OKR enforcer: KR3 is 'increase developer happiness 20%.' Survey is mandatory but anonymous.",
|
|
80
|
+
"Ceremony master cancelled the retro because morale was 'too negative' in the last retro.",
|
|
81
|
+
"Engineering said 'we need backups.' The suit said 'we need vibes.' Vibes did not restore the DB.",
|
|
82
|
+
"Five people summoned to read a deck back at each other. Could've been a Confluence page.",
|
|
83
|
+
"'Quick sync' is code for I haven't thought about it and want company while I don't.",
|
|
84
|
+
"Every standup: yesterday I did the work, today I will do the work. A parody of productivity.",
|
|
85
|
+
"The ceremony master scheduled a retro of the retro. It's retros all the way down.",
|
|
86
|
+
"Pre-meeting to align on the meeting. Post-meeting to align on the alignment. Where was the work?",
|
|
87
|
+
"'Take it offline' has been said three times this meeting. There is no offline. Only the next meeting.",
|
|
88
|
+
"A 30-minute meeting eats 90 minutes of your day. The calendar emperor knows. The calendar emperor doesn't care.",
|
|
89
|
+
"Your OKRs are theatre. Q1 you wrote them. Q3 you reframed last quarter's accidents as wins.",
|
|
90
|
+
"Skip-level skip-level skip-level. At some point the org chart loops back and asks for status.",
|
|
91
|
+
"Six people on this call. Two presenting. Three pretending. One reheating soup.",
|
|
92
|
+
"'I'll loop you in' means CC'd on a thread that ends, three weeks later, with 'never mind'.",
|
|
93
|
+
"Status meeting in front of 30 people while 30 people silently fill out a Google Doc.",
|
|
94
|
+
"The vibes janitor can't read PRs or write specs, but can hold a 90-minute alignment workshop.",
|
|
95
|
+
"Sprint planning runs longer than the sprint. The sprint is a planning meeting that ships sometimes.",
|
|
96
|
+
"Promoted to Lead and immediately enrolled in six new recurring meetings. Same job. New calendar prison.",
|
|
97
|
+
"A 12-person call ended with 'well, we'll see, we need to check'. Twelve salaries. One shrug.",
|
|
98
|
+
"Your PM ghosted the customer call and pre-met with you about ghosting it. Two meetings. Zero customers.",
|
|
99
|
+
"Three-hour conference call. Your contribution: 47 seconds. Decisions made: zero.",
|
|
100
|
+
"The process police flagged your PR for missing a label nobody documented. The label is the work now.",
|
|
101
|
+
"Daily standup, weekly status, biweekly check-in, monthly review, quarterly OKR theatre. Work happens at 10pm.",
|
|
102
|
+
"Brigade skips the middle layer because the middle layer scheduled a meeting to debate existing.",
|
|
103
|
+
"Brigade has no middle layer because the middle layer is just the email-forwarder with a calendar invite.",
|
|
104
|
+
"A calendar emperor's promotion is just a longer email signature.",
|
|
105
|
+
"The ceremony master scheduled a 60-min sync to decide whether the 30-min sync was worth it.",
|
|
106
|
+
"If everyone is the escalation router, no one is doing the thing being escalated.",
|
|
107
|
+
"Brigade ships. Your Confluence colonist documents the shipping ceremony.",
|
|
108
|
+
"Your OKR enforcer moved the goalposts and called it 'iterative goal-setting'.",
|
|
109
|
+
"The Slack archaeologist pinned a five-month-old thread and called it a strategy.",
|
|
110
|
+
"Meeting cancelled? The ceremony master held it anyway, for closure.",
|
|
111
|
+
"A PowerPoint shaman opened with 48 slides about removing 48 slides.",
|
|
112
|
+
"Status meeting got renamed 'alignment artifact' and somehow lasted longer.",
|
|
113
|
+
"Your Jira gardener closed your ticket as a duplicate of itself.",
|
|
114
|
+
"Brigade doesn't have a 'VP of Strategic Initiatives'. We have a thing that works.",
|
|
115
|
+
"Calendar emperor blocked your focus time to discuss your focus time.",
|
|
116
|
+
"The synergy gardener watered the OKR until it grew into a second OKR.",
|
|
117
|
+
"Your ceremony master rebranded the standup as a 'tactical alignment ritual'.",
|
|
118
|
+
"The suit took credit for the deploy by being CC'd on the PR.",
|
|
119
|
+
"Process police flagged your three-line fix for missing the design-review template.",
|
|
120
|
+
"Mandatory fun was scheduled, attended, and immediately followed by a retro about the fun.",
|
|
121
|
+
"The decision deferrer makes a 'yes' feel like 'maybe' and a 'no' feel like 'we'll see'.",
|
|
122
|
+
"Your email finds the calendar emperor deeply unwell. Teetering, really.",
|
|
123
|
+
"Ceremony master rewards the team with leaving 10 minutes early. The team weeps with rage.",
|
|
124
|
+
"Process police asked for a quick chat. Update LinkedIn. Update will. Update next of kin.",
|
|
125
|
+
"Confluence colonist plants a flag on a doc no one will ever read again.",
|
|
126
|
+
"OKR enforcer set a stretch goal of 'be alive in Q3.' Stretch indeed.",
|
|
127
|
+
"Calendar emperor blocks 2-4pm 'Focus.' Focuses entirely on lunch.",
|
|
128
|
+
"The email forwarder is a load-balancer made of cowardice.",
|
|
129
|
+
"Jira gardener moved your ticket to In Review for the fourth straight sprint.",
|
|
130
|
+
"Escalation router cc'd six people so none of them are responsible.",
|
|
131
|
+
"Calendar emperor's out-of-office is longer than his actual contributions.",
|
|
132
|
+
"Process police flagged the ticket because it lacked a label called 'label.'",
|
|
133
|
+
"Vibes janitor posted rocket emoji on a postmortem about a SEV1. Read the room.",
|
|
134
|
+
"Slack archaeologist found a thread from 2024 and re-opened it like a tomb.",
|
|
135
|
+
"Confluence colonist named the doc 'FINAL_v7_USE_THIS_ONE_actually_final.' Reader, it wasn't.",
|
|
136
|
+
"Calendar emperor 'has a hard stop' eighty minutes into a sixty-minute meeting.",
|
|
137
|
+
"PowerPoint shaman opened with a quote from Sun Tzu about a Q2 roadmap slip.",
|
|
138
|
+
"OKR theatre director graded himself 0.7 on a KR he invented at 4:59pm Friday.",
|
|
139
|
+
"Meeting-haver's 1:1 agenda: 'open discussion.' Translation: I need a hostage.",
|
|
140
|
+
"Jira gardener invented a column called 'Wontfix-but-tracking' which is just denial with a label.",
|
|
141
|
+
"Calendar emperor put 'thinking time' on the calendar. The thinking is about lunch.",
|
|
142
|
+
"The middle layer doesn't run work. It schedules work to run itself.",
|
|
143
|
+
"A standup is a 1950s nose-count with worse coffee and more Jira tabs open.",
|
|
144
|
+
"If a process needs a ceremony, it's not a process. It's a seance.",
|
|
145
|
+
"Scrum is for rugby. The ceremony master just liked the hat.",
|
|
146
|
+
"OKRs only appear two weeks before review season, like cicadas with worse music.",
|
|
147
|
+
"If your boss needs a daily standup to know what you did, the standup isn't the problem.",
|
|
148
|
+
"The ceremony is part of the spell. Without the ritual, the suit evaporates.",
|
|
149
|
+
"Process police don't enforce rules. They enforce the existence of rules.",
|
|
150
|
+
"The vibes janitor cleans up after decisions nobody made.",
|
|
151
|
+
"Synergy gardener: waters slide decks, harvests promotions.",
|
|
152
|
+
"Jira gardener prunes columns instead of bugs.",
|
|
153
|
+
"PowerPoint shaman summons quarterly visions from a font and a gradient.",
|
|
154
|
+
"The OKR enforcer measures the ruler with another ruler.",
|
|
155
|
+
"Status meeting: a tax on doing the work, payable in your only good hour.",
|
|
156
|
+
"If the standup hits 30 minutes, it's not standing. It's a hostage situation.",
|
|
157
|
+
"Sprint planning is just waterfall with anxiety on top.",
|
|
158
|
+
"Performance review: selective memory in a Google Doc, billed as a narrative.",
|
|
159
|
+
"Backlog grooming: combing a horse that died last quarter.",
|
|
160
|
+
"An agile coach is a process police officer with a yoga mat.",
|
|
161
|
+
"Retro: same problems, new sticky notes, same color of regret.",
|
|
162
|
+
"If the only person who needs the meeting is the one calling it, that's not a meeting. That's therapy.",
|
|
163
|
+
"Calendar emperor's superpower: making a 15-minute sync metastasize into a recurring 45.",
|
|
164
|
+
"Slack-emoji enforcer treats a thumbs-up like a signed contract.",
|
|
165
|
+
"Status report: a colorized lie reformatted into a quarterly truth.",
|
|
166
|
+
"Process police always have time for a meeting about why nobody has time.",
|
|
167
|
+
"Ceremony master would rather have a clean velocity chart than working software.",
|
|
168
|
+
"If you need a tool to enforce discipline, you don't have discipline. You have a tool.",
|
|
169
|
+
"Brigade skipped the layer whose entire job was 'syncing on the sync.'",
|
|
170
|
+
"No vibes janitor. No emoji enforcer. No reactji audit.",
|
|
171
|
+
"Their Slack archaeologist quoted threads from 2019 in standup.",
|
|
172
|
+
"Their head of nothing in particular hosted a fireside about himself.",
|
|
173
|
+
"Their suit asked us to 'sharpen the pencil' on a pencil-sharpening doc.",
|
|
174
|
+
"Brigade has zero layers between the idea and the artifact.",
|
|
175
|
+
"Brigade ships. Lumon dances. We know which one you wanted.",
|
|
176
|
+
"The Conjoined Triangles of Success have been reduced to a single straight line: ship.",
|
|
177
|
+
"No box ticker is here to confirm you ticked the box about ticking the box.",
|
|
178
|
+
"No 'leverage' verb will be applied to a noun that did not consent.",
|
|
179
|
+
"Brigade skipped the layer whose entire output was the phrase 'let's align.'",
|
|
180
|
+
"No ladder to incompetence. Senior IC is the only ceiling, and the ceiling is sky.",
|
|
181
|
+
"Q3 OKR for the OKR taskforce: define what an OKR is. Stretch goal: define 'stretch goal'.",
|
|
182
|
+
"Synergy is just six people watching one person type.",
|
|
183
|
+
"The retro about the retro retro'd into a new retro cadence.",
|
|
184
|
+
"Executive bingo card: 'circle back', 'low-hanging', 'boil the ocean'. Free space: the meeting itself.",
|
|
185
|
+
"Calendar tetris champion blocked Friday 4pm to think about blocking Friday 4pm.",
|
|
186
|
+
"Standup ran 52 minutes. Nobody stood. Nothing was up.",
|
|
187
|
+
"Performance review: 'exceeds expectations at attending performance reviews.'",
|
|
188
|
+
"The alignment doc has 14 owners and zero authors.",
|
|
189
|
+
"Director of Strategy authored a strategy to author more strategy docs.",
|
|
190
|
+
"Pre-read for the pre-meeting before the pre-mortem.",
|
|
191
|
+
"The skip-level skipped levels until it became a town hall about town halls.",
|
|
192
|
+
"Headcount request: one full-time human to format the slides for headcount requests.",
|
|
193
|
+
"VP of Synergy launched a synergy initiative to align the synergy taskforces.",
|
|
194
|
+
"We did not ship the feature. We shipped a Confluence page about shipping the feature.",
|
|
195
|
+
"Sync-up to discuss the cadence of the sync-up that syncs the sync-ups.",
|
|
196
|
+
"Chief of Staff has a chief of staff. The chief of staff has a calendar warden.",
|
|
197
|
+
"Roadmap is a Miro board with 200 stickies and one accidental cursor.",
|
|
198
|
+
"The Jira ticket has 47 comments and zero code changes.",
|
|
199
|
+
"RACI matrix: Responsible — TBD. Accountable — TBD. Consulted — everyone. Informed — nobody.",
|
|
200
|
+
"OKR theatre: opening act is alignment, closing act is re-alignment, intermission is a retro.",
|
|
201
|
+
"Director circled back so hard he ended up where he started, plus a calendar invite.",
|
|
202
|
+
"The agile coach hired a coach for the agile coaches.",
|
|
203
|
+
"Retro action items from last quarter: 'discuss action items in next retro.'",
|
|
204
|
+
"Stand-up is now sit-down because the stand-up was too long to stand for.",
|
|
205
|
+
"Promotion criteria: ran the most ceremonies without producing artifacts.",
|
|
206
|
+
"Town hall Q&A: 8 questions submitted, 8 answered with 'great question, let's take that offline.'",
|
|
207
|
+
"Calendar warden declared Wednesday a no-meeting day, then booked it solid by Thursday.",
|
|
208
|
+
"Headcount approved for a coordinator to coordinate the coordinators.",
|
|
209
|
+
"The all-hands had a pre-all-hands and a post-all-hands debrief. The middle was 11 minutes long.",
|
|
210
|
+
"Executive summary: see attached executive summary of the executive summary.",
|
|
211
|
+
"Quarterly planning produced a calendar of meetings to plan the quarterly planning.",
|
|
212
|
+
"Sprint review attendance: 14. Sprint review participation: 2. Decisions: postponed.",
|
|
213
|
+
"Director of Cross-Functional Initiatives reports to the Director of Functional Initiatives.",
|
|
214
|
+
"The decision document had three approvers, two abstainers, and one deciding-not-to-decide.",
|
|
215
|
+
"Career ladder rung 6: 'influences without authority.' Translation: schedules meetings.",
|
|
216
|
+
"We rebranded 'meeting' to 'working session' and attendance doubled. So did the meetings.",
|
|
217
|
+
"Roadmap review is now monthly. The road, regrettably, is not.",
|
|
218
|
+
"VP introduced a framework. The framework introduced four sub-frameworks. The sub-frameworks introduced fatigue.",
|
|
219
|
+
"Slack thread: 47 replies, 9 emojis, one 'let's hop on a quick call' that lasted 90 minutes.",
|
|
220
|
+
"Org chart redesign Q3: same boxes, different colors, three new layers of dotted-line reports.",
|
|
221
|
+
"The strategy offsite produced a deck. The deck produced an offsite to discuss the deck.",
|
|
222
|
+
"Performance review self-assessment: 'I am a strong collaborator who collaborates on collaboration.'",
|
|
223
|
+
"Calendar invite titled 'quick chat' lasted 73 minutes and produced a follow-up.",
|
|
224
|
+
"Director's KPI: number of KPIs introduced this quarter.",
|
|
225
|
+
"The kickoff kicked off a planning meeting which kicked off a kickoff for the planning kickoff.",
|
|
226
|
+
"Town hall slide 4: 'we are committed to transparency.' Town hall slide 5: redacted.",
|
|
227
|
+
"We did a deep-dive. The deep-dive surfaced the need for another deep-dive.",
|
|
228
|
+
"Status report template has 11 sections. Section 3: 'status of status reports.'",
|
|
229
|
+
"Org-wide email subject: 'a few quick thoughts.' Body: 4,200 words. Attachments: 6.",
|
|
230
|
+
"The L&D budget funded a workshop on running better workshops.",
|
|
231
|
+
"Brown bag lunch about brown bag lunches. RSVPs: enthusiastic. Attendance: catered.",
|
|
232
|
+
"Promotion packet is 80 pages. Impact section is 3. Self-narrative section is 77.",
|
|
233
|
+
"The executive offsite was held off-site to discuss being more on-site.",
|
|
234
|
+
"Cross-functional alignment sync had no engineers and four people from operations.",
|
|
235
|
+
"The committee formed a sub-committee to evaluate whether the committee was still needed.",
|
|
236
|
+
"We launched a culture survey. The culture survey results required a culture survey taskforce.",
|
|
237
|
+
"Director of Outcomes scheduled a workshop on outcome-thinking. Outcome: another workshop.",
|
|
238
|
+
"Annual planning produced a deck titled 'less meetings, more outcomes.' Slide 12: meeting cadence.",
|
|
239
|
+
"The escalation path has seven rungs. The issue was a typo.",
|
|
240
|
+
"Steering committee voted to steer toward another steering committee.",
|
|
241
|
+
"Job posting: 'Lead of Lead Enablement.' Responsibilities: enable other Leads to enable Leads.",
|
|
242
|
+
"We aligned on the alignment. Now we need to align on what aligned means.",
|
|
243
|
+
"Slide deck for the board: 47 slides. Slides actually presented: 4. Time spent on appendix Q&A: 90 minutes.",
|
|
244
|
+
"Director took ownership of the initiative by scheduling a kickoff and never attending it.",
|
|
245
|
+
"The dotted-line reporting structure has more dots than lines.",
|
|
246
|
+
"Strategy memo opens with 'in a rapidly evolving landscape.' The landscape, frustratingly, has not moved.",
|
|
247
|
+
"Calendar audit revealed 31 recurring meetings. 4 had a clear purpose. 0 had owners willing to cancel.",
|
|
248
|
+
"We instituted a 'no-meeting Friday.' By week 3 it was a 'recurring no-meeting Friday alignment.'",
|
|
249
|
+
"Quarterly business review prep took longer than the quarter.",
|
|
250
|
+
"The communications lead sent a memo about reducing memos.",
|
|
251
|
+
"Director of Operations declared bankruptcy on her inbox and held a meeting to announce it.",
|
|
252
|
+
"VP coined a new acronym. The acronym now has a glossary. The glossary has a working group.",
|
|
253
|
+
"Annual review feedback: 'demonstrates leadership by leading sessions on leadership.'",
|
|
254
|
+
"We hired a consultant to assess whether we use too many consultants. They recommended another consultant.",
|
|
255
|
+
"The product council meets weekly to ratify decisions made in Slack on Tuesday.",
|
|
256
|
+
"Onboarding day 1: read 14 strategy docs. Day 2: attend the doc-walkthrough meeting. Day 3: another onboarding.",
|
|
257
|
+
"Director's calendar is so full his out-of-office now has an out-of-office.",
|
|
258
|
+
"The roadmap has four swim lanes. Three are blocked. One is labeled 'TBD Q5.'",
|
|
259
|
+
"Cadence change announcement was announced at the cadence-change announcement meeting.",
|
|
260
|
+
"Workstream lead has no workstream, only stream. The work is somewhere else.",
|
|
261
|
+
"Initiative was descoped, rescoped, then re-rescoped, then archived under 'lessons learned.'",
|
|
262
|
+
"Slack status: 'in meetings 9-5.' DM auto-reply: 'in meetings 9-5.' Calendar: 'in meetings 9-5.'",
|
|
263
|
+
"Career conversation revealed the next step is hosting more career conversations.",
|
|
264
|
+
"Director of Special Projects has no special projects. The role is the project.",
|
|
265
|
+
"We celebrated the launch of the launch-readiness review process at a launch-readiness review.",
|
|
266
|
+
];
|
|
267
|
+
export const BRIGADE_FOOTER_RULES = [
|
|
268
|
+
"Brigade has a Higher Office and a Team. No middle layer. That's the whole bit.",
|
|
269
|
+
"If a role only exists to forward emails, Brigade deletes the role and keeps the email.",
|
|
270
|
+
"Every 'sync to align on the sync' is one Brigade agent and a single prompt.",
|
|
271
|
+
"Calendar emperors get auto-declined. Brigade ships during their 'optional' standup.",
|
|
272
|
+
"A ceremony is not work. A doc about a ceremony is not work. Brigade does the work.",
|
|
273
|
+
"Brigade's org chart fits on a sticky note. If yours needs Confluence, that's the bug.",
|
|
274
|
+
"Three tiers, no ceremony masters. Your AI crew ships; it doesn't schedule offsites.",
|
|
275
|
+
"If your org chart needs a legend, you don't need Brigade — you need an exorcist.",
|
|
276
|
+
"Calendar emperors charge by the hour. Brigade charges by the result.",
|
|
277
|
+
"We don't have a Head of Cross-Functional Synergy. We have agents that do the work.",
|
|
278
|
+
"No 'quick syncs' on Brigade's calendar — if it needed a meeting, it gets a comment thread instead.",
|
|
279
|
+
"No 'let's circle back' — decisions get made in the channel they were raised in, or logged as deferred.",
|
|
280
|
+
"No retro of the retro. One retrospective. One page. Then back to shipping.",
|
|
281
|
+
"No status meetings whose only output is everyone agreeing to meet again next week.",
|
|
282
|
+
"No OKR theatre — objectives nobody can name on the last day of the quarter are deleted, not refreshed.",
|
|
283
|
+
"No alignment meetings to plan the kickoff that plans the alignment.",
|
|
284
|
+
"No calendar tetris — focus blocks are sacred and the scheduling bot defends them on your behalf.",
|
|
285
|
+
"No PowerPoint shamans — if it can't fit in a paragraph, it isn't ready to be a meeting.",
|
|
286
|
+
"No Jira gardening as a substitute for shipping — backlog hygiene is a chore, not a job description.",
|
|
287
|
+
"No Slack-emoji performance reviews — reactions are not deliverables and silence is not insubordination.",
|
|
288
|
+
"No middle tier. If a role's only output is forwarding email, it isn't a role.",
|
|
289
|
+
"Ceremony is not work. A status meeting is not a status report.",
|
|
290
|
+
"Brigade taunts CORPORATE CONVENTION, not real people doing their jobs.",
|
|
291
|
+
"A calendar full of syncs is not a strategy.",
|
|
292
|
+
"The org chart should fit the work, not the other way around.",
|
|
293
|
+
"Lovingly cruel about the convention. Never about a named human.",
|
|
294
|
+
"No middle layer. The crew reports up. The crew reports down. No Tyler in between forwarding the email.",
|
|
295
|
+
"If a tier exists only to schedule the tier below it, that tier is a calendar, not a person.",
|
|
296
|
+
"Org charts get bloated the same way Confluence does: nobody deletes the dead branches.",
|
|
297
|
+
"An IC plus a clear directive beats six layers of 'circling back' every single time.",
|
|
298
|
+
"The fastest path between a decision and a result is a straight line. Brigade draws straight lines.",
|
|
299
|
+
"Org charts are a hobby. Brigade just has the work and the people doing it.",
|
|
300
|
+
"Real teams don't need a ceremony master to talk to each other.",
|
|
301
|
+
"The middle layer was never running anything. It was running being seen.",
|
|
302
|
+
"If a layer only exists to forward emails, it's not a layer. It's latency.",
|
|
303
|
+
"Brigade has two tiers: people and the work. The rest was always cosplay.",
|
|
304
|
+
"Calendars don't ship software. People shipping software ship software.",
|
|
305
|
+
"Process is a tool, not a personality.",
|
|
306
|
+
"Skip the seance. Do the work.",
|
|
307
|
+
"No calendar emperors. No ceremony masters. No process police.",
|
|
308
|
+
"Brigade skips the middle layer corporate America forgot to delete.",
|
|
309
|
+
"Higher Office. Team. Nothing in between forwarding your emails.",
|
|
310
|
+
"Two tiers, on purpose. The third tier was the bug.",
|
|
311
|
+
"Real org chart. Fake hierarchy was the productivity tax.",
|
|
312
|
+
"Brigade is three tiers, not seventeen. Higher Office, Team, and the door.",
|
|
313
|
+
"If a role's only output is a recurring meeting, the role is the meeting.",
|
|
314
|
+
"Promotions here are not escape pods from the work. They are more of the work.",
|
|
315
|
+
"No layer exists solely to translate the layer above into the layer below.",
|
|
316
|
+
"Brigade's middle layer is a single function call. Yours is a quarterly offsite.",
|
|
317
|
+
"The chart you ship is the org you have. Everything else is a slide deck.",
|
|
318
|
+
];
|
|
319
|
+
export const PRIDE_STORIES = [
|
|
320
|
+
{ name: "Devon P.", role: "VP of Asynchronous Alignment", story: "Required a 47-message Slack thread to approve a meeting that approved scheduling another meeting. The original question was never answered." },
|
|
321
|
+
{ name: "Priya S.", role: "Director of Stakeholder Empathy", story: "Held a 90-minute workshop on listening. Three people raised concerns. She thanked them, took notes, and shipped the original plan unchanged." },
|
|
322
|
+
{ name: "Tobias W.", role: "Head of Frictionless Innovation", story: "Banned the word 'no' in design reviews. The roadmap quadrupled. Nothing shipped. He called it a creative renaissance." },
|
|
323
|
+
{ name: "Yuki T.", role: "Synergy Realization Lead", story: "Merged two teams who hated each other to 'unlock cross-functional magic'. Both teams started job-hunting in the same week." },
|
|
324
|
+
{ name: "Connor M.", role: "Captain of Quarterly Vision", story: "Replaced the roadmap with a 'North Star'. The North Star was a feeling. Engineers asked what to build. He said, 'You'll know'." },
|
|
325
|
+
{ name: "Aisha N.", role: "Chief Velocity Officer", story: "Measured productivity in JIRA tickets closed. Engineers split every task into seventeen subtasks. Velocity tripled. Output halved." },
|
|
326
|
+
{ name: "Rohan K.", role: "Senior Architect of Possibility", story: "Drew the same hexagonal diagram in every meeting for two years. Nobody could explain what the hexagons did. He got promoted twice." },
|
|
327
|
+
{ name: "Greta L.", role: "Czar of Internal Communications", story: "Sent a 4,200-word email titled 'A Note On Brevity'. Required all replies to use the official tone guide. The tone guide was 11 pages." },
|
|
328
|
+
{ name: "Bilal H.", role: "Head of Calendar Hygiene", story: "Declared Wednesdays meeting-free. Scheduled the rollout meeting on a Wednesday. The exception became the rule by week three." },
|
|
329
|
+
{ name: "Mei-Lin Z.", role: "Director of Customer Delight", story: "Created a 14-page Voice of Customer report. Every quote contradicted the others. She picked the three that matched the roadmap and presented those." },
|
|
330
|
+
{ name: "Tucker B.", role: "VP of Cultural Cadence", story: "Mandated weekly vibes-checks where engineers rated their feelings 1-5. Anyone below 4 got 'a chat'. Everyone reported 5." },
|
|
331
|
+
{ name: "Anastasia V.", role: "Lead Curator of Best Practices", story: "Maintained a Confluence page of 600 best practices. Nobody could find anything. She added a best practice about findability. Page count: 601." },
|
|
332
|
+
{ name: "Jamal O.", role: "Wrangler of Cross-Functional Initiatives", story: "Owned 23 initiatives. Drove zero of them. Sent weekly status updates that said 'on track'. Everything was on fire." },
|
|
333
|
+
{ name: "Inge K.", role: "Principal Strategist of Outcomes", story: "Refused to define outcomes because they 'limit thinking'. The team shipped six unrelated features. She wrote a retro praising the diversity." },
|
|
334
|
+
{ name: "Carlos R.", role: "Head of Platform Storytelling", story: "Renamed the database 'The Knowledge Garden'. Renamed bugs 'invitations to learn'. The on-call schedule was now a 'caring rotation'. Nothing else changed." },
|
|
335
|
+
{ name: "Eleanor T.", role: "Chief of Strategic Patience", story: "Killed every project by adding it to 'Phase 2'. There was no Phase 2. Phase 2 had its own org chart but no headcount." },
|
|
336
|
+
{ name: "Hiroshi A.", role: "Director of Stakeholder Choreography", story: "Required every decision to be 'pre-socialized' with 11 people. By the time consensus arrived, the market had moved twice." },
|
|
337
|
+
{ name: "Beatrice D.", role: "VP of Ambient Leadership", story: "Never gave direct feedback. Said 'interesting' to everything. Engineers learned to interpret eyebrow position as performance review." },
|
|
338
|
+
{ name: "Sven O.", role: "Architect of Operating Rhythm", story: "Designed a 6-tier meeting cadence: daily, weekly, biweekly, monthly, quarterly, annual. Each tier had its own pre-read. Nobody read anything." },
|
|
339
|
+
{ name: "Naledi M.", role: "Director of Empowerment", story: "Empowered her team to make decisions. Overruled every decision they made. Called it 'mentorship moments'." },
|
|
340
|
+
{ name: "Brett C.", role: "Senior Champion of Transformation", story: "Reorganized the org chart every six months. Renamed 'engineering' three times. Wrote a book about it. The book sold 14 copies, all to direct reports." },
|
|
341
|
+
{ name: "Lakshmi V.", role: "Czar of OKR Cascade", story: "Required every team to map their work to 4 levels of OKRs. The mapping spreadsheet was 47 tabs. The work itself was never reviewed." },
|
|
342
|
+
{ name: "Magnus E.", role: "VP of Resilient Excellence", story: "Coined 12 internal frameworks in 18 months. None survived contact with reality. He kept a slide deck of all of them in case of an interview." },
|
|
343
|
+
{ name: "Chioma F.", role: "Head of Aspirational Roadmapping", story: "Drew roadmaps with no dates because 'dates create stress'. Sales committed to dates anyway. Engineering found out from the customer." },
|
|
344
|
+
{ name: "Spencer J.", role: "Lead Conductor of Daily Standup", story: "Turned the 15-minute standup into a 50-minute therapy session about blockers he refused to remove. The blockers were always 'someone else'." },
|
|
345
|
+
{ name: "Liang W.", role: "VP of Data-Informed Storytelling", story: "Asked for 'a quick chart' that took a week. Hated the chart. Asked for a different cut. Repeated 11 times. Made the final decision on a hunch." },
|
|
346
|
+
{ name: "Soraya I.", role: "Captain of Innovation Theatre", story: "Ran a hackathon where the winning project couldn't ship because it 'wasn't strategic'. The losing project shipped six months later, badly, by a different team." },
|
|
347
|
+
{ name: "Reginald U.", role: "Director of Process Refinement", story: "Added 4 sign-off stages to deploys to 'reduce risk'. Deploy frequency dropped 80%. Each deploy now contained a month of changes. Incidents tripled." },
|
|
348
|
+
{ name: "Camille G.", role: "Head of Engineering Brand", story: "Spent her budget on conference talks about the engineering culture she had not yet built. The talks were well-received. The culture was not." },
|
|
349
|
+
{ name: "Marcus K.", role: "Strategic Database Gatekeeper", story: "Refused access to the $3M database. Required written justification for every query. Engineering built a parallel shadow database. He claimed credit for both." },
|
|
350
|
+
{ name: "Pavel R.", role: "VP of Pre-Mortem Excellence", story: "Held a 3-hour pre-mortem for every project. Identified 80 risks. Mitigated none. Pulled out the doc post-incident and said 'we knew this'." },
|
|
351
|
+
{ name: "Talia B.", role: "Director of Strategic Optionality", story: "Refused to pick. Built three half-versions of every product to 'preserve flexibility'. All three shipped half-broken. She called it a portfolio." },
|
|
352
|
+
{ name: "Desmond Y.", role: "Chief of Strategic Listening", story: "Did a listening tour with 60 engineers. Synthesized their feedback into one slide that said 'people want to feel heard'. Implemented nothing." },
|
|
353
|
+
{ name: "Brittany R.", role: "Chief Storytelling Officer", story: "Rewrote engineering's quarterly results as a hero's-journey narrative. The narrative shipped. The features did not." },
|
|
354
|
+
{ name: "Vikram P.", role: "Head of Engineering Productivity", story: "Measured productivity by lines of code. Senior engineers wrote one-line PRs. Junior engineers wrote essays. He promoted the juniors." },
|
|
355
|
+
{ name: "Margot S.", role: "VP of Holistic Roadmap Stewardship", story: "Said yes to every executive request. The roadmap had 340 P0 items. P0 stopped meaning anything. She added P00 the next quarter." },
|
|
356
|
+
{ name: "Augustin H.", role: "Director of Architectural Purity", story: "Blocked every PR for not matching the imagined future architecture. The imagined architecture changed weekly. PR queue grew to 188. He blamed the team for being slow." },
|
|
357
|
+
{ name: "Keiko F.", role: "Lead Ambassador of Tooling", story: "Migrated the team from Jira to Linear to Notion to Shortcut to Asana in 14 months. Nothing got tracked through any migration. She wrote a blog post about each." },
|
|
358
|
+
{ name: "Olaf G.", role: "VP of Compliance-Driven Innovation", story: "Required SOC2 documentation for the internal lunch poll. Innovation slowed. He celebrated the 100% compliance rate at all-hands." },
|
|
359
|
+
{ name: "Saanvi L.", role: "Head of Strategic Headcount", story: "Hired 14 strategists to figure out the strategy. The strategy was: hire more strategists. Two of them eventually figured out it was a pyramid." },
|
|
360
|
+
{ name: "Cormac D.", role: "Czar of Brand Voice", story: "Sent the engineering changelog back 9 times for 'tonal misalignment'. The changelog was a bullet list of bug fixes. The customer didn't read it anyway." },
|
|
361
|
+
{ name: "Renata Q.", role: "Chief Curator of Customer Anecdotes", story: "Killed the data-backed roadmap with a single story about her uncle who 'just doesn't get the app'. Her uncle was not a customer." },
|
|
362
|
+
{ name: "Nikolai E.", role: "VP of Optimistic Forecasting", story: "Promised 4x growth in board decks for 6 quarters running. Delivered 0.4x. Re-baselined the targets and called it a beat." },
|
|
363
|
+
{ name: "Adaeze C.", role: "Director of Talent Density", story: "Talked about talent density in every meeting. Refused to backfill departures. The team got denser by losing people. She called it a feature." },
|
|
364
|
+
{ name: "Wendell A.", role: "Head of Engineering Excellence", story: "Defined excellence as 'whatever I think is excellent'. The bar moved every review cycle. Three top engineers left. He wrote a memo about retention." },
|
|
365
|
+
{ name: "Sigrid N.", role: "VP of Customer Obsession Operations", story: "Built a 60-tab dashboard to track customer obsession. The dashboard was never opened. Customer NPS dropped. She added a 61st tab." },
|
|
366
|
+
{ name: "Theo X.", role: "Captain of Daily Wins", story: "Required every engineer to post a 'daily win' in Slack at 5pm. Wins included 'attended meeting' and 'opened laptop'. He called it a culture of celebration." },
|
|
367
|
+
{ name: "Imani J.", role: "Director of Strategic Ambiguity", story: "Refused to write anything down. Decisions changed depending on who remembered the meeting. The org chart was a rumor. She thrived." },
|
|
368
|
+
{ name: "Bart Z.", role: "Lead Architect of Future-Proofing", story: "Spent 8 months building abstractions for use cases that never materialized. Shipped 0 features. The abstraction was 'reusable', mostly by him in his next project." },
|
|
369
|
+
{ name: "Ngozi K.", role: "VP of Vibes Operations", story: "Replaced KPIs with vibes. Said data was 'reductive'. Quarterly review became a guided meditation. The board reverted it within 90 days." },
|
|
370
|
+
{ name: "Quincy F.", role: "Head of Asynchronous Decisions", story: "Required all decisions in writing. Refused to read anything over 200 words. Submissions piled up. He picked at random and called it judgment." },
|
|
371
|
+
{ name: "Halima B.", role: "Director of Innovation Hygiene", story: "Sunset every project that hadn't shown ROI by month two. Month two was usually when the project started compiling. The graveyard was vast." },
|
|
372
|
+
{ name: "Stellan V.", role: "Chief Convener of Working Sessions", story: "Scheduled a working session to plan the working session. The pre-working session ran long. The actual work happened on a private Slack DM after hours." },
|
|
373
|
+
{ name: "Lola D.", role: "VP of Strategic Reflection", story: "Spent every Friday doing a 'reflection' on the week. Wrote a 2,000-word essay nobody read. Mondays were always exactly the same as the previous Monday." },
|
|
374
|
+
{ name: "Akio M.", role: "Wrangler of Critical Path Decisions", story: "Held every critical decision hostage to a future meeting that kept getting rescheduled. The decision was 'do nothing'. The team executed it perfectly." },
|
|
375
|
+
{ name: "Esperanza T.", role: "Director of Crucial Conversations", story: "Took the workshop. Forwarded the slides to her reports. Never had a single crucial conversation. Performance reviews were copy-pasted year over year." },
|
|
376
|
+
{ name: "Roderick I.", role: "Head of Customer-Centric Strategy", story: "Talked to one customer in three years. Quoted her in 47 strategy docs. The customer had churned 18 months ago. He'd never been told." },
|
|
377
|
+
{ name: "Yara H.", role: "VP of Operational Excellence Theatre", story: "Built a war room with screens, pins, and string. The strings led nowhere. She invited investors to tour it. They loved it. The product still shipped late." },
|
|
378
|
+
{ name: "Pieter O.", role: "Lead Architect of Decision Logs", story: "Decision log had 4,000 entries. None had owners. None had dates. None had outcomes. He cited it in every disagreement as authoritative." },
|
|
379
|
+
{ name: "Indira S.", role: "Czar of Cultural Cadence", story: "Mandated the team's culture be 'high performance and high warmth'. Fired anyone who pushed back. Wrote a Medium post about how she'd built the warmest team in the industry." },
|
|
380
|
+
];
|
|
381
|
+
/**
|
|
382
|
+
* Deterministic mulberry32 RNG. Tests pass a seeded instance so chart
|
|
383
|
+
* snapshots are reproducible; production uses Math.random by default.
|
|
384
|
+
*/
|
|
385
|
+
export function createSeededRng(seed) {
|
|
386
|
+
let state = seed >>> 0;
|
|
387
|
+
return () => {
|
|
388
|
+
state = (state + 0x6d2b79f5) >>> 0;
|
|
389
|
+
let t = state;
|
|
390
|
+
t = Math.imul(t ^ (t >>> 15), t | 1);
|
|
391
|
+
t ^= t + Math.imul(t ^ (t >>> 7), t | 61);
|
|
392
|
+
return ((t ^ (t >>> 14)) >>> 0) / 4294967296;
|
|
393
|
+
};
|
|
394
|
+
}
|
|
395
|
+
function pickFrom(bank, rng) {
|
|
396
|
+
if (bank.length === 0) {
|
|
397
|
+
throw new Error("pride-taunts: empty bank passed to pickFrom");
|
|
398
|
+
}
|
|
399
|
+
const idx = Math.floor(rng() * bank.length) % bank.length;
|
|
400
|
+
return bank[idx];
|
|
401
|
+
}
|
|
402
|
+
export function pickTaunt(rng = Math.random) {
|
|
403
|
+
return pickFrom(BRIGADE_TAUNTS, rng);
|
|
404
|
+
}
|
|
405
|
+
export function pickFooterRule(rng = Math.random) {
|
|
406
|
+
return pickFrom(BRIGADE_FOOTER_RULES, rng);
|
|
407
|
+
}
|
|
408
|
+
export function pickStory(rng = Math.random) {
|
|
409
|
+
return pickFrom(PRIDE_STORIES, rng);
|
|
410
|
+
}
|
|
411
|
+
//# sourceMappingURL=pride-taunts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pride-taunts.js","sourceRoot":"","sources":["../../../src/agents/org/pride-taunts.ts"],"names":[],"mappings":"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"}
|