@ethosagent/cli 0.3.3 → 0.3.4
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 +4 -4
- package/package.json +11 -9
package/dist/index.js
CHANGED
|
@@ -38209,7 +38209,7 @@ var c10 = {
|
|
|
38209
38209
|
red: "\x1B[31m",
|
|
38210
38210
|
cyan: "\x1B[36m"
|
|
38211
38211
|
};
|
|
38212
|
-
var ETHOS_VERSION = true ? "0.3.
|
|
38212
|
+
var ETHOS_VERSION = true ? "0.3.4" : process.env.ETHOS_VERSION ?? "dev";
|
|
38213
38213
|
var CORE_SDKS = [
|
|
38214
38214
|
{ label: "Anthropic provider", module: "@anthropic-ai/sdk", required: true },
|
|
38215
38215
|
{ label: "OpenAI-compat provider", module: "openai", required: true }
|
|
@@ -45439,7 +45439,7 @@ var c28 = {
|
|
|
45439
45439
|
var G = `${c28.green}\u2713${c28.reset}`;
|
|
45440
45440
|
var W = `${c28.yellow}!${c28.reset}`;
|
|
45441
45441
|
var R = `${c28.red}\u2717${c28.reset}`;
|
|
45442
|
-
var ETHOS_VERSION2 = true ? "0.3.
|
|
45442
|
+
var ETHOS_VERSION2 = true ? "0.3.4" : process.env.ETHOS_VERSION ?? "dev";
|
|
45443
45443
|
async function runStatus(_args = []) {
|
|
45444
45444
|
let hardErrors = 0;
|
|
45445
45445
|
console.log(`${c28.bold}ethos${c28.reset} ${c28.dim}${ETHOS_VERSION2}${c28.reset}
|
|
@@ -46277,7 +46277,7 @@ var c30 = {
|
|
|
46277
46277
|
cyan: "\x1B[36m"
|
|
46278
46278
|
};
|
|
46279
46279
|
var PACKAGE = "@ethosagent/cli";
|
|
46280
|
-
var CURRENT_VERSION = true ? "0.3.
|
|
46280
|
+
var CURRENT_VERSION = true ? "0.3.4" : process.env.ETHOS_VERSION ?? "dev";
|
|
46281
46281
|
async function runUpgrade() {
|
|
46282
46282
|
const installMethod = detectInstallMethod();
|
|
46283
46283
|
if (installMethod === "source") {
|
|
@@ -46382,7 +46382,7 @@ function errMsg2(err) {
|
|
|
46382
46382
|
init_config();
|
|
46383
46383
|
init_error_log();
|
|
46384
46384
|
init_wiring();
|
|
46385
|
-
var ETHOS_VERSION3 = true ? "0.3.
|
|
46385
|
+
var ETHOS_VERSION3 = true ? "0.3.4" : process.env.ETHOS_VERSION ?? "dev";
|
|
46386
46386
|
var USAGE5 = "Usage: ethos [setup | chat | sessions | serve | dashboard | status | run-all | set | team | mesh | process | logs | gateway | cron | personality | memory | acp | batch | eval | evolve | plugin | skills | keys | secrets | fallback | slack | api-key | claw | doctor | upgrade | mcp | backup | import | trace | audit | security | errors | perf | tail | retention | data | support | archive] [--version | --help]";
|
|
46387
46387
|
var args = process.argv.slice(2);
|
|
46388
46388
|
var command = args[0] ?? "";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethosagent/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
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",
|
|
@@ -46,35 +46,37 @@
|
|
|
46
46
|
"@types/better-sqlite3": "^7.6.12",
|
|
47
47
|
"better-sqlite3": "^12.9.0",
|
|
48
48
|
"croner": "^9.0.0",
|
|
49
|
+
"gray-matter": "^4.0.3",
|
|
49
50
|
"hono": "^4.12.15",
|
|
50
51
|
"ink": "^7.0.0",
|
|
51
52
|
"openai": "^6.37.0",
|
|
52
53
|
"pino": "^10.3.1",
|
|
53
54
|
"react": "19.2.6",
|
|
54
55
|
"ws": "^8.20.0",
|
|
56
|
+
"yaml": "^2.7.1",
|
|
55
57
|
"zod": "^4.3.6",
|
|
56
|
-
"@ethosagent/core": "0.3.
|
|
57
|
-
"@ethosagent/types": "0.3.
|
|
58
|
+
"@ethosagent/core": "0.3.4",
|
|
59
|
+
"@ethosagent/types": "0.3.4"
|
|
58
60
|
},
|
|
59
61
|
"devDependencies": {
|
|
60
|
-
"@ethosagent/agent-bridge": "0.0.0",
|
|
61
62
|
"@ethosagent/agent-mesh": "0.0.0",
|
|
62
|
-
"@ethosagent/
|
|
63
|
+
"@ethosagent/agent-bridge": "0.0.0",
|
|
63
64
|
"@ethosagent/gateway": "0.0.0",
|
|
64
|
-
"@ethosagent/
|
|
65
|
-
"@ethosagent/mcp-server": "0.0.0",
|
|
65
|
+
"@ethosagent/cron": "0.0.0",
|
|
66
66
|
"@ethosagent/observability-sqlite": "0.1.0",
|
|
67
|
+
"@ethosagent/mcp-server": "0.0.0",
|
|
68
|
+
"@ethosagent/logger": "0.0.0",
|
|
67
69
|
"@ethosagent/request-dump": "0.0.0",
|
|
68
70
|
"@ethosagent/personalities": "0.0.0",
|
|
69
71
|
"@ethosagent/safety-channel": "0.0.0",
|
|
70
72
|
"@ethosagent/safety-scanner": "0.0.0",
|
|
73
|
+
"@ethosagent/skills": "0.0.0",
|
|
71
74
|
"@ethosagent/skills-coding": "0.0.0",
|
|
72
75
|
"@ethosagent/storage-fs": "0.0.0",
|
|
73
|
-
"@ethosagent/
|
|
76
|
+
"@ethosagent/session-sqlite": "0.0.0",
|
|
74
77
|
"@ethosagent/team-supervisor": "0.0.0",
|
|
75
78
|
"@ethosagent/tools-process": "0.0.0",
|
|
76
79
|
"@ethosagent/web-api": "0.0.0",
|
|
77
|
-
"@ethosagent/session-sqlite": "0.0.0",
|
|
78
80
|
"@ethosagent/wiring": "0.0.0"
|
|
79
81
|
},
|
|
80
82
|
"optionalDependencies": {
|