mnemex 1.0.4 → 1.0.5
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 +11 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -70,6 +70,17 @@ cargo build --release
|
|
|
70
70
|
./target/release/mnemex install
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
## Credits
|
|
74
|
+
|
|
75
|
+
Mnemex leverages architectural patterns and concepts from [@ruv](https://github.com/ruvnet)'s innovative work in AI agent orchestration:
|
|
76
|
+
|
|
77
|
+
- **[claude-flow](https://github.com/ruvnet/claude-flow)** - Multi-agent orchestration patterns and swarm coordination
|
|
78
|
+
- **[agentic-flow](https://github.com/ruvnet/agentic-flow)** - Advanced agent workflow automation
|
|
79
|
+
- **[ruv-swarm](https://github.com/ruvnet/ruv-swarm)** - Distributed agent coordination
|
|
80
|
+
- **[reasoningbank](https://github.com/ruvnet/reasoningbank)** - Memory and reasoning patterns
|
|
81
|
+
|
|
82
|
+
Special thanks to [@ruv](https://github.com/ruvnet) for pioneering the architectural foundations that inspired this project.
|
|
83
|
+
|
|
73
84
|
## License
|
|
74
85
|
|
|
75
86
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mnemex",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Memory Extension for AI Agents - Intelligent context optimization via semantic retrieval. MCP server for Claude Code.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"mnemex": "./bin/mnemex"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"optionalDependencies": {
|
|
46
46
|
"@dgtise/mnemex-darwin-arm64": "1.0.0",
|
|
47
47
|
"@dgtise/mnemex-darwin-x64": "1.0.0",
|
|
48
|
-
"@dgtise/mnemex-linux-x64": "1.0.
|
|
48
|
+
"@dgtise/mnemex-linux-x64": "1.0.2",
|
|
49
49
|
"@dgtise/mnemex-linux-arm64": "1.0.0",
|
|
50
50
|
"@dgtise/mnemex-win32-x64": "1.0.0"
|
|
51
51
|
},
|