Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"permissions": {
"allow": ["WebFetch(domain:chat-sdk.dev)"]
}
}
19 changes: 11 additions & 8 deletions apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@
"tsc": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "1.2.0",
"@bufbuild/protobuf": "2.10.2",
"@bufbuild/protovalidate": "^1.1.1",
"@chat-adapter/slack": "^4.26.0",
Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai Bot Apr 23, 2026

Choose a reason for hiding this comment

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

P2: Pin this dependency to an exact version instead of a caret range to align with repo versioning conventions.

(Based on your team's feedback about pinning dependency versions instead of using ranges.)

View Feedback

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/server/package.json, line 18:

<comment>Pin this dependency to an exact version instead of a caret range to align with repo versioning conventions.

(Based on your team's feedback about pinning dependency versions instead of using ranges.) </comment>

<file context>
@@ -12,8 +12,11 @@
+    "@ai-sdk/anthropic": "1.2.0",
     "@bufbuild/protobuf": "2.10.2",
     "@bufbuild/protovalidate": "^1.1.1",
+    "@chat-adapter/slack": "^4.26.0",
+    "@chat-adapter/state-ioredis": "^4.26.0",
     "@connectrpc/connect": "2.1.1",
</file context>
Suggested change
"@chat-adapter/slack": "^4.26.0",
"@chat-adapter/slack": "4.26.0",
Fix with Cubic

"@chat-adapter/state-ioredis": "^4.26.0",
"@connectrpc/connect": "2.1.1",
"@connectrpc/connect-node": "2.1.1",
"@connectrpc/validate": "^0.2.0",
Expand All @@ -24,7 +27,10 @@
"@logtape/otel": "2.0.1",
"@logtape/sentry": "2.0.1",
"@openstatus/analytics": "workspace:*",
"@openstatus/subscriptions": "workspace:*",
"@openstatus/assertions": "workspace:*",
"@openstatus/db": "workspace:*",
"@openstatus/emails": "workspace:*",
"@openstatus/error": "workspace:*",
"@openstatus/notification-discord": "workspace:*",
"@openstatus/notification-google-chat": "workspace:*",
"@openstatus/notification-grafana-oncall": "workspace:*",
Expand All @@ -35,29 +41,26 @@
"@openstatus/notification-telegram": "workspace:*",
"@openstatus/notification-twillio-whatsapp": "workspace:*",
"@openstatus/notification-webhook": "workspace:*",
"@openstatus/assertions": "workspace:*",
"@openstatus/db": "workspace:*",
"@openstatus/emails": "workspace:*",
"@openstatus/error": "workspace:*",
"@openstatus/proto": "workspace:*",
"@openstatus/regions": "workspace:*",
"@openstatus/subscriptions": "workspace:*",
"@openstatus/tinybird": "workspace:*",
"@openstatus/tracker": "workspace:*",
"@openstatus/upstash": "workspace:*",
"@openstatus/utils": "workspace:*",
"@opentelemetry/resources": "2.2.0",
"@opentelemetry/semantic-conventions": "1.38.0",
"@scalar/hono-api-reference": "0.8.5",
"@slack/web-api": "7.15.0",
"@t3-oss/env-core": "0.13.10",
"@unkey/api": "2.2.0",
"@upstash/qstash": "2.6.2",
"ai": "6.0.94",
"chat": "^4.26.0",
"hono": "4.11.3",
"nanoid": "5.0.7",
"percentile": "1.6.0",
"validator": "13.12.0",
"@slack/web-api": "7.15.0",
"@ai-sdk/anthropic": "1.2.0",
"ai": "6.0.94",
"zod": "4.1.13"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions apps/server/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const env = createEnv({
SLACK_CLIENT_SECRET: z.string().optional(),
SLACK_REDIRECT_URI: z.string().optional(),
AI_GATEWAY_API_KEY: z.string().optional(),
REDIS_URL: z.string().optional(),
},

/**
Expand Down
Loading
Loading