morpheus-cli 0.2.2 → 0.2.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.
- package/README.md +346 -282
- package/dist/cli/commands/init.js +14 -14
- package/dist/config/manager.js +1 -1
- package/dist/config/schemas.js +2 -2
- package/dist/http/api.js +66 -1
- package/dist/runtime/memory/sati/index.js +0 -1
- package/dist/runtime/memory/sati/repository.js +69 -62
- package/dist/runtime/memory/sati/service.js +2 -2
- package/dist/runtime/memory/sati/system-prompts.js +3 -1
- package/dist/ui/assets/index-BLLLlr0w.css +1 -0
- package/dist/ui/assets/index-Ccml5qIL.js +50 -0
- package/dist/ui/index.html +2 -2
- package/package.json +1 -1
- package/dist/ui/assets/index-Ddyo4FWH.js +0 -50
- package/dist/ui/assets/index-tz0YVye-.css +0 -1
package/dist/ui/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Morpheus Agent UI</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-Ccml5qIL.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-BLLLlr0w.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "morpheus-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Morpheus is a local AI agent for developers, running as a CLI daemon that connects to LLMs, local tools, and MCPs, enabling interaction via Terminal, Telegram, and Discord. Inspired by the character Morpheus from *The Matrix*, the project acts as an intelligent orchestrator, bridging the gap between the developer and complex systems.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"morpheus": "./bin/morpheus.js"
|