Skip to content

chore: rename dependecies from @daytonaio to @daytona#4411

Open
MDzaja wants to merge 1 commit intomainfrom
chore/rename-deps-daytonaio
Open

chore: rename dependecies from @daytonaio to @daytona#4411
MDzaja wants to merge 1 commit intomainfrom
chore/rename-deps-daytonaio

Conversation

@MDzaja
Copy link
Copy Markdown
Member

@MDzaja MDzaja commented Apr 9, 2026

Summary

Rename all @daytonaio/ npm package references to @daytona/ across the monorepo to reflect the updated package scope.

Changes

  • Updated all import statements and package.json dependency entries from @daytonaio/sdk to @daytona/sdk across TypeScript guides and libraries
  • Regenerated pnpm-lock.yaml for the Mastra coding agent guide with the updated @daytona/ package names and bumped Daytona packages from 0.159.0 to 0.163.0
  • Updated documentation references in apps/docs

Affected Areas

Guides (TypeScript):

  • agentkit-inngest/coding-agent/anthropic
  • ai-data-analyst/openai
  • amp/amp-sdk
  • anthropic/multi-agent-claude-sdk
  • anthropic/single-claude-agent-sdk
  • letta-code
  • mastra/coding-agent/openai
  • openai/codex-sdk
  • openclaw
  • opencode/opencode-sdk
  • opencode/opencode-web

Libraries:

  • libs/opencode-plugin

Documentation:

  • apps/docs — file system operations page

Notes

  • No logic changes — this is a pure rename/re-scope of package references
  • The pnpm-lock.yaml diff is large due to the lockfile regeneration with updated package names and versions

Summary by cubic

Renamed all @daytonaio/* packages to @daytona/* across guides, libraries, and docs to reflect the new npm scope, and bumped Daytona packages to v0.163.0. No logic changes.

  • Dependencies
    • Replaced @daytonaio/sdk with @daytona/sdk and @daytonaio/toolbox-api-client with @daytona/toolbox-api-client.
    • Updated guides and libraries to use @daytona/sdk@^0.163.0; regenerated the Mastra guide pnpm-lock.yaml.
    • Updated docs import examples to the new @daytona scope; minor transitive bumps (e.g., AWS SDK, axios, dotenv) via lockfile.

Written for commit 8cc6e0f. Summary will update on new commits.

Signed-off-by: MDzaja <mirkodzaja0@gmail.com>
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 30 files

@nx-cloud
Copy link
Copy Markdown

nx-cloud bot commented Apr 9, 2026

View your CI Pipeline Execution ↗ for commit 8cc6e0f

Command Status Duration Result
nx run-many --target=build --all --parallel=4 -... ✅ Succeeded 1m 16s View ↗
nx run-many --target=docs --all ✅ Succeeded <1s View ↗
nx run-many --target=format --all --parallel=4 ✅ Succeeded 1s View ↗
nx run api:lint ✅ Succeeded <1s View ↗
nx run-many --target=generate:api-client --all ... ✅ Succeeded 1s View ↗

☁️ Nx Cloud last updated this comment at 2026-04-09 15:21:26 UTC

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the monorepo to use the new Daytona npm scope by replacing @daytonaio/* package references with @daytona/*, and refreshes the Mastra guide lockfile to the corresponding newer Daytona package versions.

Changes:

  • Replaced @daytonaio/sdk imports and package.json dependencies with @daytona/sdk across multiple TypeScript guides and one library package.
  • Updated toolbox client usage where applicable (e.g., @daytona/toolbox-api-client).
  • Regenerated pnpm-lock.yaml for the Mastra coding-agent guide, reflecting @daytona/* packages and version bumps.

Reviewed changes

Copilot reviewed 29 out of 30 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
libs/opencode-plugin/package.json Switch plugin dependency from @daytonaio/sdk to @daytona/sdk (version bump).
guides/typescript/opencode/opencode-web/src/index.ts Update SDK import scope to @daytona/sdk.
guides/typescript/opencode/opencode-web/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/opencode/opencode-sdk/src/server.ts Update SDK import scope; minor formatting changes in callbacks/promise setup.
guides/typescript/opencode/opencode-sdk/src/index.ts Update SDK import scope to @daytona/sdk.
guides/typescript/opencode/opencode-sdk/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/openclaw/src/index.ts Update SDK import scope/types; apply formatting changes.
guides/typescript/openclaw/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/openai/codex-sdk/src/index.ts Update SDK import scope to @daytona/sdk.
guides/typescript/openai/codex-sdk/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/mastra/coding-agent/openai/src/mastra/tools/daytona/utils.ts Update SDK import scope and deep type import path under new scope.
guides/typescript/mastra/coding-agent/openai/src/mastra/tools/daytona/tools.ts Update SDK import scope to @daytona/sdk.
guides/typescript/mastra/coding-agent/openai/pnpm-lock.yaml Lockfile regeneration to reflect @daytona/* packages and version bumps.
guides/typescript/mastra/coding-agent/openai/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/letta-code/src/letta-session.ts Update SDK import scope to @daytona/sdk.
guides/typescript/letta-code/src/index.ts Update SDK import scope to @daytona/sdk.
guides/typescript/letta-code/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/anthropic/single-claude-agent-sdk/src/index.ts Update SDK/toolbox client imports to @daytona/* scopes.
guides/typescript/anthropic/single-claude-agent-sdk/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/anthropic/multi-agent-claude-sdk/src/index.ts Update SDK import scope to @daytona/sdk.
guides/typescript/anthropic/multi-agent-claude-sdk/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/amp/amp-sdk/src/session.ts Update SDK import scope to @daytona/sdk.
guides/typescript/amp/amp-sdk/src/index.ts Update SDK import scope to @daytona/sdk.
guides/typescript/amp/amp-sdk/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/ai-data-analyst/openai/package.json Update dependency scope/version to @daytona/sdk.
guides/typescript/ai-data-analyst/openai/index.ts Update SDK import scope; minor formatting changes.
guides/typescript/agentkit-inngest/coding-agent/anthropic/src/utils.ts Update SDK import scope to @daytona/sdk.
guides/typescript/agentkit-inngest/coding-agent/anthropic/src/index.ts Update SDK import scope and deep type import path under new scope.
guides/typescript/agentkit-inngest/coding-agent/anthropic/package.json Update dependency scope/version to @daytona/sdk.
apps/docs/src/content/docs/en/file-system-operations.mdx Update documentation example import to @daytona/sdk.
Files not reviewed (1)
  • guides/typescript/mastra/coding-agent/openai/pnpm-lock.yaml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

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.

2 participants