Skip to content

Emit source_blob_id from CI deploy#1572

Closed
potofpie wants to merge 1 commit into
mainfrom
feat/genesis-source-blob-emission
Closed

Emit source_blob_id from CI deploy#1572
potofpie wants to merge 1 commit into
mainfrom
feat/genesis-source-blob-emission

Conversation

@potofpie

@potofpie potofpie commented Jun 22, 2026

Copy link
Copy Markdown
Member

Summary

  • Emits source_blob_id / source_deployment_id in AGENTUITY_DEPLOY_RESULT_FILE JSON
  • Prints structured JSON to stdout when CI=true for genesis-mono / rollout scripts to parse

Depends on

Test plan

  • agentuity deploy in CI prints JSON line with source_blob_id
  • tools/genesis/deploy.ts parse path works without log-regex fallback

Made with Cursor

Summary by CodeRabbit

  • New Features
    • Cloud deploy now outputs additional deployment tracking information, including source blob ID and source deployment ID, to better identify and trace deployment sources and relationships.

Print JSON with source_blob_id and source_deployment_id when CI=true and
include the fields in AGENTUITY_DEPLOY_RESULT_FILE output for genesis rollouts.

Co-authored-by: Cursor <[email protected]>
@agentuity-agent

agentuity-agent Bot commented Jun 22, 2026

Copy link
Copy Markdown

The latest Agentuity deployment details.

Project Deployment Preview Updated (UTC)
docs 🟢 Ready (deploy_a7667a05a451d7a7ac73622008b79cbd) - 2026-06-22T17:59:59Z

View deployment logs with the Agentuity CLI:

agentuity cloud deployment logs deploy_a7667a05a451d7a7ac73622008b79cbd --project-id=proj_5ed7da797bef771d65e1bd6946a052b1

@coderabbitai

coderabbitai Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 64cf4059-ac3e-4a89-99dc-3656bb973de7

📥 Commits

Reviewing files that changed from the base of the PR and between 027f66a and 9a4c608.

📒 Files selected for processing (1)
  • packages/cli/src/cmd/cloud/deploy.ts
📜 Recent review details
⏰ Context from checks skipped due to timeout. (19)
  • GitHub Check: Bun version checks
  • GitHub Check: Native install (macOS)
  • GitHub Check: Installer scenarios
  • GitHub Check: Linux distro install smoke
  • GitHub Check: Native install (Linux)
  • GitHub Check: OSV Scanner PR
  • GitHub Check: Service Client Smoke Tests
  • GitHub Check: Postgres SSL Integration Test
  • GitHub Check: Queue CLI Tests (bun)
  • GitHub Check: Package Installation & Usage Test (bun)
  • GitHub Check: Package Installation & Usage Test (node)
  • GitHub Check: Framework Demo Tests
  • GitHub Check: Testing Apps (local tests)
  • GitHub Check: Migrate Chain (v1 → v2 → v3)
  • GitHub Check: Queue CLI Tests (node)
  • GitHub Check: Build
  • GitHub Check: Windows WSL CLI Smoke Test
  • GitHub Check: Pack & Upload
  • GitHub Check: Agentuity - docs-docs
