@ethosagent/cli 0.2.1 → 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/dist/index.js +3 -3
- package/package.json +11 -5
package/dist/index.js
CHANGED
|
@@ -8315,7 +8315,7 @@ var c5 = {
|
|
|
8315
8315
|
red: "\x1B[31m",
|
|
8316
8316
|
cyan: "\x1B[36m"
|
|
8317
8317
|
};
|
|
8318
|
-
var ETHOS_VERSION = true ? "0.2.
|
|
8318
|
+
var ETHOS_VERSION = true ? "0.2.3" : process.env.ETHOS_VERSION ?? "dev";
|
|
8319
8319
|
var CORE_SDKS = [
|
|
8320
8320
|
{ label: "Anthropic provider", module: "@anthropic-ai/sdk", required: true },
|
|
8321
8321
|
{ label: "OpenAI-compat provider", module: "openai", required: true }
|
|
@@ -14026,7 +14026,7 @@ var c13 = {
|
|
|
14026
14026
|
cyan: "\x1B[36m"
|
|
14027
14027
|
};
|
|
14028
14028
|
var PACKAGE = "@ethosagent/cli";
|
|
14029
|
-
var CURRENT_VERSION = true ? "0.2.
|
|
14029
|
+
var CURRENT_VERSION = true ? "0.2.3" : process.env.ETHOS_VERSION ?? "dev";
|
|
14030
14030
|
async function runUpgrade() {
|
|
14031
14031
|
const installMethod = detectInstallMethod();
|
|
14032
14032
|
if (installMethod === "source") {
|
|
@@ -14129,7 +14129,7 @@ function errMsg2(err) {
|
|
|
14129
14129
|
|
|
14130
14130
|
// src/index.ts
|
|
14131
14131
|
init_config();
|
|
14132
|
-
var ETHOS_VERSION2 = true ? "0.2.
|
|
14132
|
+
var ETHOS_VERSION2 = true ? "0.2.3" : process.env.ETHOS_VERSION ?? "dev";
|
|
14133
14133
|
var USAGE = "Usage: ethos [setup | chat | serve | gateway | cron | personality | memory | acp | batch | eval | evolve | plugin | skills | keys | claw | doctor | upgrade] [--version | --help]";
|
|
14134
14134
|
var args = process.argv.slice(2);
|
|
14135
14135
|
var command = args[0] ?? "";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethosagent/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Ethos — TypeScript AI agent framework where personality is architecture. Curated toolsets, first-person identities, scoped memory.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -35,23 +35,29 @@
|
|
|
35
35
|
"node": ">=24"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@hono/node-server": "^2.0.0",
|
|
39
38
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
39
|
+
"@hono/node-server": "^2.0.0",
|
|
40
40
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
41
|
+
"@orpc/contract": "^1.14.0",
|
|
42
|
+
"@orpc/openapi": "^1.14.0",
|
|
43
|
+
"@orpc/server": "^1.14.0",
|
|
41
44
|
"better-sqlite3": "^12.9.0",
|
|
42
45
|
"croner": "^9.0.0",
|
|
46
|
+
"hono": "^4.12.15",
|
|
43
47
|
"ink": "^5.0.0",
|
|
44
48
|
"openai": "^4.87.0",
|
|
49
|
+
"pino": "^10.3.1",
|
|
45
50
|
"react": "^18.3.0",
|
|
46
51
|
"ws": "^8.20.0",
|
|
47
|
-
"
|
|
52
|
+
"zod": "^4.3.6",
|
|
53
|
+
"@ethosagent/core": "0.2.1",
|
|
48
54
|
"@ethosagent/types": "0.2.0"
|
|
49
55
|
},
|
|
50
56
|
"devDependencies": {
|
|
51
57
|
"@ethosagent/cron": "0.0.0",
|
|
58
|
+
"@ethosagent/storage-fs": "0.0.0",
|
|
52
59
|
"@ethosagent/wiring": "0.0.0",
|
|
53
|
-
"@ethosagent/web-api": "0.0.0"
|
|
54
|
-
"@ethosagent/storage-fs": "0.0.0"
|
|
60
|
+
"@ethosagent/web-api": "0.0.0"
|
|
55
61
|
},
|
|
56
62
|
"optionalDependencies": {
|
|
57
63
|
"@xenova/transformers": "^2.17.2",
|