Skip to content

fix(cli): CDN Next public/ assets and rewrite origin-absolute URLs - #1634

Merged
jhaynie merged 3 commits into
mainfrom
fix/cli-next-public-cdn-rewrite
Aug 1, 2026
Merged

fix(cli): CDN Next public/ assets and rewrite origin-absolute URLs#1634
jhaynie merged 3 commits into
mainfrom
fix/cli-next-public-cdn-rewrite

Conversation

@jhaynie

@jhaynie jhaynie commented Jul 31, 2026

Copy link
Copy Markdown
Member

Summary

Next.js assetPrefix only rewrites /_next/*. Files under public/ (e.g. /next.svg, /vercel.svg) stay origin-relative and break when the app/bootstrap is cold while CDN chunks still load.

This change:

  1. Stages public/ next to the standalone server and records it on BuildResult.publicStaticDir (adapter only stages)
  2. Packaging owns CDN policy (packageBuildOutput):
    • Rewrites root-absolute public URLs in the process tree → {baseUrl}{relpath} when CDN base is known
    • Emits launch.static.include: [{ directory: "public", publicPath: "" }] only when baseUrl is set (split layout)
  3. Deploy metadata enumerates publicStaticDir with an empty public-path prefix so assets[] and launch.static.include stay aligned
  4. Shared helpers: joinCdnAssetUrl, process-root path helpers, single-pass public URL rewrite

launch.static shape (additive)

{
  "directory": ".next/static",
  "publicPath": "_next/static",
  "baseUrl": "https://cdn.agentcompany.com/genesis/",
  "include": [{ "directory": "public", "publicPath": "" }]
}

Empty publicPath means files live at the CDN base root. Consumers should join with joinCdnAssetUrl (or equivalent): no double-slash when publicPath is empty.

Follow-up (deployer)

deployerctl must walk static.include and upload those roots with the given publicPath (empty → keys at CDN base). Without that, rewritten HTML will 404 until the deploy client is updated. CLI-side metadata.assets already lists public files for the same layout.

Test plan

  • bun test public-cdn + launch + static-assets + nextjs-cdn + nextjs-standalone
  • bun run typecheck in packages/cli
  • Unit coverage: include gated on baseUrl; empty publicPath; outside process root; package rewrite e2e; deploy-metadata public enumeration
  • Rebuild test-nextjs with this CLI + deployerctl include upload + verify logos on CDN

jhaynie added 2 commits July 31, 2026 17:59
Next assetPrefix only covers /_next/*; public/ files (e.g. /next.svg) stayed
on the app origin and broke when bootstrap was cold. Stage public/ for CDN
upload via launch.static.include, rewrite packaged HTML/JS refs to baseUrl,
and leave a shared public-cdn helper for Remix-class split layouts.
@agentuity-agent

agentuity-agent Bot commented Jul 31, 2026

Copy link
Copy Markdown

The latest Agentuity deployment details.

Project Deployment Preview Updated (UTC)
docs 🔴 Failed (details) - 2026-08-01T00:09:57Z

exit code 1

View deployment logs with the Agentuity CLI:

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

@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 7 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 14609cff-51e3-4527-a4a9-530c1bf45d82

📥 Commits

Reviewing files that changed from the base of the PR and between a1c87e7 and 170421f.

📒 Files selected for processing (51)
  • .claude-plugin/marketplace.json
  • package.json
  • packages/adapter/package.json
  • packages/aigateway/package.json
  • packages/analytics/package.json
  • packages/api/package.json
  • packages/claude-code/.claude-plugin/plugin.json
  • packages/claude-code/package.json
  • packages/cli/package.json
  • packages/cli/src/cmd/build/adapters/nextjs.ts
  • packages/cli/src/cmd/build/adapters/types.ts
  • packages/cli/src/cmd/build/package/index.ts
  • packages/cli/src/cmd/build/package/launch.ts
  • packages/cli/src/cmd/build/package/public-cdn.ts
  • packages/cli/src/cmd/build/run.ts
  • packages/cli/src/deploy-metadata.ts
  • packages/cli/test/cmd/build/package/launch.test.ts
  • packages/cli/test/cmd/build/package/public-cdn.test.ts
  • packages/cli/test/cmd/build/static-assets.test.ts
  • packages/client/package.json
  • packages/coder-tui/package.json
  • packages/coder/package.json
  • packages/config/package.json
  • packages/core/package.json
  • packages/create-agentuity/package.json
  • packages/db/package.json
  • packages/drizzle/package.json
  • packages/email/package.json
  • packages/genesis/package.json
  • packages/hono/package.json
  • packages/keyvalue/package.json
  • packages/migrate/package.json
  • packages/opencode/package.json
  • packages/pi/package.json
  • packages/postgres/package.json
  • packages/queue/package.json
  • packages/runtime/package.json
  • packages/sandbox/package.json
  • packages/schedule/package.json
  • packages/schema/package.json
  • packages/server/package.json
  • packages/skills/package.json
  • packages/storage/package.json
  • packages/stream/package.json
  • packages/task/package.json
  • packages/telemetry/package.json
  • packages/test-utils/package.json
  • packages/vector/package.json
  • packages/vite/package.json
  • packages/vscode/package.json
  • packages/webhook/package.json

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

@github-actions

github-actions Bot commented Jul 31, 2026

Copy link
Copy Markdown

📦 Canary Packages Published

version: 3.1.17-170421f

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

Add to your package.json:

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

Or install directly:

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

Move public asset URL rewrite and launch.static.include emission into
packageBuildOutput so adapters only stage publicStaticDir. Gate include
on baseUrl, enumerate public roots in deploy-metadata, and expand tests.
@jhaynie
jhaynie merged commit 5c8735a into main Aug 1, 2026
28 of 29 checks passed
@jhaynie
jhaynie deleted the fix/cli-next-public-cdn-rewrite branch August 1, 2026 00: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