replicas-engine 0.1.228 → 0.1.229

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
@@ -352,6 +352,9 @@ function parsePosixEnvFile(content) {
352
352
  return result;
353
353
  }
354
354
 
355
+ // ../shared/src/git.ts
356
+ var GIT_PARTIAL_CLONE_FILTER = "blob:none";
357
+
355
358
  // ../shared/src/default-skills/replicas-agent/abilities/computer.ts
356
359
  var SECTION = `### Computer use (Linux desktop control)
357
360
  Drive the workspace's Linux desktop - open a browser, click, type, scroll, screenshot, record - and surface a live noVNC viewer to the user via the \`replicas computer\` CLI. Every Replicas workspace boots with Xvfb / openbox / x11vnc / noVNC pre-installed.
@@ -1773,7 +1776,7 @@ function isClaudeAuthErrorText(text) {
1773
1776
  }
1774
1777
 
1775
1778
  // ../shared/src/engine/environment.ts
1776
- var DAYTONA_SNAPSHOT_ID = "28-05-2026-royal-york-v5";
1779
+ var DAYTONA_SNAPSHOT_ID = "28-05-2026-royal-york-v6";
1777
1780
 
1778
1781
  // ../shared/src/engine/types.ts
1779
1782
  var DEFAULT_CHAT_TITLES = {
@@ -2717,7 +2720,7 @@ var GitService = class {
2717
2720
  };
2718
2721
  const persistedState = await loadRepoState(repo.name);
2719
2722
  const persistedBranch = persistedState?.currentBranch;
2720
- runGitCommand(["fetch", "--all", "--prune"], repo.path);
2723
+ runGitCommand(["fetch", "--all", "--prune", `--filter=${GIT_PARTIAL_CLONE_FILTER}`], repo.path);
2721
2724
  if (persistedBranch && branchExists(persistedBranch, repo.path)) {
2722
2725
  const currentBranch = getCurrentBranch(repo.path);
2723
2726
  if (currentBranch !== persistedBranch) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.228",
3
+ "version": "0.1.229",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",