the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use file_id and volume_id for sandbox IDs

+4 -4
+1 -1
apps/api/src/schema/sandbox-files.ts
··· 8 8 { 9 9 id: text("id") 10 10 .primaryKey() 11 - .default(sql`xata_id()`), 11 + .default(sql`file_id()`), 12 12 sandboxId: text("sandbox_id") 13 13 .notNull() 14 14 .references(() => sandboxes.id),
+1 -1
apps/api/src/schema/sandbox-volumes.ts
··· 8 8 { 9 9 id: text("id") 10 10 .primaryKey() 11 - .default(sql`xata_id()`), 11 + .default(sql`volume_id()`), 12 12 sandboxId: text("sandbox_id") 13 13 .notNull() 14 14 .references(() => sandboxes.id),
+1 -1
apps/sandbox/src/schema/sandbox-files.ts
··· 8 8 { 9 9 id: text("id") 10 10 .primaryKey() 11 - .default(sql`xata_id()`), 11 + .default(sql`file_id()`), 12 12 sandboxId: text("sandbox_id") 13 13 .notNull() 14 14 .references(() => sandboxes.id),
+1 -1
apps/sandbox/src/schema/sandbox-volumes.ts
··· 8 8 { 9 9 id: text("id") 10 10 .primaryKey() 11 - .default(sql`xata_id()`), 11 + .default(sql`volume_id()`), 12 12 sandboxId: text("sandbox_id") 13 13 .notNull() 14 14 .references(() => sandboxes.id),