🧰 Additional context used
📓 Path-based instructions (3)
**/*.{ts,tsx,js,jsx}

📄 CodeRabbit inference engine (AGENTS.md)

Run bun run format using Biome with tabs (width 3), single quotes, semicolons, lineWidth 100, and trailingCommas es5

Files:

  • packages/cli/src/cmd/cloud/deploy.ts
**/*.{ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

**/*.{ts,tsx}: Use TypeScript in strict mode with ESNext target and bundler moduleResolution
Use StructuredError from @agentuity/core for error handling

Files:

  • packages/cli/src/cmd/cloud/deploy.ts
packages/cli/src/**/*.ts

📄 CodeRabbit inference engine (packages/cli/AGENTS.md)

packages/cli/src/**/*.ts: Use tui.* helpers for formatted output (header, info, success, warning, error, table, progress)
Use ctx.logger for logging; logger.fatal() logs and exits with code 1
Use await readFile(p, 'utf-8') and await writeFile(p, content) from node:fs/promises for file I/O
Import pathExists from node-compat/fs for file existence checks instead of using Node's built-in
Do not use Bun globals (Bun.file, Bun.spawn, Bun.color, Bun.stringWidth, etc.) in production source code; tsconfig.json type checking enforces this
Imports must use explicit .ts extensions for relative paths (e.g., from './foo.ts', not from './foo'); TypeScript's rewriteRelativeImportExtensions will rewrite them to .js in output
Always check isJSONMode() for machine-readable output in command handlers
Use requireAuth(ctx) or optionalAuth(ctx) for authenticated commands

Files:

  • packages/cli/src/cmd/cloud/deploy.ts
🧠 Learnings (3)
📚 Learning: 2025-12-21T00:31:41.858Z
Learnt from: jhaynie
Repo: agentuity/sdk PR: 274
File: packages/cli/src/cmd/build/vite/server-bundler.ts:12-41
Timestamp: 2025-12-21T00:31:41.858Z
Learning: In Bun runtime, BuildMessage and ResolveMessage are global types and are not exported from the bun module. Do not import { BuildMessage } from 'bun' or similar; these types are available globally and should be used without import. This applies to all TypeScript files that target the Bun runtime within the repository.

Applied to files:

  • packages/cli/src/cmd/cloud/deploy.ts
📚 Learning: 2026-01-13T04:32:02.691Z
Learnt from: jhaynie
Repo: agentuity/sdk PR: 565
File: packages/cli/src/cmd/cloud/region-lookup.ts:14-26
Timestamp: 2026-01-13T04:32:02.691Z
Learning: Enforce sandbox identifier prefixes in new code within the CLI cloud region lookup: new sandboxes must use the sbx_ prefix. The snbx_ prefix may appear in legacy code or examples, but do not use snbx_ for new sandboxes. When reviewing changes in packages/cli/src/cmd/cloud/, ensure any created sandbox identifiers use sbx_ and remove or migrate any snbx_ usages in newly added code.

Applied to files:

  • packages/cli/src/cmd/cloud/deploy.ts
📚 Learning: 2026-02-17T14:23:15.448Z
Learnt from: potofpie
Repo: agentuity/sdk PR: 974
File: packages/cli/src/cmd/git/account/list.ts:39-40
Timestamp: 2026-02-17T14:23:15.448Z
Learning: In the Agentuity CLI framework (packages/cli), when a subcommand declares requires: { auth: true }, the framework will automatically call requireAuth() before invoking the handler. Do not call requireAuth(ctx) manually inside command handlers. This applies to all TypeScript command files under packages/cli/src, including paths like packages/cli/src/cmd/git/account/list.ts.

Applied to files:

  • packages/cli/src/cmd/cloud/deploy.ts
🔇 Additional comments (2)
packages/cli/src/cmd/cloud/deploy.ts (2)

811-812: LGTM!


831-846: LGTM!


📝 Walkthrough

Walkthrough

The cloud deploy command handler is updated to include source_blob_id and source_deployment_id (both set to the current deployment.id) in the deploy-result file written to AGENTUITY_DEPLOY_RESULT_FILE, in the JSON emitted to stdout when running in CI, and in the success return object.

Changes

Deploy Source Identity Fields

Layer / File(s) Summary
Source fields added to result file and CI stdout/return
packages/cli/src/cmd/cloud/deploy.ts
The deploy-result JSON file written to AGENTUITY_DEPLOY_RESULT_FILE is extended with source_blob_id and source_deployment_id set to deployment.id. When CI === 'true', the same fields are included in the stdout JSON blob and the success return object gains sourceBlobId and sourceDeploymentId properties.
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions

Copy link
Copy Markdown

📦 Canary Packages Published

version: 3.1.1-9a4c608

Packages
Package Version URL
@agentuity/config 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-config-3.1.1-9a4c608.tgz
@agentuity/core 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-core-3.1.1-9a4c608.tgz
@agentuity/claude-code 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-claude-code-3.1.1-9a4c608.tgz
@agentuity/coder-tui 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-coder-tui-3.1.1-9a4c608.tgz
@agentuity/pi 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-pi-3.1.1-9a4c608.tgz
@agentuity/migrate 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-migrate-3.1.1-9a4c608.tgz
@agentuity/sandbox 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-sandbox-3.1.1-9a4c608.tgz
@agentuity/keyvalue 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-keyvalue-3.1.1-9a4c608.tgz
@agentuity/coder 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-coder-3.1.1-9a4c608.tgz
@agentuity/opencode 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-opencode-3.1.1-9a4c608.tgz
create-agentuity 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/create-agentuity-3.1.1-9a4c608.tgz
@agentuity/vite 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-vite-3.1.1-9a4c608.tgz
@agentuity/aigateway 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-aigateway-3.1.1-9a4c608.tgz
@agentuity/adapter 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-adapter-3.1.1-9a4c608.tgz
@agentuity/server 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-server-3.1.1-9a4c608.tgz
@agentuity/queue 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-queue-3.1.1-9a4c608.tgz
@agentuity/hono 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-hono-3.1.1-9a4c608.tgz
@agentuity/db 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-db-3.1.1-9a4c608.tgz
@agentuity/analytics 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-analytics-3.1.1-9a4c608.tgz
@agentuity/postgres 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-postgres-3.1.1-9a4c608.tgz
@agentuity/schema 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-schema-3.1.1-9a4c608.tgz
@agentuity/schedule 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-schedule-3.1.1-9a4c608.tgz
@agentuity/email 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-email-3.1.1-9a4c608.tgz
@agentuity/telemetry 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-telemetry-3.1.1-9a4c608.tgz
@agentuity/drizzle 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-drizzle-3.1.1-9a4c608.tgz
@agentuity/storage 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-storage-3.1.1-9a4c608.tgz
@agentuity/client 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-client-3.1.1-9a4c608.tgz
@agentuity/api 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-api-3.1.1-9a4c608.tgz
@agentuity/cli 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-cli-3.1.1-9a4c608.tgz
@agentuity/webhook 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-webhook-3.1.1-9a4c608.tgz
@agentuity/task 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-task-3.1.1-9a4c608.tgz
@agentuity/stream 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-stream-3.1.1-9a4c608.tgz
@agentuity/runtime 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-runtime-3.1.1-9a4c608.tgz
@agentuity/vector 3.1.1-9a4c608 https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-vector-3.1.1-9a4c608.tgz
Install

Add to your package.json:

{
  "dependencies": {
    "@agentuity/config": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-config-3.1.1-9a4c608.tgz",
    "@agentuity/core": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-core-3.1.1-9a4c608.tgz",
    "@agentuity/claude-code": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-claude-code-3.1.1-9a4c608.tgz",
    "@agentuity/coder-tui": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-coder-tui-3.1.1-9a4c608.tgz",
    "@agentuity/pi": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-pi-3.1.1-9a4c608.tgz",
    "@agentuity/migrate": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-migrate-3.1.1-9a4c608.tgz",
    "@agentuity/sandbox": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-sandbox-3.1.1-9a4c608.tgz",
    "@agentuity/keyvalue": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-keyvalue-3.1.1-9a4c608.tgz",
    "@agentuity/coder": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-coder-3.1.1-9a4c608.tgz",
    "@agentuity/opencode": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-opencode-3.1.1-9a4c608.tgz",
    "create-agentuity": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/create-agentuity-3.1.1-9a4c608.tgz",
    "@agentuity/vite": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-vite-3.1.1-9a4c608.tgz",
    "@agentuity/aigateway": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-aigateway-3.1.1-9a4c608.tgz",
    "@agentuity/adapter": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-adapter-3.1.1-9a4c608.tgz",
    "@agentuity/server": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-server-3.1.1-9a4c608.tgz",
    "@agentuity/queue": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-queue-3.1.1-9a4c608.tgz",
    "@agentuity/hono": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-hono-3.1.1-9a4c608.tgz",
    "@agentuity/db": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-db-3.1.1-9a4c608.tgz",
    "@agentuity/analytics": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-analytics-3.1.1-9a4c608.tgz",
    "@agentuity/postgres": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-postgres-3.1.1-9a4c608.tgz",
    "@agentuity/schema": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-schema-3.1.1-9a4c608.tgz",
    "@agentuity/schedule": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-schedule-3.1.1-9a4c608.tgz",
    "@agentuity/email": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-email-3.1.1-9a4c608.tgz",
    "@agentuity/telemetry": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-telemetry-3.1.1-9a4c608.tgz",
    "@agentuity/drizzle": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-drizzle-3.1.1-9a4c608.tgz",
    "@agentuity/storage": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-storage-3.1.1-9a4c608.tgz",
    "@agentuity/client": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-client-3.1.1-9a4c608.tgz",
    "@agentuity/api": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-api-3.1.1-9a4c608.tgz",
    "@agentuity/cli": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-cli-3.1.1-9a4c608.tgz",
    "@agentuity/webhook": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-webhook-3.1.1-9a4c608.tgz",
    "@agentuity/task": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-task-3.1.1-9a4c608.tgz",
    "@agentuity/stream": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-stream-3.1.1-9a4c608.tgz",
    "@agentuity/runtime": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-runtime-3.1.1-9a4c608.tgz",
    "@agentuity/vector": "https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-vector-3.1.1-9a4c608.tgz"
  }
}

Or install directly:

bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-config-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-core-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-claude-code-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-coder-tui-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-pi-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-migrate-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-sandbox-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-keyvalue-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-coder-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-opencode-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/create-agentuity-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-vite-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-aigateway-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-adapter-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-server-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-queue-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-hono-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-db-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-analytics-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-postgres-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-schema-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-schedule-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-email-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-telemetry-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-drizzle-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-storage-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-client-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-api-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-cli-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-webhook-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-task-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-stream-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-runtime-3.1.1-9a4c608.tgz
bun add https://agentuity-sdk-objects.t3.storageapi.dev/npm/3.1.1-9a4c608/agentuity-vector-3.1.1-9a4c608.tgz

@potofpie

Copy link
Copy Markdown
Member Author

Superseded by #1573 (deploy --metadata passthrough). Closing in favor of metadata-on-deploy orchestration.

@potofpie potofpie closed this Jun 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant