@ethosagent/cli 0.1.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +56 -0
  3. package/dist/index.js +9440 -0
  4. package/package.json +62 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ethos Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,56 @@
1
+ # Ethos
2
+
3
+ **The TypeScript AI agent framework where personality is architecture.**
4
+
5
+ Each personality is a structural component, not a prompt: a curated toolset, a first-person identity, and a memory scope. Specialists ship by default — researcher, engineer, reviewer, coach, operator. Bring your own.
6
+
7
+ ## Install
8
+
9
+ ### One-liner (recommended)
10
+
11
+ ```bash
12
+ curl -fsSL https://ethosagent.ai/install.sh | bash
13
+ ```
14
+
15
+ Detects platform, installs Node 24 if missing, then runs `npm install -g @ethosagent/cli`. macOS and Linux only.
16
+
17
+ ### npm
18
+
19
+ ```bash
20
+ npm install -g @ethosagent/cli
21
+ ```
22
+
23
+ Requires Node 24+.
24
+
25
+ ### From source
26
+
27
+ ```bash
28
+ git clone https://github.com/ethosagent/ethos.git
29
+ cd ethos
30
+ pnpm install
31
+ pnpm dev # tsx apps/ethos/src/index.ts
32
+ ```
33
+
34
+ ## Quick start
35
+
36
+ ```bash
37
+ ethos setup # one-time wizard: pick provider + key + personality
38
+ ethos chat # start the REPL
39
+ ethos cron list
40
+ ethos personality list
41
+ ```
42
+
43
+ See [ethosagent.ai](https://ethosagent.ai) for full docs, tutorials, and the plugin SDK.
44
+
45
+ ## What's in this package
46
+
47
+ This is the `ethos` CLI binary. The other public packages plugin authors use:
48
+
49
+ - [`@ethosagent/types`](https://www.npmjs.com/package/@ethosagent/types) — interface contracts (zero deps)
50
+ - [`@ethosagent/core`](https://www.npmjs.com/package/@ethosagent/core) — `AgentLoop`, registries, defaults
51
+ - [`@ethosagent/plugin-sdk`](https://www.npmjs.com/package/@ethosagent/plugin-sdk) — tool, hook, memory, and adapter helpers + testing utilities
52
+ - [`@ethosagent/plugin-contract`](https://www.npmjs.com/package/@ethosagent/plugin-contract) — marketplace validation schema
53
+
54
+ ## License
55
+
56
+ MIT — see [LICENSE](./LICENSE).