bobi 0.35.0__tar.gz
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.
- bobi-0.35.0/.gitignore +27 -0
- bobi-0.35.0/CHANGELOG.md +1241 -0
- bobi-0.35.0/Dockerfile +263 -0
- bobi-0.35.0/PKG-INFO +40 -0
- bobi-0.35.0/README.md +290 -0
- bobi-0.35.0/bobi/__init__.py +0 -0
- bobi-0.35.0/bobi/__main__.py +3 -0
- bobi-0.35.0/bobi/__version__.py +6 -0
- bobi-0.35.0/bobi/agentui/__init__.py +12 -0
- bobi-0.35.0/bobi/agentui/remote.py +167 -0
- bobi-0.35.0/bobi/agentui/server.py +414 -0
- bobi-0.35.0/bobi/agentui/static/app.css +342 -0
- bobi-0.35.0/bobi/agentui/static/app.js +0 -0
- bobi-0.35.0/bobi/agentui/static/index.html +73 -0
- bobi-0.35.0/bobi/auth_bootstrap.py +386 -0
- bobi-0.35.0/bobi/brain/__init__.py +97 -0
- bobi-0.35.0/bobi/brain/base.py +135 -0
- bobi-0.35.0/bobi/brain/claude.py +213 -0
- bobi-0.35.0/bobi/brain/codex.py +229 -0
- bobi-0.35.0/bobi/browser.py +311 -0
- bobi-0.35.0/bobi/build_render.py +253 -0
- bobi-0.35.0/bobi/cli.py +3365 -0
- bobi-0.35.0/bobi/compose.py +760 -0
- bobi-0.35.0/bobi/concurrency_semaphore.py +87 -0
- bobi-0.35.0/bobi/config.py +473 -0
- bobi-0.35.0/bobi/costs.py +164 -0
- bobi-0.35.0/bobi/deploy.py +1280 -0
- bobi-0.35.0/bobi/doctor.py +384 -0
- bobi-0.35.0/bobi/env.py +121 -0
- bobi-0.35.0/bobi/events/__init__.py +27 -0
- bobi-0.35.0/bobi/events/adapters.py +265 -0
- bobi-0.35.0/bobi/events/channels.py +149 -0
- bobi-0.35.0/bobi/events/client.py +460 -0
- bobi-0.35.0/bobi/events/drain.py +275 -0
- bobi-0.35.0/bobi/events/publish.py +146 -0
- bobi-0.35.0/bobi/events/reactor.py +291 -0
- bobi-0.35.0/bobi/events/server.py +616 -0
- bobi-0.35.0/bobi/events/signing.py +60 -0
- bobi-0.35.0/bobi/events/subscriptions.py +95 -0
- bobi-0.35.0/bobi/history.py +399 -0
- bobi-0.35.0/bobi/http.py +138 -0
- bobi-0.35.0/bobi/inbox.py +344 -0
- bobi-0.35.0/bobi/kb/__init__.py +0 -0
- bobi-0.35.0/bobi/kb/embedder.py +149 -0
- bobi-0.35.0/bobi/kb/sidecar.py +160 -0
- bobi-0.35.0/bobi/kb/store.py +560 -0
- bobi-0.35.0/bobi/manager_health.py +181 -0
- bobi-0.35.0/bobi/mcp/__init__.py +1 -0
- bobi-0.35.0/bobi/memory.py +151 -0
- bobi-0.35.0/bobi/monitors/__init__.py +27 -0
- bobi-0.35.0/bobi/monitors/curator.py +231 -0
- bobi-0.35.0/bobi/monitors/framework_defaults.yaml +21 -0
- bobi-0.35.0/bobi/monitors/registry.py +181 -0
- bobi-0.35.0/bobi/monitors/scheduler.py +802 -0
- bobi-0.35.0/bobi/monitors/schema.py +253 -0
- bobi-0.35.0/bobi/monitors/script_cache_checks.py +1139 -0
- bobi-0.35.0/bobi/monitors/tool_checks.py +279 -0
- bobi-0.35.0/bobi/paths.py +248 -0
- bobi-0.35.0/bobi/prompts/__init__.py +16 -0
- bobi-0.35.0/bobi/prompts/base.md +171 -0
- bobi-0.35.0/bobi/prompts/curator.md +110 -0
- bobi-0.35.0/bobi/prompts/resolver.py +307 -0
- bobi-0.35.0/bobi/prompts/setup.md +166 -0
- bobi-0.35.0/bobi/reconcile.py +184 -0
- bobi-0.35.0/bobi/registry.py +455 -0
- bobi-0.35.0/bobi/scaffold.py +422 -0
- bobi-0.35.0/bobi/sdk.py +449 -0
- bobi-0.35.0/bobi/session.py +897 -0
- bobi-0.35.0/bobi/setup/__init__.py +24 -0
- bobi-0.35.0/bobi/setup/actions.py +393 -0
- bobi-0.35.0/bobi/setup/authoring.py +646 -0
- bobi-0.35.0/bobi/setup/automate.py +87 -0
- bobi-0.35.0/bobi/setup/digestion.py +317 -0
- bobi-0.35.0/bobi/setup/harness.py +118 -0
- bobi-0.35.0/bobi/setup/llm.py +139 -0
- bobi-0.35.0/bobi/setup/mcp_detect.py +544 -0
- bobi-0.35.0/bobi/setup/mcp_probe.py +352 -0
- bobi-0.35.0/bobi/setup/mcp_registry.py +149 -0
- bobi-0.35.0/bobi/setup/open_mode.py +289 -0
- bobi-0.35.0/bobi/setup/services.py +652 -0
- bobi-0.35.0/bobi/setup/state.py +233 -0
- bobi-0.35.0/bobi/setup/venn_cli.py +132 -0
- bobi-0.35.0/bobi/setup/webui/__init__.py +6 -0
- bobi-0.35.0/bobi/setup/webui/server.py +1165 -0
- bobi-0.35.0/bobi/setup/webui/static/app.css +634 -0
- bobi-0.35.0/bobi/setup/webui/static/app.js +1862 -0
- bobi-0.35.0/bobi/setup/webui/static/bobi-mark.svg +9 -0
- bobi-0.35.0/bobi/setup/webui/static/index.html +31 -0
- bobi-0.35.0/bobi/slack.py +565 -0
- bobi-0.35.0/bobi/slack_manifest.py +65 -0
- bobi-0.35.0/bobi/spend_governor.py +110 -0
- bobi-0.35.0/bobi/state_version.py +80 -0
- bobi-0.35.0/bobi/subagent.py +1655 -0
- bobi-0.35.0/bobi/templates/slack-app.manifest.yaml +48 -0
- bobi-0.35.0/bobi/tool_library/codex/guide.md +44 -0
- bobi-0.35.0/bobi/tool_library/codex/tool.yaml +12 -0
- bobi-0.35.0/bobi/tool_library/openai/guide.md +36 -0
- bobi-0.35.0/bobi/tool_library/openai/tool.yaml +19 -0
- bobi-0.35.0/bobi/tool_library/venn/guide.md +44 -0
- bobi-0.35.0/bobi/tool_library/venn/tool.yaml +19 -0
- bobi-0.35.0/bobi/tool_library.py +198 -0
- bobi-0.35.0/bobi/transient.py +50 -0
- bobi-0.35.0/bobi/validate.py +373 -0
- bobi-0.35.0/bobi/venn.py +167 -0
- bobi-0.35.0/bobi/watchdog.py +488 -0
- bobi-0.35.0/bobi/workflow/__init__.py +8 -0
- bobi-0.35.0/bobi/workflow/cleanup.py +152 -0
- bobi-0.35.0/bobi/workflow/orchestrator.py +846 -0
- bobi-0.35.0/bobi/workflow/schema.py +105 -0
- bobi-0.35.0/bobi/workflow/state.py +157 -0
- bobi-0.35.0/bobi/workflow/triggers.py +80 -0
- bobi-0.35.0/bobi/workflow/variables.py +201 -0
- bobi-0.35.0/deployments/README.md +54 -0
- bobi-0.35.0/docker/docker-entrypoint.sh +377 -0
- bobi-0.35.0/docker/healthcheck.sh +31 -0
- bobi-0.35.0/docker/noop-deps.sh +7 -0
- bobi-0.35.0/event-server/.editorconfig +12 -0
- bobi-0.35.0/event-server/.gitignore +167 -0
- bobi-0.35.0/event-server/.prettierrc +6 -0
- bobi-0.35.0/event-server/create-app.html +12 -0
- bobi-0.35.0/event-server/package-lock.json +5989 -0
- bobi-0.35.0/event-server/package.json +28 -0
- bobi-0.35.0/event-server/src/adapters/chat-sdk-slack.ts +137 -0
- bobi-0.35.0/event-server/src/adapters/github.ts +108 -0
- bobi-0.35.0/event-server/src/adapters/index.ts +11 -0
- bobi-0.35.0/event-server/src/adapters/linear.ts +43 -0
- bobi-0.35.0/event-server/src/adapters/slack.ts +164 -0
- bobi-0.35.0/event-server/src/circuit-breaker.ts +326 -0
- bobi-0.35.0/event-server/src/core.ts +1310 -0
- bobi-0.35.0/event-server/src/dashboard/index.html +1208 -0
- bobi-0.35.0/event-server/src/deployment-session.ts +234 -0
- bobi-0.35.0/event-server/src/index.ts +529 -0
- bobi-0.35.0/event-server/src/internal-auth.ts +64 -0
- bobi-0.35.0/event-server/src/local.ts +680 -0
- bobi-0.35.0/event-server/test/chat-sdk-bridge.spec.ts +322 -0
- bobi-0.35.0/event-server/test/circuit-breaker.spec.ts +569 -0
- bobi-0.35.0/event-server/test/core.spec.ts +2373 -0
- bobi-0.35.0/event-server/test/env.d.ts +5 -0
- bobi-0.35.0/event-server/test/index.spec.ts +1116 -0
- bobi-0.35.0/event-server/test/tsconfig.json +8 -0
- bobi-0.35.0/event-server/tsconfig.json +42 -0
- bobi-0.35.0/event-server/vitest.config.mts +21 -0
- bobi-0.35.0/event-server/worker-configuration.d.ts +13720 -0
- bobi-0.35.0/event-server/wrangler.jsonc +31 -0
- bobi-0.35.0/pyproject.toml +114 -0
- bobi-0.35.0/scripts/build-team-images.sh +125 -0
- bobi-0.35.0/scripts/build-team-tarballs.sh +84 -0
- bobi-0.35.0/scripts/canary-smoke.sh +52 -0
- bobi-0.35.0/scripts/check-publishable.py +62 -0
- bobi-0.35.0/scripts/check-team-versions.py +84 -0
- bobi-0.35.0/scripts/destroy-instance.sh +52 -0
- bobi-0.35.0/scripts/fleet.sh +99 -0
- bobi-0.35.0/scripts/install.sh +20 -0
- bobi-0.35.0/scripts/provision-instance.sh +477 -0
- bobi-0.35.0/scripts/publish-team-tarballs.sh +56 -0
- bobi-0.35.0/scripts/render-team-deps.py +59 -0
- bobi-0.35.0/scripts/smoke-homebrew-bottles.sh +113 -0
- bobi-0.35.0/scripts/team-version.py +66 -0
- bobi-0.35.0/skills/bobi.md +129 -0
- bobi-0.35.0/skills/create-agent.md +306 -0
- bobi-0.35.0/skills/linear-setup.md +71 -0
- bobi-0.35.0/skills/slack-setup.md +145 -0
bobi-0.35.0/.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.DS_Store
|
|
2
|
+
.venv/
|
|
3
|
+
uv.lock
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.egg-info/
|
|
6
|
+
dist/
|
|
7
|
+
.pytest_cache/
|
|
8
|
+
*.pyc
|
|
9
|
+
.env
|
|
10
|
+
.idea/
|
|
11
|
+
.wrangler/
|
|
12
|
+
node_modules/
|
|
13
|
+
.claude/settings.local.json
|
|
14
|
+
.claude/projects/
|
|
15
|
+
.claude/memory/
|
|
16
|
+
.claude/plans/
|
|
17
|
+
.claude/worktrees/
|
|
18
|
+
.claude/hooks/
|
|
19
|
+
.claude/scheduled_tasks.lock
|
|
20
|
+
worktrees/
|
|
21
|
+
.gstack/
|
|
22
|
+
.bobi/
|
|
23
|
+
.context/
|
|
24
|
+
|
|
25
|
+
# Local secrets for the Bobbers test drive (never commit)
|
|
26
|
+
.bobbers.env
|
|
27
|
+
*bobbers*.env
|