@anthropologies/claudestory 0.1.46 → 0.1.47

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.46";
8361
+ return "0.1.47";
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.46";
10926
+ version = "0.1.47";
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.46";
14357
+ const version2 = "0.1.47";
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.46";
7819
+ return "0.1.47";
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.46";
10058
+ var version = "0.1.47";
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.46",
3
+ "version": "0.1.47",
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": [
@@ -87,9 +87,11 @@ After loading context, present a summary with two parts: a conversational intro
87
87
 
88
88
  Open with the project name and progress. Mention what the last session accomplished in one sentence. Note anything important (no git repo, open issues, blockers). Keep it brief -- the tables carry the detail.
89
89
 
90
- **Part 2: Structured tables**
90
+ **Part 2: Structured tables (REQUIRED -- always show these, do not fold into prose)**
91
91
 
92
- **Ready to Work** -- call `claudestory_recommend` for context-aware suggestions, then show a table of unblocked tickets ready to be picked up:
92
+ You MUST show the following tables after the prose intro. Do not summarize them in paragraph form.
93
+
94
+ **Ready to Work table** -- call `claudestory_recommend` for context-aware suggestions. Always render as a markdown table:
93
95
 
94
96
  ```
95
97
  ## Ready to Work
@@ -102,7 +104,7 @@ Open with the project name and progress. Mention what the last session accomplis
102
104
 
103
105
  Show up to 5 unblocked tickets. If more exist, note "(+N more unblocked)".
104
106
 
105
- **Decisions Pending** (only if there are TBD items in CLAUDE.md or undecided tech choices from the brief):
107
+ **Decisions Pending** (show only if there are TBD items in CLAUDE.md or undecided tech choices):
106
108
 
107
109
  ```
108
110
  ## Decisions Pending
@@ -110,7 +112,7 @@ Show up to 5 unblocked tickets. If more exist, note "(+N more unblocked)".
110
112
  - Background jobs: Inngest vs Trigger.dev vs Vercel Cron (affects T-001)
111
113
  ```
112
114
 
113
- **Open Issues** (only if issues exist with status "open"):
115
+ **Open Issues** (show only if issues exist with status "open"):
114
116
 
115
117
  ```
116
118
  ## Open Issues
@@ -119,9 +121,9 @@ Show up to 5 unblocked tickets. If more exist, note "(+N more unblocked)".
119
121
  | ISS-001 | Auth token expiry bug | high |
120
122
  ```
121
123
 
122
- **Key Rules** (from lessons digest -- only if lessons exist, keep to 2-3 most important):
124
+ **Key Rules** (from lessons digest or RULES.md -- brief one-line callout, not a full list):
123
125
 
124
- Show as a brief callout, not a full list. Example: "Rules: integer cents for money, billing engine is pure logic, TDD for billing."
126
+ Example: "Rules: integer cents for money, billing engine is pure logic, TDD for billing."
125
127
 
126
128
  **First session guide (show only when handover count is 0 or 1):**
127
129