@ethosagent/cli 0.3.5 → 0.3.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethosagent/cli",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
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",
@@ -30,6 +30,7 @@
30
30
  "dist",
31
31
  "data",
32
32
  "web",
33
+ "templates",
33
34
  "scripts/postinstall.mjs",
34
35
  "README.md",
35
36
  "LICENSE"
@@ -65,29 +66,30 @@
65
66
  "ws": "^8.20.0",
66
67
  "yaml": "^2.7.1",
67
68
  "zod": "^4.3.6",
68
- "@ethosagent/types": "0.3.5",
69
- "@ethosagent/core": "0.3.5"
69
+ "@ethosagent/core": "0.3.6",
70
+ "@ethosagent/safety-redact": "0.0.0",
71
+ "@ethosagent/types": "0.3.6"
70
72
  },
71
73
  "devDependencies": {
72
74
  "@ethosagent/agent-bridge": "0.0.0",
73
75
  "@ethosagent/agent-mesh": "0.0.0",
74
76
  "@ethosagent/cron": "0.0.0",
75
77
  "@ethosagent/logger": "0.0.0",
76
- "@ethosagent/mcp-server": "0.0.0",
77
78
  "@ethosagent/gateway": "0.0.0",
78
79
  "@ethosagent/observability-sqlite": "0.1.0",
80
+ "@ethosagent/mcp-server": "0.0.0",
79
81
  "@ethosagent/request-dump": "0.0.0",
80
82
  "@ethosagent/personalities": "0.0.0",
81
83
  "@ethosagent/safety-channel": "0.0.0",
84
+ "@ethosagent/safety-scanner": "0.0.0",
82
85
  "@ethosagent/skills-coding": "0.0.0",
86
+ "@ethosagent/skills": "0.0.0",
83
87
  "@ethosagent/storage-fs": "0.0.0",
84
88
  "@ethosagent/session-sqlite": "0.0.0",
85
89
  "@ethosagent/team-supervisor": "0.0.0",
86
- "@ethosagent/skills": "0.0.0",
87
90
  "@ethosagent/tools-process": "0.0.0",
88
91
  "@ethosagent/web-api": "0.0.0",
89
- "@ethosagent/wiring": "0.0.0",
90
- "@ethosagent/safety-scanner": "0.0.0"
92
+ "@ethosagent/wiring": "0.0.0"
91
93
  },
92
94
  "optionalDependencies": {
93
95
  "@xenova/transformers": "^2.17.2",
@@ -97,7 +99,8 @@
97
99
  "imapflow": "^1.0.170",
98
100
  "mailparser": "^3.7.2",
99
101
  "nodemailer": "^6.10.1",
100
- "playwright": "^1.48.0"
102
+ "playwright": "^1.48.0",
103
+ "@ethosagent/secrets-aws": "0.0.0"
101
104
  },
102
105
  "scripts": {
103
106
  "copy-data": "rm -rf data && cp -R ../../extensions/personalities/data data",
@@ -0,0 +1,19 @@
1
+ [Unit]
2
+ Description=Ethos Gateway (Telegram + Slack + Discord + Email adapters)
3
+ After=network-online.target
4
+ Wants=network-online.target
5
+
6
+ [Service]
7
+ Type=simple
8
+ User={{ETHOS_USER}}
9
+ Environment=HOME={{ETHOS_HOME}}
10
+ Environment=ETHOS_MANAGED=1
11
+ EnvironmentFile=-{{ETHOS_HOME}}/.ethos/.env
12
+ ExecStart={{ETHOS_BINARY}} gateway start
13
+ Restart=on-failure
14
+ RestartSec=5
15
+ StandardOutput=journal
16
+ StandardError=journal
17
+
18
+ [Install]
19
+ WantedBy=multi-user.target
@@ -0,0 +1,19 @@
1
+ [Unit]
2
+ Description=Ethos All Services (gateway + web API)
3
+ After=network-online.target
4
+ Wants=network-online.target
5
+
6
+ [Service]
7
+ Type=simple
8
+ User={{ETHOS_USER}}
9
+ Environment=HOME={{ETHOS_HOME}}
10
+ Environment=ETHOS_MANAGED=1
11
+ EnvironmentFile=-{{ETHOS_HOME}}/.ethos/.env
12
+ ExecStart={{ETHOS_BINARY}} run-all
13
+ Restart=on-failure
14
+ RestartSec=5
15
+ StandardOutput=journal
16
+ StandardError=journal
17
+
18
+ [Install]
19
+ WantedBy=multi-user.target
@@ -0,0 +1,19 @@
1
+ [Unit]
2
+ Description=Ethos Web API + ACP Server
3
+ After=network-online.target
4
+ Wants=network-online.target
5
+
6
+ [Service]
7
+ Type=simple
8
+ User={{ETHOS_USER}}
9
+ Environment=HOME={{ETHOS_HOME}}
10
+ Environment=ETHOS_MANAGED=1
11
+ EnvironmentFile=-{{ETHOS_HOME}}/.ethos/.env
12
+ ExecStart={{ETHOS_BINARY}} serve --web-experimental
13
+ Restart=on-failure
14
+ RestartSec=5
15
+ StandardOutput=journal
16
+ StandardError=journal
17
+
18
+ [Install]
19
+ WantedBy=multi-user.target