@nguyenthdat/opencode-memory-linux-x64-gnu 0.0.0-bootstrap.0 → 0.3.2
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 +21 -0
- package/THIRD_PARTY_NOTICES.md +14 -0
- package/bin/memory-libs/libzvec_c_api.so +0 -0
- package/bin/opencode-memory +0 -0
- package/notices/ZVEC_NOTICE +95 -0
- package/package.json +21 -6
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Dat Nguyen
|
|
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,14 @@
|
|
|
1
|
+
# Third-Party Notices
|
|
2
|
+
|
|
3
|
+
The native memory binary and TypeScript plugin include or link dependencies
|
|
4
|
+
under permissive licenses, including:
|
|
5
|
+
|
|
6
|
+
- Alibaba `zvec` and `zvec-rust` (Apache-2.0)
|
|
7
|
+
- UtilityAI `llama-cpp-rs` (MIT OR Apache-2.0)
|
|
8
|
+
- `llama.cpp` (MIT)
|
|
9
|
+
- Hugging Face `hf-hub` (Apache-2.0)
|
|
10
|
+
- Tokio `prost` (Apache-2.0)
|
|
11
|
+
- Buf Protobuf-ES (Apache-2.0 AND BSD-3-Clause)
|
|
12
|
+
|
|
13
|
+
The upstream zvec notice, including notices for bundled Unicode data and
|
|
14
|
+
pyglass-derived code, is redistributed at `notices/ZVEC_NOTICE`.
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
zvec
|
|
2
|
+
Copyright 2025-present the zvec project
|
|
3
|
+
|
|
4
|
+
This product is licensed under the Apache License, Version 2.0 (see the LICENSE
|
|
5
|
+
file). It includes third-party software components that are distributed under
|
|
6
|
+
their own licenses, as listed below.
|
|
7
|
+
|
|
8
|
+
================================================================================
|
|
9
|
+
Third-Party Components
|
|
10
|
+
================================================================================
|
|
11
|
+
|
|
12
|
+
--------------------------------------------------------------------------------
|
|
13
|
+
Unicode Character Database
|
|
14
|
+
--------------------------------------------------------------------------------
|
|
15
|
+
Project: Unicode Character Database
|
|
16
|
+
Homepage: https://www.unicode.org/
|
|
17
|
+
License: Unicode License V3
|
|
18
|
+
Used in: src/db/index/column/fts_column/tokenizer/standard_tokenizer_unicode.inc
|
|
19
|
+
|
|
20
|
+
The generated standard tokenizer lookup tables are derived from Unicode 17.0.0
|
|
21
|
+
data files: auxiliary/WordBreakProperty.txt, emoji/emoji-data.txt,
|
|
22
|
+
LineBreak.txt, and Scripts.txt.
|
|
23
|
+
|
|
24
|
+
Unicode License V3 copyright and permission notice:
|
|
25
|
+
|
|
26
|
+
UNICODE LICENSE V3 COPYRIGHT AND PERMISSION NOTICE
|
|
27
|
+
Copyright © 1991-2026 Unicode, Inc.
|
|
28
|
+
NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING,
|
|
29
|
+
INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR SOFTWARE, YOU
|
|
30
|
+
UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND
|
|
31
|
+
CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL,
|
|
32
|
+
COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
|
|
33
|
+
|
|
34
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
35
|
+
of data files and any associated documentation (the "Data Files") or software
|
|
36
|
+
and any associated documentation (the "Software") to deal in the Data Files
|
|
37
|
+
or Software without restriction, including without limitation the rights to
|
|
38
|
+
use, copy, modify, merge, publish, distribute, and/or sell copies of the Data
|
|
39
|
+
Files or Software, and to permit persons to whom the Data Files or Software
|
|
40
|
+
are furnished to do so, provided that either (a) this copyright and
|
|
41
|
+
permission notice appear with all copies of the Data Files or Software, or
|
|
42
|
+
(b) this copyright and permission notice appear in associated Documentation.
|
|
43
|
+
|
|
44
|
+
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
45
|
+
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
46
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
47
|
+
THIRD PARTY RIGHTS.
|
|
48
|
+
|
|
49
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
|
|
50
|
+
LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
|
|
51
|
+
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
|
52
|
+
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
53
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.
|
|
54
|
+
|
|
55
|
+
Except as contained in this notice, the name of a copyright holder shall not
|
|
56
|
+
be used in advertising or otherwise to promote the sale, use or other
|
|
57
|
+
dealings in these Data Files or Software without prior written authorization
|
|
58
|
+
of the copyright holder.
|
|
59
|
+
|
|
60
|
+
--------------------------------------------------------------------------------
|
|
61
|
+
pyglass
|
|
62
|
+
--------------------------------------------------------------------------------
|
|
63
|
+
Project: pyglass — Graph Library for Approximate Similarity Search
|
|
64
|
+
Homepage: https://github.com/zilliztech/pyglass
|
|
65
|
+
License: MIT License
|
|
66
|
+
Used in: src/core/utility/linear_pool.h
|
|
67
|
+
|
|
68
|
+
The LinearPool implementation (and the accompanying Neighbor / Bitset helpers)
|
|
69
|
+
in src/core/utility/linear_pool.h is adapted from pyglass, with modifications.
|
|
70
|
+
The related BlockHeap design in src/core/utility/block_heap.{h,cc} is also
|
|
71
|
+
derived from pyglass.
|
|
72
|
+
|
|
73
|
+
Original license text:
|
|
74
|
+
|
|
75
|
+
MIT License
|
|
76
|
+
|
|
77
|
+
Copyright (c) 2023 zh Wang
|
|
78
|
+
|
|
79
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
80
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
81
|
+
in the Software without restriction, including without limitation the rights
|
|
82
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
83
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
84
|
+
furnished to do so, subject to the following conditions:
|
|
85
|
+
|
|
86
|
+
The above copyright notice and this permission notice shall be included in all
|
|
87
|
+
copies or substantial portions of the Software.
|
|
88
|
+
|
|
89
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
90
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
91
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
92
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
93
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
94
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
95
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nguyenthdat/opencode-memory-linux-x64-gnu",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
5
|
-
"os": [
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"description": "Native OpenCode memory sidecar for Linux x64 glibc",
|
|
5
|
+
"os": [
|
|
6
|
+
"linux"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
11
|
+
"libc": [
|
|
12
|
+
"glibc"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"bin",
|
|
16
|
+
"notices",
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"THIRD_PARTY_NOTICES.md"
|
|
19
|
+
],
|
|
9
20
|
"license": "MIT",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/nguyenthdat/opencode-native-memory.git"
|
|
24
|
+
},
|
|
10
25
|
"publishConfig": {
|
|
11
26
|
"access": "public"
|
|
12
27
|
}
|