morpheus-cli 0.1.11 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -80,9 +80,9 @@ Morpheus is built with **Node.js** and **TypeScript**, using **LangChain** as th
80
80
 
81
81
  ### Core Components
82
82
 
83
- - **Runtime (`src/runtime/`)**: The heart of the application. Manages the agent lifecycle, provider instantiation, and command execution.
83
+ - **Runtime (`src/runtime/`)**: The heart of the application. Manages the Oracle (agent) lifecycle, provider instantiation, and command execution.
84
84
  - **CLI (`src/cli/`)**: Built with `commander`, handles user interaction, configuration, and daemon control (`start`, `stop`, `status`).
85
- - **Configuration (`src/config/`)**: Singleton-based configuration manager using `zod` for validation and `js-yaml` for persistence (`~/.morpheus/config.yaml`).
85
+ - **Configuration (`src/config/`)**: Singleton-based configuration manager using `zod` for validation and `js-yaml` for persistence (`~/.morpheus/zaion.yaml`).
86
86
  - **Channels (`src/channels/`)**: Adapters for external communication. Currently supports Telegram (`telegraf`) with strict user whitelisting.
87
87
 
88
88
  ## Features
@@ -169,7 +169,7 @@ npm start -- status
169
169
 
170
170
  ### 4. Configuration
171
171
 
172
- The configuration file is located at `~/.morpheus/config.yaml`. You can edit it manually or use the `morpheus config` command.
172
+ The configuration file is located at `~/.morpheus/zaion.yaml`. You can edit it manually or use the `morpheus config` command.
173
173
 
174
174
  ```yaml
175
175
  agent:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "morpheus-cli",
3
- "version": "0.1.11",
3
+ "version": "0.2.0",
4
4
  "description": "Morpheus CLI Agent",
5
5
  "bin": {
6
6
  "morpheus": "./bin/morpheus.js"
@@ -72,5 +72,5 @@
72
72
  "bugs": {
73
73
  "url": "https://github.com/marcosnunesmbs/morpheus/issues"
74
74
  },
75
- "homepage": "https://github.com/marcosnunesmbs/morpheus#readme"
75
+ "homepage": "https://morpheusproject.xyz"
76
76
  }