@anthropologies/claudestory 0.1.43 → 0.1.44

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.43";
8361
+ return "0.1.44";
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.43";
10926
+ version = "0.1.44";
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.43";
14357
+ const version2 = "0.1.44";
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.43";
7819
+ return "0.1.44";
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.43";
10058
+ var version = "0.1.44";
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.43",
3
+ "version": "0.1.44",
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": [
@@ -372,12 +372,12 @@ Re-show this `AskUserQuestion` after adjustments. Loop until "Looks good."
372
372
  #### 1d2. Refinement and Review
373
373
 
374
374
  After the user approves the proposal structure, use `AskUserQuestion` for refinement depth:
375
- - question: "How much refinement before creating?"
375
+ - question: "Want me to refine these before creating?"
376
376
  - header: "Depth"
377
377
  - options:
378
- - "Create as-is" -- skip refinement and review, execute immediately
379
- - "Refine tickets" -- add descriptions, dependencies, sizing
380
- - "Refine + independent review (if review tools available)" -- full pipeline
378
+ - "Create as-is" -- create tickets now with just titles
379
+ - "Yes, refine them" -- I'll add descriptions, figure out dependencies, and flag oversized tickets
380
+ - "Yes, refine + get a second opinion" -- I'll refine, then have an independent reviewer check my work
381
381
 
382
382
  If "Create as-is" and no brief exists: warn "Note: tickets will have titles only -- you can add descriptions later."
383
383