@anthropologies/claudestory 0.1.53 → 0.1.54

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/cli.js CHANGED
@@ -8358,7 +8358,7 @@ function getInstalledVersion() {
8358
8358
  }
8359
8359
  }
8360
8360
  function getRunningVersion() {
8361
- return "0.1.53";
8361
+ return "0.1.54";
8362
8362
  }
8363
8363
  var init_version_check = __esm({
8364
8364
  "src/autonomous/version-check.ts"() {
@@ -10923,7 +10923,7 @@ var init_mcp = __esm({
10923
10923
  init_init();
10924
10924
  ENV_VAR2 = "CLAUDESTORY_PROJECT_ROOT";
10925
10925
  CONFIG_PATH2 = ".story/config.json";
10926
- version = "0.1.53";
10926
+ version = "0.1.54";
10927
10927
  main().catch((err) => {
10928
10928
  process.stderr.write(`Fatal: ${err instanceof Error ? err.message : String(err)}
10929
10929
  `);
@@ -14354,7 +14354,7 @@ async function runCli() {
14354
14354
  registerSessionCommand: registerSessionCommand2,
14355
14355
  registerRepairCommand: registerRepairCommand2
14356
14356
  } = await Promise.resolve().then(() => (init_register(), register_exports));
14357
- const version2 = "0.1.53";
14357
+ const version2 = "0.1.54";
14358
14358
  class HandledError extends Error {
14359
14359
  constructor() {
14360
14360
  super("HANDLED_ERROR");
package/dist/mcp.js CHANGED
@@ -7816,7 +7816,7 @@ function getInstalledVersion() {
7816
7816
  }
7817
7817
  }
7818
7818
  function getRunningVersion() {
7819
- return "0.1.53";
7819
+ return "0.1.54";
7820
7820
  }
7821
7821
 
7822
7822
  // src/autonomous/guide.ts
@@ -10055,7 +10055,7 @@ async function ensureGitignoreEntries(gitignorePath, entries) {
10055
10055
  // src/mcp/index.ts
10056
10056
  var ENV_VAR2 = "CLAUDESTORY_PROJECT_ROOT";
10057
10057
  var CONFIG_PATH2 = ".story/config.json";
10058
- var version = "0.1.53";
10058
+ var version = "0.1.54";
10059
10059
  function tryDiscoverRoot() {
10060
10060
  const envRoot = process.env[ENV_VAR2];
10061
10061
  if (envRoot) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropologies/claudestory",
3
- "version": "0.1.53",
3
+ "version": "0.1.54",
4
4
  "license": "UNLICENSED",
5
5
  "description": "Cross-session context persistence for AI coding projects. Tracks tickets, issues, roadmap, and handovers so every session builds on the last.",
6
6
  "keywords": [
@@ -292,7 +292,8 @@ Do NOT search source code for this. The schema is:
292
292
 
293
293
  ```json
294
294
  {
295
- "version": 2,
295
+ "version": 1,
296
+ "schemaVersion": 1,
296
297
  "project": "string",
297
298
  "type": "string (npm, cargo, pip, etc.)",
298
299
  "language": "string",
@@ -302,9 +303,9 @@ Do NOT search source code for this. The schema is:
302
303
  },
303
304
  "recipe": "string (default: coding)",
304
305
  "recipeOverrides": {
305
- "maxTicketsPerSession": "number (0 = unlimited, default: 3)",
306
+ "maxTicketsPerSession": "number (0 = unlimited, default: 5)",
306
307
  "compactThreshold": "string (high/medium/low, default: high)",
307
- "reviewBackends": ["codex", "agent"],
308
+ "reviewBackends": ["codex", "agent"], // top-level default; per-stage backends override this
308
309
  "handoverInterval": "number (default: 3)",
309
310
  "stages": {
310
311
  "WRITE_TESTS": {
@@ -326,6 +327,12 @@ Do NOT search source code for this. The schema is:
326
327
  "enabled": "boolean",
327
328
  "command": "string (default: npm run build)"
328
329
  },
330
+ "PLAN_REVIEW": {
331
+ "backends": ["codex", "agent"]
332
+ },
333
+ "CODE_REVIEW": {
334
+ "backends": ["codex", "agent"]
335
+ },
329
336
  "LESSON_CAPTURE": { "enabled": "boolean" },
330
337
  "ISSUE_SWEEP": { "enabled": "boolean" }
331
338
  }