replicas-engine 0.1.65 → 0.1.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/index.js CHANGED
@@ -1080,7 +1080,7 @@ function parseReplicasConfigString(content, filename) {
1080
1080
  }
1081
1081
 
1082
1082
  // ../shared/src/engine/environment.ts
1083
- var REPLICAS_ENGINE_VERSION = "30-03-2026-kipling-v3";
1083
+ var DAYTONA_SNAPSHOT_ID = "01-04-2026-kipling-v8";
1084
1084
 
1085
1085
  // ../shared/src/engine/types.ts
1086
1086
  var DEFAULT_CHAT_TITLES = {
@@ -1148,7 +1148,7 @@ function upsertRepositoryStatus(current, incoming) {
1148
1148
  }
1149
1149
  function createDefaultDetails() {
1150
1150
  return {
1151
- engineVersion: REPLICAS_ENGINE_VERSION,
1151
+ engineVersion: DAYTONA_SNAPSHOT_ID,
1152
1152
  globalWarmHookCompleted: { status: "n/a", details: null },
1153
1153
  repositories: [],
1154
1154
  filesUploaded: [],
@@ -1188,7 +1188,7 @@ var EnvironmentDetailsService = class {
1188
1188
  gitService.listRepositories(),
1189
1189
  detectGitIdentityConfigured()
1190
1190
  ]);
1191
- details.engineVersion = REPLICAS_ENGINE_VERSION;
1191
+ details.engineVersion = DAYTONA_SNAPSHOT_ID;
1192
1192
  details.claudeAuthMethod = detectClaudeAuthMethod();
1193
1193
  details.codexAuthMethod = detectCodexAuthMethod();
1194
1194
  details.gitIdentityConfigured = gitIdentityConfigured;
@@ -3830,7 +3830,7 @@ function createV1Routes(deps) {
3830
3830
  });
3831
3831
  app2.get("/version", (c) => {
3832
3832
  const response = {
3833
- version: REPLICAS_ENGINE_VERSION
3833
+ version: DAYTONA_SNAPSHOT_ID
3834
3834
  };
3835
3835
  return c.json(response);
3836
3836
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -27,6 +27,7 @@
27
27
  "author": "Replicas",
28
28
  "license": "MIT",
29
29
  "dependencies": {
30
+ "@replicas/shared": "workspace:*",
30
31
  "@anthropic-ai/claude-agent-sdk": "^0.2.41",
31
32
  "@hono/node-server": "^1.19.5",
32
33
  "@openai/codex-sdk": "^0.111.0",