opencode-session-recall 0.2.1 → 0.3.0
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/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 maelos
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opencode-session-recall.d.ts","sourceRoot":"","sources":["../src/opencode-session-recall.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;;;;;AAkFlD,wBAGE"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// src/
|
|
1
|
+
// src/opencode-session-recall.ts
|
|
2
2
|
import { createOpencodeClient } from "@opencode-ai/sdk/v2";
|
|
3
3
|
|
|
4
4
|
// src/sessions.ts
|
|
@@ -666,7 +666,7 @@ function messages(client) {
|
|
|
666
666
|
});
|
|
667
667
|
}
|
|
668
668
|
|
|
669
|
-
// src/
|
|
669
|
+
// src/opencode-session-recall.ts
|
|
670
670
|
var TOOLS = [
|
|
671
671
|
"recall",
|
|
672
672
|
"recall_get",
|
|
@@ -717,10 +717,10 @@ var server = async (ctx, options) => {
|
|
|
717
717
|
}
|
|
718
718
|
};
|
|
719
719
|
};
|
|
720
|
-
var
|
|
720
|
+
var opencode_session_recall_default = {
|
|
721
721
|
id: "opencode-session-recall",
|
|
722
722
|
server
|
|
723
723
|
};
|
|
724
724
|
export {
|
|
725
|
-
|
|
725
|
+
opencode_session_recall_default as default
|
|
726
726
|
};
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "opencode-session-recall",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Agent memory without a memory system — search and retrieve opencode conversation history that was lost to compaction, across sessions and projects",
|
|
7
|
-
"main": "./dist/
|
|
7
|
+
"main": "./dist/opencode-session-recall.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"types": "./dist/
|
|
11
|
-
"import": "./dist/
|
|
10
|
+
"types": "./dist/opencode-session-recall.d.ts",
|
|
11
|
+
"import": "./dist/opencode-session-recall.js"
|
|
12
12
|
},
|
|
13
13
|
"./server": {
|
|
14
|
-
"types": "./dist/
|
|
15
|
-
"import": "./dist/
|
|
14
|
+
"types": "./dist/opencode-session-recall.d.ts",
|
|
15
|
+
"import": "./dist/opencode-session-recall.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"dev": "opencode plugin dev",
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"compile": "tsup src/
|
|
24
|
+
"compile": "tsup src/opencode-session-recall.ts --format esm && tsc --emitDeclarationOnly --outDir dist",
|
|
25
25
|
"prepublishOnly": "npm run typecheck && npm run compile"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
@@ -37,7 +37,16 @@
|
|
|
37
37
|
],
|
|
38
38
|
"author": "maelos",
|
|
39
39
|
"publishConfig": {
|
|
40
|
-
"access": "public"
|
|
40
|
+
"access": "public",
|
|
41
|
+
"provenance": true
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/rmk40/opencode-session-recall.git"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/rmk40/opencode-session-recall#readme",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/rmk40/opencode-session-recall/issues"
|
|
41
50
|
},
|
|
42
51
|
"license": "MIT",
|
|
43
52
|
"peerDependencies": {
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;;;;;AAkFlD,wBAGE"}
|