replicas-engine 0.1.480 → 0.1.481

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
@@ -582,7 +582,7 @@ var WORKSPACE_SIZES = ["small", "large"];
582
582
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
583
583
 
584
584
  // ../shared/src/e2b.ts
585
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-22-v5";
585
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-23-v1";
586
586
 
587
587
  // ../shared/src/runtime-env.ts
588
588
  function shellQuotePosix(value) {
@@ -1614,9 +1614,10 @@ All writes are proposals: a human reviews them in the dashboard, and nothing tak
1614
1614
 
1615
1615
  Use \`replicas learnings --help\` and subcommand help such as \`replicas learnings add --help\`, \`replicas learnings update --help\`, or \`replicas learnings delete --help\` for current command syntax.
1616
1616
 
1617
- **Be very conservative:**
1618
- - Propose \`add\` only for repeatable, org-useful facts likely to matter again: explicit user corrections, hard-won environment or process knowledge.
1619
- - Never store task-specific details, anything derivable by reading the repo, or secrets/credentials.
1617
+ A human approves every proposal before it takes effect, so don't agonize over borderline calls \u2014 but keep proposals genuinely useful rather than reflexive.
1618
+
1619
+ - Propose \`add\` for anything repeatable and org-useful: user corrections and preferences, hard-won environment or process knowledge, conventions and decisions worth following, and gotchas that would waste time again. If you learned it the hard way this task, capture it.
1620
+ - Never store task-specific details that won't recur, facts trivially derivable by reading the repo, or secrets/credentials.
1620
1621
  - Propose \`update\` or \`delete\` when a learning is contradicted by the current code or docs, especially if the outdated guidance would affect future repeated work.
1621
1622
  - Write narrow triggers describing when the entry should surface (e.g. "UI/UX work on the admin panel"), not vague topics.`;
1622
1623
  var LEARNINGS_ABILITY = {
@@ -9801,7 +9802,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
9801
9802
  var MIN_CODEX_CLI_VERSION = "0.144.6";
9802
9803
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
9803
9804
  var codexCliVersionEnsured = null;
9804
- var ENGINE_PACKAGE_VERSION = "0.1.480";
9805
+ var ENGINE_PACKAGE_VERSION = "0.1.481";
9805
9806
  var INITIALIZE_METHOD = "initialize";
9806
9807
  var INITIALIZED_NOTIFICATION = "initialized";
9807
9808
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.480",
3
+ "version": "0.1.481",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",