Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8a4169ac83 | ||
|
|
4fd70438b8 | ||
|
|
1680834ab2 | ||
|
|
b0c707b74a |
@@ -9,9 +9,9 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.openclaw.manager</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>0.5.0</string>
|
||||
<string>0.7.1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.5.0</string>
|
||||
<string>0.7.1</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
|
||||
@@ -25,6 +25,23 @@ Open [http://localhost:3333](http://localhost:3333) in your browser. For remote
|
||||
|
||||
## Features
|
||||
|
||||
**Screenshots** — Redacted UI walkthrough (no personal paths, no Telegram IDs):
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
|
||||
**Agent Management** — Add main agents and sub-agents through a guided setup flow. View all agents in a tree structure with model selection, workspace browsing, and inline configuration.
|
||||
|
||||
**Usage Statistics** — Real token usage data parsed directly from OpenClaw session files. Breakdown by model, agent, and day with a visual chart.
|
||||
@@ -37,6 +54,22 @@ Open [http://localhost:3333](http://localhost:3333) in your browser. For remote
|
||||
|
||||
**Bilingual UI** — English and Chinese interface with one-click language switching.
|
||||
|
||||
## Telegram Workflow & Safety
|
||||
|
||||
OCM is designed primarily for **Telegram-based OpenClaw workflows**:
|
||||
|
||||
- Bind Telegram groups to one or more main agents, then create sub-agents under each tree
|
||||
- Keep each agent's context isolated via independent `workspace`, `SOUL.md`, and `MEMORY.md`
|
||||
- OCM mainly helps you **safely update `openclaw.json`** via UI instead of manual editing
|
||||
- Recommended for users who already have basic OpenClaw CLI experience (`onboard`, auth, gateway logs)
|
||||
|
||||
Critical Telegram settings:
|
||||
|
||||
- In BotFather, keep **Allow Groups = ON**
|
||||
- In BotFather, set **Group Privacy = OFF**
|
||||
- For each agent group, keep it private: **only you + that agent/sub-agents**
|
||||
- Do **not** invite other people to these groups (cost and security risk)
|
||||
|
||||
## Requirements
|
||||
|
||||
- Node.js 18+ ([download](https://nodejs.org/))
|
||||
@@ -131,6 +164,22 @@ start.bat # Windows
|
||||
- **运维面板** — 重启网关、查看日志、健康检查、本地/NAS 备份、Cron 任务管理
|
||||
- **双语界面** — 中英文一键切换
|
||||
|
||||
### Telegram 场景与安全提示
|
||||
|
||||
OCM 主要面向 **Telegram 场景**:
|
||||
|
||||
- 通过群组绑定主 Agent,并在每条树下管理多个 Sub-Agent
|
||||
- 让每个 Agent 拥有独立 `workspace`、`SOUL.md`、`MEMORY.md`
|
||||
- 通过可视化方式更新 `openclaw.json`,减少手动改配置风险
|
||||
- 建议使用者已具备基础 OpenClaw CLI 操作经验(如 `onboard`、认证、查看网关日志)
|
||||
|
||||
关键安全设置(务必确认):
|
||||
|
||||
- BotFather 里 **Allow Groups = ON**
|
||||
- BotFather 里 **Group Privacy = OFF**
|
||||
- 每个 Agent 群组只保留“你自己 + 对应 Agent/Sub-Agent”
|
||||
- 不要邀请其他人进组(会带来安全和 API 费用风险)
|
||||
|
||||
### 配置
|
||||
|
||||
启动脚本自动检测 `~/.openclaw` 目录。如需指定其他路径:
|
||||
|
||||
|
After Width: | Height: | Size: 182 KiB |
|
After Width: | Height: | Size: 164 KiB |
|
After Width: | Height: | Size: 177 KiB |
|
After Width: | Height: | Size: 177 KiB |
|
After Width: | Height: | Size: 228 KiB |
|
After Width: | Height: | Size: 131 KiB |
|
After Width: | Height: | Size: 207 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openclaw-manager",
|
||||
"version": "0.5.0",
|
||||
"version": "0.7.1",
|
||||
"description": "A local web UI for managing OpenClaw AI agents — no npm install required",
|
||||
"main": "openclaw-manager.js",
|
||||
"scripts": {
|
||||
|
||||