ai-hist 0.18.2 → 0.18.3

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -75,13 +75,13 @@ is equivalent to `--local`.
75
75
  Cached reads preserve the requested scope and never consult commercial auth.
76
76
  Stored remote history can be queried with absent, malformed, expired, or
77
77
  ambiguous credentials. Remote acquisition requires an explicitly loaded plugin
78
- registry. Install `@agent-relay/history-provider-sources` for Claude web/Codex
79
- cloud, or `@agent-relay/relayhistory` for RelayHistory. Installing a package does
78
+ registry. Install `@relayhistory/provider-sources` for Claude web/Codex
79
+ cloud, or `@relayhistory/capture` for RelayHistory. Installing a package does
80
80
  not register it, inspect auth or start delivery.
81
81
 
82
82
  ```ts
83
83
  import { HistoryPluginRegistry } from 'ai-hist';
84
- import { createHistoryPlugin } from '@agent-relay/history-provider-sources';
84
+ import { createHistoryPlugin } from '@relayhistory/provider-sources';
85
85
  const plugins = new HistoryPluginRegistry();
86
86
  plugins.register(createHistoryPlugin({connectors:['claude-web']}));
87
87
  await discoverSessions({ scope:'remote', plugins, sourceConnectors:['claude-web'] });
@@ -210,7 +210,7 @@ See [the migration guide](https://github.com/AgentWorkforce/relayhistory/blob/ma
210
210
  Use a `HistoryDestination` plugin for any service or pipe the public NDJSON
211
211
  export to your own program. The local package has no cloud exports, login CLI,
212
212
  or default cloud MCP tool. RelayHistory's auth, sharing, replay, durable upload
213
- and readback live in [`@agent-relay/relayhistory`](../plugins/relayhistory/sdk/README.md).
213
+ and readback live in [`@relayhistory/capture`](../plugins/relayhistory/sdk/README.md).
214
214
  Move imports from `ai-hist/cloud` to that package. Git hooks and commit linking
215
215
  remain local SDK operations.
216
216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hist",
3
- "version": "0.18.2",
3
+ "version": "0.18.3",
4
4
  "description": "Local history ingestion, storage, evidence, SDK, CLI and MCP server.",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -88,7 +88,7 @@
88
88
  },
89
89
  "dependencies": {
90
90
  "@modelcontextprotocol/sdk": "^1.29.0",
91
- "ai-hist-native": "0.18.2",
91
+ "ai-hist-native": "0.18.3",
92
92
  "zod": "^4.4.3"
93
93
  },
94
94
  "devDependencies": {