morpheus-cli 0.1.2 → 0.1.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 +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -63,6 +63,17 @@ If you installed successfully but can't run the `morpheus` command:
63
63
  - On Linux/Mac, verify `echo $PATH`.
64
64
  2. **Restart Terminal**: New installations might not be visible until you restart your shell.
65
65
 
66
+ ## Using NPX
67
+ You can run Morpheus without installing it globally using `npx`:
68
+
69
+ ```bash
70
+
71
+ npx morpheus-cli init
72
+
73
+ npx morpheus-cli start
74
+
75
+ ```
76
+
66
77
  ## Technical Overview
67
78
 
68
79
  Morpheus is built with **Node.js** and **TypeScript**, using **LangChain** as the orchestration engine. It runs as a background daemon process, managing connections to LLM providers (OpenAI, Anthropic, Ollama) and external channels (Telegram, Discord).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "morpheus-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Morpheus CLI Agent",
5
5
  "bin": {
6
6
  "morpheus": "./bin/morpheus.js"