@anthropologies/claudestory 0.1.64 → 0.1.65

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
@@ -14386,7 +14386,7 @@ function getInstalledVersion() {
14386
14386
  }
14387
14387
  }
14388
14388
  function getRunningVersion() {
14389
- return "0.1.64";
14389
+ return "0.1.65";
14390
14390
  }
14391
14391
  var init_version_check = __esm({
14392
14392
  "src/autonomous/version-check.ts"() {
@@ -17895,7 +17895,7 @@ var init_mcp = __esm({
17895
17895
  init_inbox_watcher();
17896
17896
  ENV_VAR2 = "CLAUDESTORY_PROJECT_ROOT";
17897
17897
  CONFIG_PATH2 = ".story/config.json";
17898
- version = "0.1.64";
17898
+ version = "0.1.65";
17899
17899
  main().catch((err) => {
17900
17900
  process.stderr.write(`Fatal: ${err instanceof Error ? err.message : String(err)}
17901
17901
  `);
@@ -22295,7 +22295,7 @@ async function runCli() {
22295
22295
  registerSessionCommand: registerSessionCommand2,
22296
22296
  registerRepairCommand: registerRepairCommand2
22297
22297
  } = await Promise.resolve().then(() => (init_register(), register_exports));
22298
- const version2 = "0.1.64";
22298
+ const version2 = "0.1.65";
22299
22299
  class HandledError extends Error {
22300
22300
  constructor() {
22301
22301
  super("HANDLED_ERROR");
package/dist/mcp.js CHANGED
@@ -13532,7 +13532,7 @@ function getInstalledVersion() {
13532
13532
  }
13533
13533
  }
13534
13534
  function getRunningVersion() {
13535
- return "0.1.64";
13535
+ return "0.1.65";
13536
13536
  }
13537
13537
 
13538
13538
  // src/autonomous/guide.ts
@@ -16672,7 +16672,7 @@ async function trimFailedDirectory(inboxPath) {
16672
16672
  // src/mcp/index.ts
16673
16673
  var ENV_VAR2 = "CLAUDESTORY_PROJECT_ROOT";
16674
16674
  var CONFIG_PATH2 = ".story/config.json";
16675
- var version = "0.1.64";
16675
+ var version = "0.1.65";
16676
16676
  function tryDiscoverRoot() {
16677
16677
  const envRoot = process.env[ENV_VAR2];
16678
16678
  if (envRoot) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthropologies/claudestory",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "license": "PolyForm-Noncommercial-1.0.0",
5
5
  "description": "An agentic development framework. Track tickets, issues, and progress for your project so every session builds on the last.",
6
6
  "homepage": "https://claudestory.com",
@@ -16,7 +16,6 @@ claudestory tracks tickets, issues, roadmap, and handovers in a `.story/` direct
16
16
  - `/story auto T-183 T-184 ISS-077` -> start targeted autonomous mode with ONLY those items in order (read `autonomous-mode.md`; pass the IDs as `targetWork` array in the start call)
17
17
  - `/story review T-XXX` -> start review mode for a ticket (read `autonomous-mode.md` in the same directory as this skill file; if not found, tell user to run `claudestory setup-skill`)
18
18
  - `/story plan T-XXX` -> start plan mode for a ticket (read `autonomous-mode.md` in the same directory as this skill file; if not found, tell user to run `claudestory setup-skill`)
19
- - `/story guided T-XXX` -> start guided mode for a ticket (read `autonomous-mode.md` in the same directory as this skill file; if not found, tell user to run `claudestory setup-skill`)
20
19
  - `/story handover` -> draft a session handover. Summarize the session's work, then call `claudestory_handover_create` with the drafted content and a descriptive slug
21
20
  - `/story snapshot` -> save project state (call `claudestory_snapshot` MCP tool)
22
21
  - `/story export` -> export project for sharing. Ask the user whether to export the current phase or the full project, then call `claudestory_export` with either `phase` or `all` set
@@ -134,10 +133,11 @@ Example: "Rules: integer cents for money, billing engine is pure logic, TDD for
134
133
 
135
134
  ```
136
135
  Tip: You can also use these modes anytime:
137
- /story guided T-XXX One ticket end-to-end with planning and code review
138
- /story review T-XXX Review code you already wrote
139
- /story design Evaluate frontend against platform best practices
140
- /story review-lenses Run multi-lens review on current plan or diff
136
+ /story auto T-XXX ISS-YYY Autonomous mode scoped to specific tickets/issues
137
+ /story review T-XXX Review code you already wrote
138
+ /story plan T-XXX Plan a ticket with review rounds
139
+ /story design Evaluate frontend against platform best practices
140
+ /story review-lenses Run multi-lens review on current plan or diff
141
141
  ```
142
142
 
143
143
  Show this once or twice, then never again.
@@ -90,15 +90,9 @@ The autonomous guide supports four execution tiers. Same guide, same handlers, d
90
90
  3. On plan review approve: session ends automatically. On revise/reject: revise plan, re-review
91
91
  4. The approved plan is saved in `.story/sessions/<id>/plan.md`
92
92
 
93
- ### `/story guided T-XXX`
93
+ ### `/story guided T-XXX` (deprecated -- alias for targeted auto)
94
94
 
95
- "Do T-XXX end to end with review." Full pipeline for a single ticket: PLAN -> PLAN_REVIEW -> IMPLEMENT -> CODE_REVIEW -> FINALIZE -> COMPLETE -> HANDOVER -> SESSION_END.
96
-
97
- 1. Call `claudestory_autonomous_guide` with `{ "sessionId": null, "action": "start", "mode": "guided", "ticketId": "T-XXX" }`
98
- 2. Follow every instruction exactly, calling the guide back after each step
99
- 3. Session ends automatically after the single ticket is complete
100
-
101
- **Guided vs Auto:** Guided mode forces `maxTicketsPerSession: 1` and exits after the ticket. Auto mode loops until all tickets are done or the session limit is reached.
95
+ Use `/story auto T-XXX` instead. A single-ticket targeted auto session is equivalent. The guide handler still accepts `mode: "guided"` for backward compatibility but routes to the same targeted auto path.
102
96
 
103
97
  ### All tiered modes:
104
98
  - Require a `ticketId` -- no ad-hoc review without a ticket in V1