mesozoic 1.0.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.
Potentially problematic release.
This version of mesozoic might be problematic. Click here for more details.
- package/README.md +38 -0
- package/bin/meso +11 -0
- package/dist/cli/main.js +126854 -0
- package/dist/daemon/supervisor.js +290 -0
- package/dist/dream.js +118602 -0
- package/dist/index.js +123245 -0
- package/dist/list-models.js +118090 -0
- package/dist/scheduler.js +124766 -0
- package/dist/tui.js +122782 -0
- package/guardrails.json +32 -0
- package/package.json +39 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Meso
|
|
2
|
+
|
|
3
|
+
A runtime for AI agents. Each agent is a folder with a personality, memory, and tools.
|
|
4
|
+
|
|
5
|
+
## Get Started
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g meso
|
|
9
|
+
meso init
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## What It Does
|
|
13
|
+
|
|
14
|
+
- **Guardrails** — configurable safety per agent (off / permissive / standard / strict)
|
|
15
|
+
- **Memory** — agents remember, consolidate, and forget over time
|
|
16
|
+
- **Prompt Caching** — reduce cost and latency
|
|
17
|
+
- **Model Rotation** — automatic provider failover with cooldown
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
meso init # Full setup
|
|
23
|
+
meso new <agent> # Create agent
|
|
24
|
+
meso configure <agent> # Personality, guardrails, settings
|
|
25
|
+
meso start [agent] # Start
|
|
26
|
+
meso stop [agent] # Stop
|
|
27
|
+
meso restart [agent] # Restart
|
|
28
|
+
meso status # Running agents
|
|
29
|
+
meso logs <agent> -f # Tail logs
|
|
30
|
+
meso login # Connect model providers
|
|
31
|
+
meso upgrade [agent] # Apply config updates
|
|
32
|
+
meso doctor <agent> # Health check
|
|
33
|
+
meso run <agent> --tui # Chat in terminal
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
MIT
|
package/bin/meso
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -euo pipefail
|
|
3
|
+
SOURCE="${BASH_SOURCE[0]}"
|
|
4
|
+
while [ -L "$SOURCE" ]; do
|
|
5
|
+
DIR="$(cd -P "$(dirname "$SOURCE")" && pwd)"
|
|
6
|
+
SOURCE="$(readlink "$SOURCE")"
|
|
7
|
+
[[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE"
|
|
8
|
+
done
|
|
9
|
+
SCRIPT_DIR="$(cd -P "$(dirname "$SOURCE")" && pwd)"
|
|
10
|
+
ROOT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
11
|
+
exec node "$ROOT_DIR/dist/cli/main.js" "$@"
|