Release 0.0.97#210
Conversation
WalkthroughA version bump across the entire monorepo, incrementing package versions from 0.0.96 to 0.0.97 in 13 package.json files spanning the root, apps, and packages directories. No functional, behavioral, or API changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Possibly related PRs
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (2)
packages/react/package.json (1)
36-38: Consider supporting React 18+ for backward compatibility.The peerDependencies currently require React 19+ only. Based on coding guidelines, peer dependencies should include React 18+ or 19+. For broader compatibility, consider:
"peerDependencies": { - "@types/react": "^19.0.0", - "react": "^19.0.0" + "@types/react": "^18.0.0 || ^19.0.0", + "react": "^18.0.0 || ^19.0.0" }This pattern is already used correctly in
packages/auth/package.json(Line 22). Based on coding guidelines.apps/create-agentuity/package.json (1)
26-26: Consider using workspace protocol for internal dependencies.The dependency on
@agentuity/cliuses"latest"instead of"workspace:*". While this might be intentional for a CLI wrapper, the coding guidelines recommend using the workspace protocol for cross-package imports within the monorepo to ensure consistency and proper versioning.Based on coding guidelines, consider applying this diff:
- "@agentuity/cli": "latest" + "@agentuity/cli": "workspace:*"If the
"latest"specifier is intentional (e.g., to always fetch the newest published version from npm), please confirm this design decision.
📜 Review details
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
bun.lockis excluded by!**/*.lock
📒 Files selected for processing (13)
apps/create-agentuity/package.json(1 hunks)apps/testing/package.json(1 hunks)package.json(1 hunks)packages/auth/package.json(1 hunks)packages/cli/package.json(1 hunks)packages/core/package.json(1 hunks)packages/react/package.json(1 hunks)packages/runtime/package.json(1 hunks)packages/schema/package.json(1 hunks)packages/server/package.json(1 hunks)packages/test-utils/package.json(1 hunks)packages/vscode/package.json(1 hunks)packages/workbench/package.json(1 hunks)
🧰 Additional context used
📓 Path-based instructions (3)
packages/*/package.json
📄 CodeRabbit inference engine (AGENTS.md)
Use workspace protocol
@agentuity/<package>in package.json dependencies for cross-package imports within the monorepo
Files:
packages/workbench/package.jsonpackages/auth/package.jsonpackages/runtime/package.jsonpackages/cli/package.jsonpackages/vscode/package.jsonpackages/test-utils/package.jsonpackages/server/package.jsonpackages/react/package.jsonpackages/core/package.jsonpackages/schema/package.json
packages/test-utils/**/package.json
📄 CodeRabbit inference engine (packages/test-utils/AGENTS.md)
packages/test-utils/**/package.json: Ensure"private": trueis set in package.json to prevent accidental npm publishing
List devDependencies with"@agentuity/test-utils": "workspace:*"format for workspace imports
Use only @agentuity/core and bun-types as dependencies to minimize dependency footprint
Files:
packages/test-utils/package.json
packages/react/**/package.json
📄 CodeRabbit inference engine (packages/react/AGENTS.md)
Peer dependencies must include React 18+ or 19+
Files:
packages/react/package.json
🔇 Additional comments (16)
packages/vscode/package.json (1)
5-5: Version bump looks good.The version increment from 0.0.96 to 0.0.97 aligns with the release objective. No other changes detected.
packages/test-utils/package.json (1)
3-3: Version bump looks good.The version increment aligns with the release. Package correctly maintains
"private": true, uses workspace protocol, and has minimal dependencies as per coding guidelines.packages/react/package.json (1)
3-3: Version bump looks good.The version increment from 0.0.96 to 0.0.97 aligns with the release objective.
packages/core/package.json (1)
3-3: Version bump looks good.The version increment from 0.0.96 to 0.0.97 aligns with the release objective. Workspace dependencies use the correct protocol.
package.json (1)
3-3: Version bump looks good.The root package version increment from 0.0.96 to 0.0.97 aligns with the release objective.
packages/server/package.json (1)
3-3: Version bump looks good.The version increment from 0.0.96 to 0.0.97 aligns with the release objective. All workspace dependencies use the correct protocol.
packages/cli/package.json (1)
3-3: Version bump looks good.The version increment from 0.0.96 to 0.0.97 aligns with the release objective. All workspace dependencies use the correct protocol.
packages/auth/package.json (1)
3-3: Version bump looks good.The version increment from 0.0.96 to 0.0.97 aligns with the release objective. All workspace dependencies use the correct protocol, and React peer dependencies correctly support both 18+ and 19+ as per coding guidelines.
packages/workbench/package.json (2)
3-3: LGTM! Version bump is consistent with the release.The version update from 0.0.96 to 0.0.97 aligns with the PR objectives and maintains consistency across the monorepo.
40-41: LGTM! Workspace protocol usage is correct.All internal @agentuity dependencies correctly use the
workspace:*protocol as per the coding guidelines.Also applies to: 70-70
apps/create-agentuity/package.json (1)
3-3: LGTM! Version bump is consistent with the release.The version update from 0.0.96 to 0.0.97 aligns with the PR objectives and maintains consistency across the monorepo.
apps/testing/package.json (1)
3-3: LGTM! Version bump is consistent with the release.The version update from 0.0.96 to 0.0.97 aligns with the PR objectives and maintains consistency across the monorepo.
packages/runtime/package.json (2)
3-3: LGTM! Version bump is consistent with the release.The version update from 0.0.96 to 0.0.97 aligns with the PR objectives and maintains consistency across the monorepo.
29-31: LGTM! Workspace protocol usage is correct.All internal @agentuity dependencies correctly use the
workspace:*protocol as per the coding guidelines.Also applies to: 55-55
packages/schema/package.json (2)
3-3: LGTM! Version bump is consistent with the release.The version update from 0.0.96 to 0.0.97 aligns with the PR objectives and maintains consistency across the monorepo.
29-29: LGTM! Workspace protocol usage is correct.All internal @agentuity dependencies correctly use the
workspace:*protocol as per the coding guidelines.Also applies to: 32-32
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.