Skip to content

Fix docs CDN asset routing for TanStack Start#1600

Merged
parteeksingh24 merged 1 commit into
mainfrom
fix/tanstack-cdn-assets
Jun 26, 2026
Merged

Fix docs CDN asset routing for TanStack Start#1600
parteeksingh24 merged 1 commit into
mainfrom
fix/tanstack-cdn-assets

Conversation

@parteeksingh24

@parteeksingh24 parteeksingh24 commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

Summary

Routes the docs app's TanStack Start assets through the Agentuity CDN instead of rendering same-origin /assets/... URLs.

  • Adds docs-local CDN asset wiring with AGENTUITY_CDN_ORIGIN and AGENTUITY_CLOUD_DEPLOYMENT_ID.
  • Moves the root stylesheet back into TanStack's manifest-managed CSS path.
  • Sets Vite base: '' so client-side lazy chunks resolve relative to the CDN-hosted entry script.
  • Keeps generated docs/API reference updates from the docs build.

Related: #1570
Follow-up to: #1571 and #1546

Why

The docs app has its own TanStack Start server entry at src/web/server.ts. That entry needs the same CDN asset transform added for TanStack Start apps in #1571.

TanStack only rewrites manifest-managed assets through transformAssets. A stylesheet imported with ?url and returned from head().links stays outside that rewrite path, so the root stylesheet has to be a side-effect CSS import.

Implementation

The docs server now passes a CDN transform into createStartHandler:

const startHandler = createStartHandler({
	handler: defaultRenderHandler,
	transformAssets: createDocsCdnTransformAssets(),
});

The helper prefers the platform-injected CDN origin and falls back to the deployment CDN path:

const cdnOrigin = cleanEnvValue(env.AGENTUITY_CDN_ORIGIN);
const deploymentId = cleanEnvValue(env.AGENTUITY_CLOUD_DEPLOYMENT_ID);

return {
	prefix: `https://cdn.agentuity.com/${deploymentId}`,
	crossOrigin: 'anonymous',
};

The root route now lets TanStack own the stylesheet link:

import '../index.css';

Vite emits relative build URLs so lazy chunks resolve from the CDN entry script:

base: '',

Verification

  • cd docs && bun test
  • cd docs && bun run typecheck
  • bunx biome lint docs/src/web/cdn-assets.ts docs/src/web/cdn-assets.test.ts docs/src/web/routes/__root.tsx docs/src/web/server.ts docs/vite.config.ts
  • bunx biome check docs/src/web/cdn-assets.ts docs/src/web/cdn-assets.test.ts docs/src/web/routes/__root.tsx docs/src/web/server.ts docs/vite.config.ts
  • cd docs && bun run build
  • Verified local SSR with AGENTUITY_CDN_ORIGIN=https://cdn.example.test: same-origin href/src asset refs dropped from 13 to 0; CDN href/src asset refs became 12.

References/Sources

- Wire docs SSR assets through TanStack `transformAssets`
- Use side-effect CSS so Start owns stylesheet links
- Set Vite `base: ''` for CDN-relative chunks
- Keep generated API and nav docs from the build
@agentuity-agent

agentuity-agent Bot commented Jun 26, 2026

Copy link
Copy Markdown

The latest Agentuity deployment details.

Project Deployment Preview Updated (UTC)
docs 🟢 Ready (deploy_ecd48c21b356c53967d74166e7b72a59) - 2026-06-26T01:36:03Z

View deployment logs with the Agentuity CLI:

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

@coderabbitai

coderabbitai Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

Adds CDN asset handling and server routing for the docs app, changes the root stylesheet import, and updates several docs navigation and API reference entries.

Changes

Docs web delivery

Layer / File(s) Summary
CDN asset transform
docs/src/web/cdn-assets.ts, docs/vite.config.ts
Adds CDN env cleanup and prefix selection, and sets Vite base to an empty string.
Root stylesheet and tests
docs/src/web/routes/__root.tsx, docs/src/web/cdn-assets.test.ts
Switches the root route to a side-effect stylesheet import and adds tests for asset transform behavior and the root stylesheet source.
Server routing
docs/src/web/server.ts
Adds CDN asset transform wiring, legacy redirect resolution, /api/ forwarding to the docs API app, and fallback rendering through the start handler.

Reference docs updates

Layer / File(s) Summary
Navigation entries
docs/src/web/components/docs/nav-data.ts
Adds cookbook and CLI navigation items for Agent Skills.
Deployment response field
docs/src/web/content/reference/api/projects.mdx
Adds rolloutId to the Complete Deployment response fields.
Resource request schemas
docs/src/web/content/reference/api/regions.mdx
Adds kv to the region resource type unions and requires name for delete resource objects.
Sandbox request field
docs/src/web/content/reference/api/sandboxes.mdx
Adds disableSnapshots to the Create Sandbox request body fields.
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
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.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@github-actions

Copy link
Copy Markdown

📦 Canary Packages Published

version: 3.1.4-7e13f0a

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

Add to your package.json:

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

Or install directly:

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

@parteeksingh24 parteeksingh24 merged commit 2bd0744 into main Jun 26, 2026
28 checks passed
@parteeksingh24 parteeksingh24 deleted the fix/tanstack-cdn-assets branch June 26, 2026 01:40
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