@anthropologies/claudestory 0.1.0 → 0.1.1
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/README.md +2 -2
- package/dist/cli.js +1 -1
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Cross-session context persistence for AI coding assistants. Tracks tickets, issu
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g claudestory
|
|
8
|
+
npm install -g @anthropologies/claudestory
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Requires Node.js 20+.
|
|
@@ -140,7 +140,7 @@ This gives the AI full project context from the first message.
|
|
|
140
140
|
## Library Usage
|
|
141
141
|
|
|
142
142
|
```typescript
|
|
143
|
-
import { loadProject, ProjectState } from "claudestory";
|
|
143
|
+
import { loadProject, ProjectState } from "@anthropologies/claudestory";
|
|
144
144
|
|
|
145
145
|
const { state, warnings } = await loadProject("/path/to/project");
|
|
146
146
|
console.log(state.tickets.length); // all tickets
|
package/dist/cli.js
CHANGED
|
@@ -3759,7 +3759,7 @@ function registerPhaseCommand(yargs2) {
|
|
|
3759
3759
|
}
|
|
3760
3760
|
|
|
3761
3761
|
// src/cli/index.ts
|
|
3762
|
-
var version = "0.1.
|
|
3762
|
+
var version = "0.1.1";
|
|
3763
3763
|
var HANDLED_ERROR = /* @__PURE__ */ Symbol("HANDLED_ERROR");
|
|
3764
3764
|
var rawArgs = hideBin(process.argv);
|
|
3765
3765
|
function sniffFormat(args) {
|
package/dist/mcp.js
CHANGED
|
@@ -1702,7 +1702,7 @@ function registerAllTools(server, pinnedRoot) {
|
|
|
1702
1702
|
// src/mcp/index.ts
|
|
1703
1703
|
var ENV_VAR2 = "CLAUDESTORY_PROJECT_ROOT";
|
|
1704
1704
|
var CONFIG_PATH2 = ".story/config.json";
|
|
1705
|
-
var version = "0.1.
|
|
1705
|
+
var version = "0.1.1";
|
|
1706
1706
|
function pinProjectRoot() {
|
|
1707
1707
|
const envRoot = process.env[ENV_VAR2];
|
|
1708
1708
|
if (envRoot) {
|