calvyn-code 0.14.1 → 0.14.2
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/README.md +83 -83
- package/bin/calvyn.js +1 -2
- package/hermes_cli/main.py +14 -13
- package/package.json +86 -87
package/README.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/banner.png" alt="
|
|
2
|
+
<img src="assets/banner.png" alt="Calvyn Code" width="100%">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
#
|
|
5
|
+
# Calvyn Code ☤
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<a href="https://
|
|
8
|
+
<a href="https://calvyn-code.nousresearch.com/docs/"><img src="https://img.shields.io/badge/Docs-calvyn--code.nousresearch.com-FFD700?style=for-the-badge" alt="Documentation"></a>
|
|
9
9
|
<a href="https://discord.gg/NousResearch"><img src="https://img.shields.io/badge/Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Discord"></a>
|
|
10
|
-
<a href="https://github.com/
|
|
10
|
+
<a href="https://github.com/calvyns/calvyn-code/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License: MIT"></a>
|
|
11
11
|
<a href="https://nousresearch.com"><img src="https://img.shields.io/badge/Built%20by-Nous%20Research-blueviolet?style=for-the-badge" alt="Built by Nous Research"></a>
|
|
12
12
|
<a href="README.zh-CN.md"><img src="https://img.shields.io/badge/Lang-中文-red?style=for-the-badge" alt="中文"></a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
**The self-improving AI agent built by [Nous Research](https://nousresearch.com).** It's the only agent with a built-in learning loop — it creates skills from experience, improves them during use, nudges itself to persist knowledge, searches its own past conversations, and builds a deepening model of who you are across sessions. Run it on a $5 VPS, a GPU cluster, or serverless infrastructure that costs nearly nothing when idle. It's not tied to your laptop — talk to it from Telegram while it works on a cloud VM.
|
|
16
16
|
|
|
17
|
-
Use any model you want — [Nous Portal](https://portal.nousresearch.com), [OpenRouter](https://openrouter.ai) (200+ models), [NovitaAI](https://novita.ai) (AI-native cloud for Model API, Agent Sandbox, and GPU Cloud), [NVIDIA NIM](https://build.nvidia.com) (Nemotron), [Xiaomi MiMo](https://platform.xiaomimimo.com), [z.ai/GLM](https://z.ai), [Kimi/Moonshot](https://platform.moonshot.ai), [MiniMax](https://www.minimax.io), [Hugging Face](https://huggingface.co), OpenAI, or your own endpoint. Switch with `
|
|
17
|
+
Use any model you want — [Nous Portal](https://portal.nousresearch.com), [OpenRouter](https://openrouter.ai) (200+ models), [NovitaAI](https://novita.ai) (AI-native cloud for Model API, Agent Sandbox, and GPU Cloud), [NVIDIA NIM](https://build.nvidia.com) (Nemotron), [Xiaomi MiMo](https://platform.xiaomimimo.com), [z.ai/GLM](https://z.ai), [Kimi/Moonshot](https://platform.moonshot.ai), [MiniMax](https://www.minimax.io), [Hugging Face](https://huggingface.co), OpenAI, or your own endpoint. Switch with `calvyn model` — no code changes, no lock-in.
|
|
18
18
|
|
|
19
19
|
<table>
|
|
20
20
|
<tr><td><b>A real terminal interface</b></td><td>Full TUI with multiline editing, slash-command autocomplete, conversation history, interrupt-and-redirect, and streaming tool output.</td></tr>
|
|
@@ -28,61 +28,61 @@ Use any model you want — [Nous Portal](https://portal.nousresearch.com), [Open
|
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
-
## Quick Install
|
|
32
|
-
|
|
33
|
-
### npm install -g
|
|
34
|
-
|
|
35
|
-
Если хочешь ставить через `npm`, теперь можно так
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
npm install -g calvyn-code
|
|
39
|
-
calvyn
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
Что важно
|
|
43
|
-
|
|
44
|
-
- внутри это все равно Python-проект, не Node.js-перепись
|
|
45
|
-
- нужен `Python 3.11+`
|
|
46
|
-
- на Linux, macOS, Windows и Termux эта npm-обертка сама создаст `.venv` и поставит Calvyn
|
|
47
|
-
- на телефоне лучше запускать через Termux где есть и `node`, и `python`
|
|
48
|
-
- публикация в npm требует, чтобы пакет `calvyn-code` был реально выложен в registry
|
|
49
|
-
|
|
50
|
-
Если после установки что-то сломалось
|
|
51
|
-
|
|
52
|
-
```bash
|
|
53
|
-
npm rebuild -g calvyn-code
|
|
54
|
-
calvyn
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
### Linux, macOS, WSL2, Termux
|
|
31
|
+
## Quick Install
|
|
32
|
+
|
|
33
|
+
### npm install -g
|
|
34
|
+
|
|
35
|
+
Если хочешь ставить через `npm`, теперь можно так
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g calvyn-code
|
|
39
|
+
calvyn
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Что важно
|
|
43
|
+
|
|
44
|
+
- внутри это все равно Python-проект, не Node.js-перепись
|
|
45
|
+
- нужен `Python 3.11+`
|
|
46
|
+
- на Linux, macOS, Windows и Termux эта npm-обертка сама создаст `.venv` и поставит Calvyn
|
|
47
|
+
- на телефоне лучше запускать через Termux где есть и `node`, и `python`
|
|
48
|
+
- публикация в npm требует, чтобы пакет `calvyn-code` был реально выложен в registry
|
|
49
|
+
|
|
50
|
+
Если после установки что-то сломалось
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npm rebuild -g calvyn-code
|
|
54
|
+
calvyn
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Linux, macOS, WSL2, Termux
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
curl -fsSL https://raw.githubusercontent.com/
|
|
60
|
+
curl -fsSL https://raw.githubusercontent.com/calvyns/calvyn-code/main/scripts/install.sh | bash
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
### Windows (native, PowerShell) — Early Beta
|
|
64
64
|
|
|
65
|
-
> **Heads up:** Native Windows support is **early beta**. It installs and runs, but hasn't been road-tested as broadly as our Linux/macOS/WSL2 paths. Please [file issues](https://github.com/
|
|
65
|
+
> **Heads up:** Native Windows support is **early beta**. It installs and runs, but hasn't been road-tested as broadly as our Linux/macOS/WSL2 paths. Please [file issues](https://github.com/calvyns/calvyn-code/issues) when you hit rough edges. For the most battle-tested Windows setup today, run the Linux/macOS one-liner above inside **WSL2**.
|
|
66
66
|
|
|
67
67
|
Run this in PowerShell:
|
|
68
68
|
|
|
69
69
|
```powershell
|
|
70
|
-
irm https://raw.githubusercontent.com/
|
|
70
|
+
irm https://raw.githubusercontent.com/calvyns/calvyn-code/main/scripts/install.ps1 | iex
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
The installer handles everything: uv, Python 3.11, Node.js, ripgrep, ffmpeg, **and a portable Git Bash** (MinGit, unpacked to `%LOCALAPPDATA%\
|
|
73
|
+
The installer handles everything: uv, Python 3.11, Node.js, ripgrep, ffmpeg, **and a portable Git Bash** (MinGit, unpacked to `%LOCALAPPDATA%\calvyn\git` — no admin required, completely isolated from any system Git install). Calvyn uses this bundled Git Bash to run shell commands.
|
|
74
74
|
|
|
75
75
|
If you already have Git installed, the installer detects it and uses that instead. Otherwise a ~45MB MinGit download is all you need — it won't touch or interfere with any system Git.
|
|
76
76
|
|
|
77
|
-
> **Android / Termux:** The tested manual path is documented in the [Termux guide](https://
|
|
77
|
+
> **Android / Termux:** The tested manual path is documented in the [Termux guide](https://calvyn-code.nousresearch.com/docs/getting-started/termux). On Termux, Calvyn installs a curated `.[termux]` extra because the full `.[all]` extra currently pulls Android-incompatible voice dependencies.
|
|
78
78
|
>
|
|
79
|
-
> **Windows:** Native Windows is supported as an **early beta** — the PowerShell one-liner above installs everything, but expect rough edges and please file issues when you hit them. If you'd rather use WSL2 (our most battle-tested Windows path), the Linux command works there too. Native Windows install lives under `%LOCALAPPDATA%\
|
|
79
|
+
> **Windows:** Native Windows is supported as an **early beta** — the PowerShell one-liner above installs everything, but expect rough edges and please file issues when you hit them. If you'd rather use WSL2 (our most battle-tested Windows path), the Linux command works there too. Native Windows install lives under `%LOCALAPPDATA%\calvyn`; WSL2 installs under `~/.calvyn` as on Linux. The only Calvyn feature that currently needs WSL2 specifically is the browser-based dashboard chat pane (it uses a POSIX PTY — classic CLI and gateway both run natively).
|
|
80
80
|
|
|
81
81
|
After installation:
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
source ~/.bashrc # reload shell (or: source ~/.zshrc)
|
|
85
|
-
|
|
85
|
+
calvyn # start chatting!
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
---
|
|
@@ -90,26 +90,26 @@ hermes # start chatting!
|
|
|
90
90
|
## Getting Started
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
93
|
+
calvyn # Interactive CLI — start a conversation
|
|
94
|
+
calvyn model # Choose your LLM provider and model
|
|
95
|
+
calvyn tools # Configure which tools are enabled
|
|
96
|
+
calvyn config set # Set individual config values
|
|
97
|
+
calvyn gateway # Start the messaging gateway (Telegram, Discord, etc.)
|
|
98
|
+
calvyn setup # Run the full setup wizard (configures everything at once)
|
|
99
|
+
calvyn claw migrate # Migrate from OpenClaw (if coming from OpenClaw)
|
|
100
|
+
calvyn update # Update to the latest version
|
|
101
|
+
calvyn doctor # Diagnose any issues
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
📖 **[Full documentation →](https://
|
|
104
|
+
📖 **[Full documentation →](https://calvyn-code.nousresearch.com/docs/)**
|
|
105
105
|
|
|
106
106
|
## CLI vs Messaging Quick Reference
|
|
107
107
|
|
|
108
|
-
|
|
108
|
+
Calvyn has two entry points: start the terminal UI with `calvyn`, or run the gateway and talk to it from Telegram, Discord, Slack, WhatsApp, Signal, or Email. Once you're in a conversation, many slash commands are shared across both interfaces.
|
|
109
109
|
|
|
110
110
|
| Action | CLI | Messaging platforms |
|
|
111
111
|
|---------|-----|---------------------|
|
|
112
|
-
| Start chatting | `
|
|
112
|
+
| Start chatting | `calvyn` | Run `calvyn gateway setup` + `calvyn gateway start`, then send the bot a message |
|
|
113
113
|
| Start fresh conversation | `/new` or `/reset` | `/new` or `/reset` |
|
|
114
114
|
| Change model | `/model [provider:model]` | `/model [provider:model]` |
|
|
115
115
|
| Set a personality | `/personality [name]` | `/personality [name]` |
|
|
@@ -119,47 +119,47 @@ Hermes has two entry points: start the terminal UI with `hermes`, or run the gat
|
|
|
119
119
|
| Interrupt current work | `Ctrl+C` or send a new message | `/stop` or send a new message |
|
|
120
120
|
| Platform-specific status | `/platforms` | `/status`, `/sethome` |
|
|
121
121
|
|
|
122
|
-
For the full command lists, see the [CLI guide](https://
|
|
122
|
+
For the full command lists, see the [CLI guide](https://calvyn-code.nousresearch.com/docs/user-guide/cli) and the [Messaging Gateway guide](https://calvyn-code.nousresearch.com/docs/user-guide/messaging).
|
|
123
123
|
|
|
124
124
|
---
|
|
125
125
|
|
|
126
126
|
## Documentation
|
|
127
127
|
|
|
128
|
-
All documentation lives at **[
|
|
128
|
+
All documentation lives at **[calvyn-code.nousresearch.com/docs](https://calvyn-code.nousresearch.com/docs/)**:
|
|
129
129
|
|
|
130
130
|
| Section | What's Covered |
|
|
131
131
|
|---------|---------------|
|
|
132
|
-
| [Quickstart](https://
|
|
133
|
-
| [CLI Usage](https://
|
|
134
|
-
| [Configuration](https://
|
|
135
|
-
| [Messaging Gateway](https://
|
|
136
|
-
| [Security](https://
|
|
137
|
-
| [Tools & Toolsets](https://
|
|
138
|
-
| [Skills System](https://
|
|
139
|
-
| [Memory](https://
|
|
140
|
-
| [MCP Integration](https://
|
|
141
|
-
| [Cron Scheduling](https://
|
|
142
|
-
| [Context Files](https://
|
|
143
|
-
| [Architecture](https://
|
|
144
|
-
| [Contributing](https://
|
|
145
|
-
| [CLI Reference](https://
|
|
146
|
-
| [Environment Variables](https://
|
|
132
|
+
| [Quickstart](https://calvyn-code.nousresearch.com/docs/getting-started/quickstart) | Install → setup → first conversation in 2 minutes |
|
|
133
|
+
| [CLI Usage](https://calvyn-code.nousresearch.com/docs/user-guide/cli) | Commands, keybindings, personalities, sessions |
|
|
134
|
+
| [Configuration](https://calvyn-code.nousresearch.com/docs/user-guide/configuration) | Config file, providers, models, all options |
|
|
135
|
+
| [Messaging Gateway](https://calvyn-code.nousresearch.com/docs/user-guide/messaging) | Telegram, Discord, Slack, WhatsApp, Signal, Home Assistant |
|
|
136
|
+
| [Security](https://calvyn-code.nousresearch.com/docs/user-guide/security) | Command approval, DM pairing, container isolation |
|
|
137
|
+
| [Tools & Toolsets](https://calvyn-code.nousresearch.com/docs/user-guide/features/tools) | 40+ tools, toolset system, terminal backends |
|
|
138
|
+
| [Skills System](https://calvyn-code.nousresearch.com/docs/user-guide/features/skills) | Procedural memory, Skills Hub, creating skills |
|
|
139
|
+
| [Memory](https://calvyn-code.nousresearch.com/docs/user-guide/features/memory) | Persistent memory, user profiles, best practices |
|
|
140
|
+
| [MCP Integration](https://calvyn-code.nousresearch.com/docs/user-guide/features/mcp) | Connect any MCP server for extended capabilities |
|
|
141
|
+
| [Cron Scheduling](https://calvyn-code.nousresearch.com/docs/user-guide/features/cron) | Scheduled tasks with platform delivery |
|
|
142
|
+
| [Context Files](https://calvyn-code.nousresearch.com/docs/user-guide/features/context-files) | Project context that shapes every conversation |
|
|
143
|
+
| [Architecture](https://calvyn-code.nousresearch.com/docs/developer-guide/architecture) | Project structure, agent loop, key classes |
|
|
144
|
+
| [Contributing](https://calvyn-code.nousresearch.com/docs/developer-guide/contributing) | Development setup, PR process, code style |
|
|
145
|
+
| [CLI Reference](https://calvyn-code.nousresearch.com/docs/reference/cli-commands) | All commands and flags |
|
|
146
|
+
| [Environment Variables](https://calvyn-code.nousresearch.com/docs/reference/environment-variables) | Complete env var reference |
|
|
147
147
|
|
|
148
148
|
---
|
|
149
149
|
|
|
150
150
|
## Migrating from OpenClaw
|
|
151
151
|
|
|
152
|
-
If you're coming from OpenClaw,
|
|
152
|
+
If you're coming from OpenClaw, Calvyn can automatically import your settings, memories, skills, and API keys.
|
|
153
153
|
|
|
154
|
-
**During first-time setup:** The setup wizard (`
|
|
154
|
+
**During first-time setup:** The setup wizard (`calvyn setup`) automatically detects `~/.openclaw` and offers to migrate before configuration begins.
|
|
155
155
|
|
|
156
156
|
**Anytime after install:**
|
|
157
157
|
|
|
158
158
|
```bash
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
159
|
+
calvyn claw migrate # Interactive migration (full preset)
|
|
160
|
+
calvyn claw migrate --dry-run # Preview what would be migrated
|
|
161
|
+
calvyn claw migrate --preset user-data # Migrate without secrets
|
|
162
|
+
calvyn claw migrate --overwrite # Overwrite existing conflicts
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
What gets imported:
|
|
@@ -172,21 +172,21 @@ What gets imported:
|
|
|
172
172
|
- **TTS assets** — workspace audio files
|
|
173
173
|
- **Workspace instructions** — AGENTS.md (with `--workspace-target`)
|
|
174
174
|
|
|
175
|
-
See `
|
|
175
|
+
See `calvyn claw migrate --help` for all options, or use the `openclaw-migration` skill for an interactive agent-guided migration with dry-run previews.
|
|
176
176
|
|
|
177
177
|
---
|
|
178
178
|
|
|
179
179
|
## Contributing
|
|
180
180
|
|
|
181
|
-
We welcome contributions! See the [Contributing Guide](https://
|
|
181
|
+
We welcome contributions! See the [Contributing Guide](https://calvyn-code.nousresearch.com/docs/developer-guide/contributing) for development setup, code style, and PR process.
|
|
182
182
|
|
|
183
|
-
Quick start for contributors — clone and go with `setup-
|
|
183
|
+
Quick start for contributors — clone and go with `setup-calvyn.sh`:
|
|
184
184
|
|
|
185
185
|
```bash
|
|
186
|
-
git clone https://github.com/
|
|
187
|
-
cd
|
|
188
|
-
./setup-
|
|
189
|
-
./
|
|
186
|
+
git clone https://github.com/calvyns/calvyn-code.git
|
|
187
|
+
cd calvyn-code
|
|
188
|
+
./setup-calvyn.sh # installs uv, creates venv, installs .[all], symlinks ~/.local/bin/calvyn
|
|
189
|
+
./calvyn # auto-detects the venv, no need to `source` first
|
|
190
190
|
```
|
|
191
191
|
|
|
192
192
|
Manual path (equivalent to the above):
|
|
@@ -205,8 +205,8 @@ scripts/run_tests.sh
|
|
|
205
205
|
|
|
206
206
|
- 💬 [Discord](https://discord.gg/NousResearch)
|
|
207
207
|
- 📚 [Skills Hub](https://agentskills.io)
|
|
208
|
-
- 🐛 [Issues](https://github.com/
|
|
209
|
-
- 🔌 [HermesClaw](https://github.com/AaronWong1999/hermesclaw) — Community WeChat bridge: Run
|
|
208
|
+
- 🐛 [Issues](https://github.com/calvyns/calvyn-code/issues)
|
|
209
|
+
- 🔌 [HermesClaw](https://github.com/AaronWong1999/hermesclaw) — Community WeChat bridge: Run Calvyn Code and OpenClaw on the same WeChat account.
|
|
210
210
|
|
|
211
211
|
---
|
|
212
212
|
|
package/bin/calvyn.js
CHANGED
|
@@ -67,11 +67,10 @@ function printNpmLaunchHeader() {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
const args = process.argv.slice(2)
|
|
70
|
+
const calvynBinary = runPostinstallIfNeeded()
|
|
70
71
|
if (shouldShowBanner(args)) {
|
|
71
72
|
printNpmLaunchHeader()
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
-
const calvynBinary = runPostinstallIfNeeded()
|
|
75
74
|
const result = spawnSync(calvynBinary, args, {
|
|
76
75
|
stdio: "inherit",
|
|
77
76
|
shell: false,
|
package/hermes_cli/main.py
CHANGED
|
@@ -2011,11 +2011,11 @@ def select_provider_and_model(args=None):
|
|
|
2011
2011
|
_model_flow_bedrock(config, current_model)
|
|
2012
2012
|
elif selected_provider == "azure-foundry":
|
|
2013
2013
|
_model_flow_azure_foundry(config, current_model)
|
|
2014
|
-
elif selected_provider in {
|
|
2015
|
-
"gemini",
|
|
2016
|
-
"deepseek",
|
|
2017
|
-
"xai",
|
|
2018
|
-
"zai",
|
|
2014
|
+
elif selected_provider in {
|
|
2015
|
+
"gemini",
|
|
2016
|
+
"deepseek",
|
|
2017
|
+
"xai",
|
|
2018
|
+
"zai",
|
|
2019
2019
|
"kimi-coding-cn",
|
|
2020
2020
|
"minimax",
|
|
2021
2021
|
"minimax-cn",
|
|
@@ -2024,14 +2024,15 @@ def select_provider_and_model(args=None):
|
|
|
2024
2024
|
"opencode-go",
|
|
2025
2025
|
"alibaba",
|
|
2026
2026
|
"huggingface",
|
|
2027
|
-
"xiaomi",
|
|
2028
|
-
"arcee",
|
|
2029
|
-
"gmi",
|
|
2030
|
-
"
|
|
2031
|
-
"
|
|
2032
|
-
"
|
|
2033
|
-
"
|
|
2034
|
-
|
|
2027
|
+
"xiaomi",
|
|
2028
|
+
"arcee",
|
|
2029
|
+
"gmi",
|
|
2030
|
+
"freemodel",
|
|
2031
|
+
"nvidia",
|
|
2032
|
+
"ollama-cloud",
|
|
2033
|
+
"tencent-tokenhub",
|
|
2034
|
+
"lmstudio",
|
|
2035
|
+
} or _is_profile_api_key_provider(selected_provider):
|
|
2035
2036
|
_model_flow_api_key_provider(config, selected_provider, current_model)
|
|
2036
2037
|
|
|
2037
2038
|
# ── Post-switch cleanup: clear stale OPENAI_BASE_URL ──────────────
|
package/package.json
CHANGED
|
@@ -1,88 +1,87 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "calvyn-code",
|
|
3
|
-
"version": "0.14.
|
|
4
|
-
"description": "Calvyn Code — AI агент с инструментами, мессенджерами и локальным CLI",
|
|
5
|
-
"bin": {
|
|
6
|
-
"calvyn": "./bin/calvyn.js",
|
|
7
|
-
"calvyn-code": "./bin/calvyn.js"
|
|
8
|
-
},
|
|
9
|
-
"main": "./bin/calvyn.js",
|
|
10
|
-
"keywords": [
|
|
11
|
-
"ai",
|
|
12
|
-
"agent",
|
|
13
|
-
"cli",
|
|
14
|
-
"calvyn",
|
|
15
|
-
"python",
|
|
16
|
-
"telegram",
|
|
17
|
-
"discord",
|
|
18
|
-
"slack",
|
|
19
|
-
"whatsapp"
|
|
20
|
-
],
|
|
21
|
-
"author": "Calvyn Code Contributors",
|
|
22
|
-
"homepage": "https://github.com/
|
|
23
|
-
"scripts": {
|
|
24
|
-
"postinstall": "node ./scripts/postinstall.js"
|
|
25
|
-
},
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "git+https://github.com/
|
|
29
|
-
},
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@askjo/camofox-browser": "^1.5.2",
|
|
36
|
-
"agent-browser": "^0.26.0"
|
|
37
|
-
},
|
|
38
|
-
"overrides": {
|
|
39
|
-
"lodash": "4.18.1"
|
|
40
|
-
},
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": ">=20.0.0"
|
|
43
|
-
},
|
|
44
|
-
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
46
|
-
},
|
|
47
|
-
"files": [
|
|
48
|
-
"bin",
|
|
49
|
-
"scripts",
|
|
50
|
-
"hermes_cli",
|
|
51
|
-
"agent",
|
|
52
|
-
"gateway",
|
|
53
|
-
"tui_gateway",
|
|
54
|
-
"cron",
|
|
55
|
-
"acp_adapter",
|
|
56
|
-
"plugins",
|
|
57
|
-
"providers",
|
|
58
|
-
"tools",
|
|
59
|
-
"assets",
|
|
60
|
-
"locales",
|
|
61
|
-
"optional-skills",
|
|
62
|
-
"skills",
|
|
63
|
-
"run_agent.py",
|
|
64
|
-
"model_tools.py",
|
|
65
|
-
"toolsets.py",
|
|
66
|
-
"batch_runner.py",
|
|
67
|
-
"trajectory_compressor.py",
|
|
68
|
-
"toolset_distributions.py",
|
|
69
|
-
"cli.py",
|
|
70
|
-
"calvyn_bootstrap.py",
|
|
71
|
-
"calvyn_constants.py",
|
|
72
|
-
"calvyn_state.py",
|
|
73
|
-
"calvyn_time.py",
|
|
74
|
-
"calvyn_logging.py",
|
|
75
|
-
"hermes_bootstrap.py",
|
|
76
|
-
"hermes_constants.py",
|
|
77
|
-
"hermes_state.py",
|
|
78
|
-
"hermes_time.py",
|
|
79
|
-
"hermes_logging.py",
|
|
80
|
-
"mcp_serve.py",
|
|
81
|
-
"utils.py",
|
|
82
|
-
"pyproject.toml",
|
|
83
|
-
"cli-config.yaml",
|
|
84
|
-
"README.md",
|
|
85
|
-
"LICENSE"
|
|
86
|
-
]
|
|
87
|
-
}
|
|
88
|
-
|
|
2
|
+
"name": "calvyn-code",
|
|
3
|
+
"version": "0.14.2",
|
|
4
|
+
"description": "Calvyn Code — AI агент с инструментами, мессенджерами и локальным CLI",
|
|
5
|
+
"bin": {
|
|
6
|
+
"calvyn": "./bin/calvyn.js",
|
|
7
|
+
"calvyn-code": "./bin/calvyn.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./bin/calvyn.js",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"ai",
|
|
12
|
+
"agent",
|
|
13
|
+
"cli",
|
|
14
|
+
"calvyn",
|
|
15
|
+
"python",
|
|
16
|
+
"telegram",
|
|
17
|
+
"discord",
|
|
18
|
+
"slack",
|
|
19
|
+
"whatsapp"
|
|
20
|
+
],
|
|
21
|
+
"author": "Calvyn Code Contributors",
|
|
22
|
+
"homepage": "https://github.com/calvyns/calvyn-code#readme",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"postinstall": "node ./scripts/postinstall.js"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/calvyns/calvyn-code.git"
|
|
29
|
+
},
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/calvyns/calvyn-code/issues"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@askjo/camofox-browser": "^1.5.2",
|
|
36
|
+
"agent-browser": "^0.26.0"
|
|
37
|
+
},
|
|
38
|
+
"overrides": {
|
|
39
|
+
"lodash": "4.18.1"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20.0.0"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"bin",
|
|
49
|
+
"scripts",
|
|
50
|
+
"hermes_cli",
|
|
51
|
+
"agent",
|
|
52
|
+
"gateway",
|
|
53
|
+
"tui_gateway",
|
|
54
|
+
"cron",
|
|
55
|
+
"acp_adapter",
|
|
56
|
+
"plugins",
|
|
57
|
+
"providers",
|
|
58
|
+
"tools",
|
|
59
|
+
"assets",
|
|
60
|
+
"locales",
|
|
61
|
+
"optional-skills",
|
|
62
|
+
"skills",
|
|
63
|
+
"run_agent.py",
|
|
64
|
+
"model_tools.py",
|
|
65
|
+
"toolsets.py",
|
|
66
|
+
"batch_runner.py",
|
|
67
|
+
"trajectory_compressor.py",
|
|
68
|
+
"toolset_distributions.py",
|
|
69
|
+
"cli.py",
|
|
70
|
+
"calvyn_bootstrap.py",
|
|
71
|
+
"calvyn_constants.py",
|
|
72
|
+
"calvyn_state.py",
|
|
73
|
+
"calvyn_time.py",
|
|
74
|
+
"calvyn_logging.py",
|
|
75
|
+
"hermes_bootstrap.py",
|
|
76
|
+
"hermes_constants.py",
|
|
77
|
+
"hermes_state.py",
|
|
78
|
+
"hermes_time.py",
|
|
79
|
+
"hermes_logging.py",
|
|
80
|
+
"mcp_serve.py",
|
|
81
|
+
"utils.py",
|
|
82
|
+
"pyproject.toml",
|
|
83
|
+
"cli-config.yaml",
|
|
84
|
+
"README.md",
|
|
85
|
+
"LICENSE"
|
|
86
|
+
]
|
|
87
|
+
}
|