opc-agent 1.2.1 โ 1.3.1
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/.github/workflows/ci.yml +24 -0
- package/CONTRIBUTING.md +75 -75
- package/README.md +235 -358
- package/README.zh-CN.md +415 -415
- package/dist/channels/web.js +256 -256
- package/dist/cli.js +118 -34
- package/dist/core/knowledge.d.ts +5 -0
- package/dist/core/knowledge.js +39 -2
- package/dist/deploy/hermes.js +22 -22
- package/dist/deploy/openclaw.js +31 -40
- package/dist/index.d.ts +3 -6
- package/dist/index.js +7 -11
- package/dist/providers/index.d.ts +1 -1
- package/dist/providers/index.js +158 -14
- package/dist/schema/oad.d.ts +4 -5
- package/dist/templates/code-reviewer.d.ts +0 -8
- package/dist/templates/code-reviewer.js +5 -9
- package/dist/templates/customer-service.d.ts +0 -8
- package/dist/templates/customer-service.js +2 -6
- package/dist/templates/data-analyst.d.ts +0 -8
- package/dist/templates/data-analyst.js +5 -9
- package/dist/templates/knowledge-base.d.ts +0 -8
- package/dist/templates/knowledge-base.js +2 -6
- package/dist/templates/sales-assistant.d.ts +0 -8
- package/dist/templates/sales-assistant.js +4 -8
- package/dist/templates/teacher.d.ts +0 -8
- package/dist/templates/teacher.js +6 -10
- package/dist/traces/index.d.ts +49 -0
- package/dist/traces/index.js +102 -0
- package/docs/.vitepress/config.ts +103 -103
- package/docs/api/cli.md +48 -48
- package/docs/api/oad-schema.md +64 -64
- package/docs/api/sdk.md +80 -80
- package/docs/guide/concepts.md +51 -51
- package/docs/guide/configuration.md +79 -79
- package/docs/guide/deployment.md +42 -42
- package/docs/guide/getting-started.md +44 -44
- package/docs/guide/templates.md +28 -28
- package/docs/guide/testing.md +84 -84
- package/docs/index.md +27 -27
- package/docs/zh/api/cli.md +54 -54
- package/docs/zh/api/oad-schema.md +87 -87
- package/docs/zh/api/sdk.md +102 -102
- package/docs/zh/guide/concepts.md +104 -104
- package/docs/zh/guide/configuration.md +135 -135
- package/docs/zh/guide/deployment.md +81 -81
- package/docs/zh/guide/getting-started.md +82 -82
- package/docs/zh/guide/templates.md +84 -84
- package/docs/zh/guide/testing.md +88 -88
- package/docs/zh/index.md +27 -27
- package/examples/customer-service-demo/README.md +90 -90
- package/examples/customer-service-demo/oad.yaml +107 -107
- package/package.json +1 -1
- package/src/analytics/index.ts +66 -66
- package/src/channels/discord.ts +192 -192
- package/src/channels/email.ts +177 -177
- package/src/channels/feishu.ts +236 -236
- package/src/channels/index.ts +15 -15
- package/src/channels/slack.ts +160 -160
- package/src/channels/telegram.ts +90 -90
- package/src/channels/voice.ts +106 -106
- package/src/channels/webhook.ts +199 -199
- package/src/channels/websocket.ts +87 -87
- package/src/channels/wechat.ts +149 -149
- package/src/cli.ts +124 -32
- package/src/core/a2a.ts +143 -143
- package/src/core/agent.ts +152 -152
- package/src/core/analytics-engine.ts +186 -186
- package/src/core/auth.ts +57 -57
- package/src/core/cache.ts +141 -141
- package/src/core/compose.ts +77 -77
- package/src/core/config.ts +14 -14
- package/src/core/errors.ts +148 -148
- package/src/core/hitl.ts +138 -138
- package/src/core/logger.ts +57 -57
- package/src/core/orchestrator.ts +215 -215
- package/src/core/performance.ts +187 -187
- package/src/core/rate-limiter.ts +128 -128
- package/src/core/room.ts +109 -109
- package/src/core/runtime.ts +152 -152
- package/src/core/sandbox.ts +101 -101
- package/src/core/security.ts +171 -171
- package/src/core/types.ts +68 -68
- package/src/core/versioning.ts +106 -106
- package/src/core/watch.ts +178 -178
- package/src/core/workflow.ts +235 -235
- package/src/deploy/hermes.ts +156 -156
- package/src/deploy/openclaw.ts +190 -200
- package/src/i18n/index.ts +216 -216
- package/src/index.ts +5 -6
- package/src/memory/deepbrain.ts +108 -108
- package/src/memory/index.ts +34 -34
- package/src/plugins/index.ts +208 -208
- package/src/schema/oad.ts +154 -155
- package/src/skills/base.ts +16 -16
- package/src/skills/document.ts +100 -100
- package/src/skills/http.ts +35 -35
- package/src/skills/index.ts +27 -27
- package/src/skills/scheduler.ts +80 -80
- package/src/skills/webhook-trigger.ts +59 -59
- package/src/templates/code-reviewer.ts +30 -34
- package/src/templates/customer-service.ts +76 -80
- package/src/templates/data-analyst.ts +66 -70
- package/src/templates/executive-assistant.ts +71 -71
- package/src/templates/financial-advisor.ts +60 -60
- package/src/templates/knowledge-base.ts +27 -31
- package/src/templates/legal-assistant.ts +71 -71
- package/src/templates/sales-assistant.ts +75 -79
- package/src/templates/teacher.ts +75 -79
- package/src/testing/index.ts +181 -181
- package/src/tools/calculator.ts +73 -73
- package/src/tools/datetime.ts +149 -149
- package/src/tools/json-transform.ts +187 -187
- package/src/tools/mcp.ts +76 -76
- package/src/tools/text-analysis.ts +116 -116
- package/src/traces/index.ts +132 -0
- package/templates/Dockerfile +15 -15
- package/templates/code-reviewer/README.md +27 -27
- package/templates/code-reviewer/oad.yaml +41 -41
- package/templates/customer-service/README.md +22 -22
- package/templates/customer-service/oad.yaml +36 -36
- package/templates/docker-compose.yml +21 -21
- package/templates/ecommerce-assistant/README.md +45 -45
- package/templates/ecommerce-assistant/oad.yaml +47 -47
- package/templates/knowledge-base/README.md +28 -28
- package/templates/knowledge-base/oad.yaml +38 -38
- package/templates/sales-assistant/README.md +26 -26
- package/templates/sales-assistant/oad.yaml +43 -43
- package/templates/tech-support/README.md +43 -43
- package/templates/tech-support/oad.yaml +45 -45
- package/tests/a2a.test.ts +66 -66
- package/tests/agent.test.ts +72 -72
- package/tests/analytics.test.ts +50 -50
- package/tests/channel.test.ts +39 -39
- package/tests/e2e.test.ts +134 -134
- package/tests/errors.test.ts +83 -83
- package/tests/hitl.test.ts +71 -71
- package/tests/i18n.test.ts +41 -41
- package/tests/mcp.test.ts +54 -54
- package/tests/oad.test.ts +68 -68
- package/tests/performance.test.ts +115 -115
- package/tests/plugin.test.ts +74 -74
- package/tests/room.test.ts +106 -106
- package/tests/runtime.test.ts +42 -42
- package/tests/sandbox.test.ts +46 -46
- package/tests/security.test.ts +60 -60
- package/tests/templates.test.ts +77 -77
- package/tests/v070.test.ts +76 -76
- package/tests/versioning.test.ts +75 -75
- package/tests/voice.test.ts +61 -61
- package/tests/webhook.test.ts +29 -29
- package/tests/workflow.test.ts +143 -143
- package/tsconfig.json +19 -19
- package/vitest.config.ts +9 -9
- package/src/dtv/data.ts +0 -29
- package/src/dtv/trust.ts +0 -43
- package/src/dtv/value.ts +0 -47
- package/src/marketplace/index.ts +0 -223
package/README.md
CHANGED
|
@@ -1,429 +1,306 @@
|
|
|
1
|
-
<
|
|
2
|
-
<h1 align="center">๐ค OPC Agent</h1>
|
|
3
|
-
<p align="center"><strong>ๅผๆพๆบ่ฝไฝๆกๆถ โ ๆๅปบใๆต่ฏใ่ฟ่กไผไธ็บง AI ๆบ่ฝไฝ</strong></p>
|
|
4
|
-
<p align="center">
|
|
5
|
-
<a href="https://www.npmjs.com/package/opc-agent"><img src="https://img.shields.io/npm/v/opc-agent?color=blue" alt="npm"></a>
|
|
6
|
-
<a href="https://github.com/Deepleaper/opc-agent/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-green" alt="license"></a>
|
|
7
|
-
<img src="https://img.shields.io/badge/tests-146%20passed-brightgreen" alt="146 tests passing">
|
|
8
|
-
<a href="https://www.npmjs.com/package/opc-agent"><img src="https://img.shields.io/npm/dm/opc-agent?color=orange" alt="downloads"></a>
|
|
9
|
-
</p>
|
|
10
|
-
<p align="center">
|
|
11
|
-
<strong>๐จ๐ณ ไธญๆ</strong> ยท <a href="#english">๐บ๐ธ English</a>
|
|
12
|
-
</p>
|
|
13
|
-
</p>
|
|
1
|
+
<div align="center">
|
|
14
2
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
OPC Agent ๆฏไธไธช **TypeScript ไผๅ
็ๅผๆพๆบ่ฝไฝๆกๆถ**๏ผ็ฑ [่ท็็งๆ (Deepleaper)](https://www.deepleaper.com) ๅผๅใ็จไธไธช YAML ๆไปถ๏ผOAD๏ผๅฎไนๆบ่ฝไฝ๏ผๆฅๅ
ฅไปปๆๅคง่ฏญ่จๆจกๅ๏ผไธ้ฎ้จ็ฝฒๅฐๅคไธชๆธ ้ใ
|
|
18
|
-
|
|
19
|
-
## โก ๅฟซ้ๅผๅง๏ผ30 ็ง๏ผ
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm install -g opc-agent
|
|
23
|
-
opc init my-agent
|
|
24
|
-
cd my-agent
|
|
25
|
-
opc run
|
|
26
|
-
```
|
|
3
|
+
# ๐ค OPC Agent
|
|
27
4
|
|
|
28
|
-
|
|
5
|
+
**Agent OS โ AI Agent ๅ
จ็ๅฝๅจๆๆไฝ็ณป็ป**
|
|
29
6
|
|
|
30
|
-
|
|
7
|
+
[](https://www.npmjs.com/package/opc-agent)
|
|
8
|
+
[](LICENSE)
|
|
9
|
+
[]()
|
|
10
|
+
[](https://www.typescriptlang.org/)
|
|
31
11
|
|
|
32
|
-
|
|
12
|
+
[ๅฟซ้ๅผๅง](#ๅฟซ้ๅผๅง) ยท [CLI ๅฝไปค](#cli-ๅฝไปค) ยท [ๆธ ้](#11-ไธชๆธ ้) ยท [English](#english)
|
|
33
13
|
|
|
34
|
-
|
|
35
|
-
spec:
|
|
36
|
-
provider:
|
|
37
|
-
default: deepseek
|
|
38
|
-
allowed: [openai, deepseek, qwen, anthropic, ollama]
|
|
39
|
-
model: deepseek-chat
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
ๆฏๆ **DeepSeek**ใ**้ไนๅ้ฎ (Qwen)**ใ**OpenAI**ใ**Anthropic**ใ**Ollama**๏ผๆฌๅฐ๏ผ๏ผไปฅๅไปปไฝๅ
ผๅฎน OpenAI ๆฅๅฃ็ๆๅกใ
|
|
14
|
+
</div>
|
|
43
15
|
|
|
44
|
-
|
|
16
|
+
---
|
|
45
17
|
|
|
46
|
-
|
|
47
|
-
spec:
|
|
48
|
-
channels:
|
|
49
|
-
- type: web # Web ๅฏน่ฏ็้ข๏ผๅ
็ฝฎ UI๏ผ
|
|
50
|
-
port: 3000
|
|
51
|
-
- type: telegram # Telegram ๆบๅจไบบ
|
|
52
|
-
- type: websocket # ๅฎๆถ WebSocket
|
|
53
|
-
- type: slack # Slack Bot๏ผSocket Mode / Events API๏ผ
|
|
54
|
-
- type: email # IMAP ๆถไฟก + SMTP ๅไฟก
|
|
55
|
-
- type: wechat # ๅพฎไฟกๅ
ฌไผๅท
|
|
56
|
-
- type: feishu # ้ฃไนฆ / Lark ๆถๆฏๅก็
|
|
57
|
-
- type: voice # ่ฏญ้ณ๏ผSTT/TTS๏ผๅฏ้
็ฝฎไพๅบๅ๏ผ
|
|
58
|
-
- type: webhook # Webhook ๆฅๆถ + HTTP ๅ่ฐ
|
|
59
|
-
- type: discord # Discord Bot๏ผๆๆ ๅฝไปค + ็บฟ็จ + Embed๏ผ
|
|
60
|
-
```
|
|
18
|
+
## ๐ก ไธๅฅ่ฏไป็ป
|
|
61
19
|
|
|
62
|
-
|
|
20
|
+
> **ไธๅชๆฏ Harness๏ผๆฏๆฏ Harness ้ซไธ็ปด็ Agent OSใ**
|
|
21
|
+
> ไปๅๅปบๅฐ่ฟ่กๅฐ็ๆง๏ผไธไธชๅทฅๅ
ทๆๅฎ Agent ๅ
จ็ๅฝๅจๆใ
|
|
63
22
|
|
|
64
|
-
|
|
65
|
-
import { KnowledgeBase } from 'opc-agent';
|
|
23
|
+
## ๐ฏ ๅ Harness ๆกๆถ็ๅบๅซ
|
|
66
24
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
25
|
+
| | LangChain | CrewAI | AutoGen | **OPC Agent** |
|
|
26
|
+
|---|---|---|---|---|
|
|
27
|
+
| ๅๅปบ | ๅไปฃ็ | ๅไปฃ็ | ๅไปฃ็ | **`opc init` ไธ้ฎ** |
|
|
28
|
+
| ้
็ฝฎ | Python/ไปฃ็ | Python | Python | **YAML ๅฃฐๆๅผ** |
|
|
29
|
+
| ๆต่ฏ | ่ชๅทฑๆญ | ๆ | ๆ | **ๅ
็ฝฎๆต่ฏๆกๆถ** |
|
|
30
|
+
| ๆธ ้ | ่ชๅทฑๆฅ | ๆ | ๆ | **11 ๆธ ้ๅผ็ฎฑๅณ็จ** |
|
|
31
|
+
| ็ๆง | ่ชๅทฑๆญ | ๆ | ๆ | **Traces + Score** |
|
|
32
|
+
| ่ฎฐๅฟ | ่ชๅทฑ็ฎก | ็ฎๅ | ็ฎๅ | **DeepBrain ้ๆ** |
|
|
71
33
|
|
|
72
|
-
|
|
34
|
+
**ๆกๆถ็ฎก"ๆไน่ท"๏ผAgent OS ็ฎก"ๅ
จ่ฟ็จ"ใ**
|
|
73
35
|
|
|
74
|
-
|
|
36
|
+
## ๅฟซ้ๅผๅง
|
|
75
37
|
|
|
76
|
-
```
|
|
77
|
-
|
|
38
|
+
```bash
|
|
39
|
+
npm install -g opc-agent
|
|
78
40
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
});
|
|
83
|
-
```
|
|
41
|
+
# ๅๅปบ
|
|
42
|
+
opc init my-agent
|
|
43
|
+
cd my-agent
|
|
84
44
|
|
|
85
|
-
|
|
45
|
+
# ๅผๅ
|
|
46
|
+
opc dev
|
|
86
47
|
|
|
87
|
-
|
|
48
|
+
# ๆต่ฏ
|
|
49
|
+
opc test
|
|
88
50
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
testing:
|
|
92
|
-
cases:
|
|
93
|
-
- name: ้ฎๅๆต่ฏ
|
|
94
|
-
input: "ไฝ ๅฅฝ"
|
|
95
|
-
expect:
|
|
96
|
-
contains: ["ไฝ ๅฅฝ", "ๅธฎ"]
|
|
97
|
-
maxLatencyMs: 5000
|
|
51
|
+
# ่ฟ่ก
|
|
52
|
+
opc run
|
|
98
53
|
```
|
|
99
54
|
|
|
100
|
-
|
|
101
|
-
opc test # ่ฟ่กๆต่ฏ็จไพ
|
|
102
|
-
opc test --watch # ็ๅฌๆจกๅผ
|
|
103
|
-
opc test --json # JSON ๆ ผๅผ่พๅบ
|
|
104
|
-
```
|
|
55
|
+
## OAD ๅฃฐๆๅผ้
็ฝฎ
|
|
105
56
|
|
|
106
|
-
|
|
57
|
+
ไธ็จๅไปฃ็ ๏ผ็จ YAML ๅฎไน Agent๏ผ
|
|
107
58
|
|
|
108
59
|
```yaml
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
60
|
+
id: customer-service
|
|
61
|
+
name: ๅฎขๆไธๅ
|
|
62
|
+
version: "1.0.0"
|
|
63
|
+
|
|
64
|
+
model: deepseek-chat
|
|
65
|
+
systemPrompt: |
|
|
66
|
+
ไฝ ๆฏไธไธชไธไธ็ๅฎขๆ...
|
|
67
|
+
|
|
68
|
+
skills:
|
|
69
|
+
- ticket-management
|
|
70
|
+
- knowledge-base-search
|
|
71
|
+
|
|
72
|
+
channels:
|
|
73
|
+
- type: web
|
|
74
|
+
priority: primary
|
|
75
|
+
- type: telegram
|
|
76
|
+
priority: secondary
|
|
77
|
+
- type: wechat
|
|
78
|
+
priority: secondary
|
|
79
|
+
|
|
80
|
+
memory:
|
|
81
|
+
shortTerm: true
|
|
82
|
+
longTerm:
|
|
83
|
+
provider: deepbrain
|
|
115
84
|
```
|
|
116
85
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
### ๐ ๅฎๅ
จ็นๆง
|
|
120
|
-
|
|
121
|
-
- ่พๅ
ฅๆถๆฏ๏ผ้ฒ XSSใๆณจๅ
ฅๆปๅป๏ผ
|
|
122
|
-
- API Key ่ฝฎๆข็ฎก็
|
|
123
|
-
- CORS ้
็ฝฎ
|
|
124
|
-
- ๅฎๅ
จๅๅบๅคด
|
|
125
|
-
- ไผ่ฏ้็ฆป่ฎค่ฏไธญ้ดไปถ
|
|
126
|
-
|
|
127
|
-
### ๐ ็ๆงไธๅๆ
|
|
128
|
-
|
|
129
|
-
Web ๆธ ้ๅ
็ฝฎไปฅไธ็ซฏ็น๏ผ
|
|
130
|
-
|
|
131
|
-
| ็ซฏ็น | ่ฏดๆ |
|
|
132
|
-
|------|------|
|
|
133
|
-
| `GET /api/health` | ๅฅๅบทๆฃๆฅ |
|
|
134
|
-
| `GET /api/metrics` | Prometheus ๆๆฌๆ ผๅผๆๆ ๏ผuptimeใ่ฏทๆฑๆฐใ้่ฏฏๆฐใLLM ๅปถ่ฟใToken ็จ้็ญ๏ผ |
|
|
135
|
-
| `GET /api/dashboard` | ๅฎๆถไปช่กจ็ |
|
|
136
|
-
|
|
137
|
-
`opc analytics` ๅ `opc stats` ๅฝไปคๅฏๆฅ็็ฆป็บฟๅๆๅฟซ็
งใ
|
|
138
|
-
|
|
139
|
-
## ๐๏ธ ๆถๆ
|
|
140
|
-
|
|
141
|
-
```
|
|
142
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
143
|
-
โ OAD (YAML ๅฎไนๆไปถ) โ
|
|
144
|
-
โ ๆบ่ฝไฝ็ไธๅ้
็ฝฎ้ฝๅจ่ฟ้ โ
|
|
145
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
146
|
-
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โ
|
|
147
|
-
โ โ ๆธ ้ๅฑ โ โ ๆไปถๅฑ โ โ ๅฎๅ
จๅฑ โ โ
|
|
148
|
-
โ โ10 ไธชๆธ ้ โ โ ๆฅๅฟ/ๅๆโ โ ๆถๆฏ/CORS/่ฎค่ฏโ โ
|
|
149
|
-
โ โโโโโโฌโโโโโโ โโโโโโฌโโโโโโ โโโโโโโโฌโโโโโโโโ โ
|
|
150
|
-
โ โโโโโโผโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโผโโโโโโโโโ โ
|
|
151
|
-
โ โ ๆบ่ฝไฝ่ฟ่กๆถ (Agent Runtime) โ โ
|
|
152
|
-
โ โ โโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโโโโโ โ โ
|
|
153
|
-
โ โ โ ่ฎฐๅฟ โ โ ๆ่ฝ โ โ ็ฅ่ฏๅบ โ โ โ
|
|
154
|
-
โ โ โโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโโโโโ โ โ
|
|
155
|
-
โ โโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
156
|
-
โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโ โ
|
|
157
|
-
โ โ ๅคง่ฏญ่จๆจกๅไพๅบๅ โ โ
|
|
158
|
-
โ โ DeepSeek ยท ้ไนๅ้ฎ ยท OpenAI ยท Ollama โ โ
|
|
159
|
-
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
160
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
161
|
-
```
|
|
162
|
-
|
|
163
|
-
## ๐ 12 ไธชๅผ็ฎฑๅณ็จๆจกๆฟ
|
|
86
|
+
## CLI ๅฝไปค
|
|
164
87
|
|
|
165
88
|
```bash
|
|
166
|
-
opc init
|
|
89
|
+
opc init <name> # ๅๅปบๆฐ Agent
|
|
90
|
+
opc dev # ๅผๅๆจกๅผ๏ผ็ญ้่ฝฝ๏ผ
|
|
91
|
+
opc test # ่ฟ่กๆต่ฏ
|
|
92
|
+
opc run # ็ไบง่ฟ่ก
|
|
93
|
+
opc logs [-f] # ๆฅ็ Traces ๆฅๅฟ
|
|
94
|
+
opc brain [--url ...] # ๆฅ็่ฎฐๅฟ็ถๆ
|
|
95
|
+
opc score # ๆฅ็ๆง่ฝ่ฏๅ
|
|
167
96
|
```
|
|
168
97
|
|
|
169
|
-
|
|
170
|
-
|------|------|---------|
|
|
171
|
-
| `customer-service` | ๅฎขๆๆบ่ฝไฝ | FAQ ่ชๅจๅ็ญ + ่ฝฌไบบๅทฅ |
|
|
172
|
-
| `sales-assistant` | ้ๅฎๅฉๆ | ไบงๅ้ฎ็ญ + ็บฟ็ดขๆ่ท |
|
|
173
|
-
| `knowledge-base` | ็ฅ่ฏๅบ้ฎ็ญ | ๆๆกฃ RAG ่ฏญไนๆฃ็ดข |
|
|
174
|
-
| `code-reviewer` | ไปฃ็ ๅฎกๆฅ | Bug ๆฃๆต + ้ฃๆ ผๆฃๆฅ |
|
|
175
|
-
| `hr-recruiter` | HR ๆ่ๅฉๆ | ็ฎๅ็ญ้ + ้ข่ฏๅฎๆ |
|
|
176
|
-
| `project-manager` | ้กน็ฎ็ฎก็ | ไปปๅก่ท่ธช + ไผ่ฎฎ็บช่ฆ |
|
|
177
|
-
| `content-writer` | ๅ
ๅฎนๅไฝ | ๅๅฎข + ็คพๅช + SEO |
|
|
178
|
-
| `legal-assistant` | ๆณๅกๅฉๆ | ๅๅๅฎกๆฅ + ๅ่งๆฃๆฅ |
|
|
179
|
-
| `financial-advisor` | ่ดขๅก้กพ้ฎ | ้ข็ฎ็ฎก็ + ๆฏๅบ่ฟฝ่ธช |
|
|
180
|
-
| `executive-assistant` | ่กๆฟๅฉ็ | ๆฅ็จ + ้ฎไปถ + ไผ่ฎฎ |
|
|
181
|
-
| `data-analyst` | ๆฐๆฎๅๆๅธ | ๆฐๆฎๆฅ่ฏข + ๅฏ่งๅ |
|
|
182
|
-
| `teacher` | ๆๅญฆๅฉๆ | ่ฏพ็จ่ฎพ่ฎก + ๅบ้ข |
|
|
183
|
-
|
|
184
|
-
## ๐ ้จ็ฝฒ
|
|
98
|
+
## 11 ไธชๆธ ้
|
|
185
99
|
|
|
186
|
-
|
|
100
|
+
ไธๅฅไปฃ็ ๏ผ้จ็ฝฒๅฐไปปๆๆธ ้๏ผ
|
|
187
101
|
|
|
188
|
-
|
|
102
|
+
| ๆธ ้ | ็ถๆ | ่ฏดๆ |
|
|
103
|
+
|------|------|------|
|
|
104
|
+
| ๐ Web | โ
| ็ฝ้กต่ๅคฉ |
|
|
105
|
+
| ๐ฑ Telegram | โ
| Bot API |
|
|
106
|
+
| ๐ฌ Slack | โ
| Slack App |
|
|
107
|
+
| ๐ฎ Discord | โ
| Discord Bot |
|
|
108
|
+
| ๐ง Email | โ
| IMAP/SMTP |
|
|
109
|
+
| ๐ ๅพฎไฟก | โ
| ไผไธๅพฎไฟก/ไธชไบบๅพฎไฟก |
|
|
110
|
+
| ๐ต ้ฃไนฆ | โ
| ้ฃไนฆๆบๅจไบบ |
|
|
111
|
+
| ๐ค Voice | โ
| ่ฏญ้ณ้่ฏ |
|
|
112
|
+
| ๐ WebSocket | โ
| ๅฎๆถๅๅ |
|
|
113
|
+
| ๐ช Webhook | โ
| HTTP ๅ่ฐ |
|
|
114
|
+
| ๐ก API | โ
| REST API |
|
|
189
115
|
|
|
190
|
-
|
|
191
|
-
docker compose up -d
|
|
192
|
-
```
|
|
116
|
+
## ๆ ธๅฟ็นๆง
|
|
193
117
|
|
|
194
|
-
|
|
118
|
+
| ็ฑปๅซ | ็นๆง |
|
|
119
|
+
|------|------|
|
|
120
|
+
| ๐ **้
็ฝฎ** | OAD ๅฃฐๆๅผๅฎไนใYAML ้
็ฝฎ |
|
|
121
|
+
| ๐ก **ๆธ ้** | 11 ไธชๆธ ้็ปไธๆฅๅ
ฅ |
|
|
122
|
+
| ๐งช **ๆต่ฏ** | ๅ
็ฝฎๆต่ฏๆกๆถใ163 tests |
|
|
123
|
+
| ๐ **ๆไปถ** | ๅฏๆฉๅฑๆ่ฝๅๅทฅๅ
ท็ณป็ป |
|
|
124
|
+
| ๐ **็ๆง** | Traces ่กไธบ้้ใScore ่ฏๅ |
|
|
125
|
+
| ๐ง **่ฎฐๅฟ** | DeepBrain ้ๆใ่ชๅจๅญฆไน |
|
|
126
|
+
| ๐ **ๅฝ้
ๅ** | ๅ
็ฝฎ i18n ๆฏๆ |
|
|
127
|
+
| ๐ **้จ็ฝฒ** | OpenClaw ็ญๅนณๅฐไธ้ฎ้จ็ฝฒ |
|
|
128
|
+
| ๐ **ๅๆ** | Analytics ๆฐๆฎๅๆ |
|
|
129
|
+
| ๐ **ๆตๅผ** | Streaming ๅฎๆถๅๅบ |
|
|
130
|
+
|
|
131
|
+
## ๆถๆ
|
|
195
132
|
|
|
196
|
-
```bash
|
|
197
|
-
opc deploy --target openclaw
|
|
198
|
-
opc deploy --target openclaw --install # ๅๆถๅๅ
ฅๆฌๅฐ้
็ฝฎ
|
|
199
133
|
```
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
134
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
135
|
+
โ OPC Agent OS โ
|
|
136
|
+
โโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโค
|
|
137
|
+
โ ๅๅปบ โ ่ฟ่ก โ ็ๆง โ
|
|
138
|
+
โ opc init โ 11 ๆธ ้ โ Traces โ
|
|
139
|
+
โ OAD ้
็ฝฎ โ ๆไปถ็ณป็ป โ Score โ
|
|
140
|
+
โ ๆต่ฏๆกๆถ โ ๆตๅผๅๅบ โ Analytics โ
|
|
141
|
+
โโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโค
|
|
142
|
+
โ DeepBrain ่ฎฐๅฟ โ
|
|
143
|
+
โ learn โ Traces โ recall โ
|
|
144
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
207
145
|
```
|
|
208
146
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
## ๐ CLI ๅฝไปคๅ่
|
|
212
|
-
|
|
213
|
-
| ๅฝไปค | ่ฏดๆ |
|
|
214
|
-
|------|------|
|
|
215
|
-
| `opc init [name]` | ๅๅปบๆฐๆบ่ฝไฝ้กน็ฎ๏ผไบคไบๅผ๏ผๅฏ้ๆจกๆฟ๏ผ |
|
|
216
|
-
| `opc create <name>` | ไปๆจกๆฟๅฟซ้ๅๅปบ |
|
|
217
|
-
| `opc run` | ๅฏๅจๆบ่ฝไฝ |
|
|
218
|
-
| `opc dev` | ๅผๅๆจกๅผ๏ผๆไปถ็ๅฌ็ญ้่ฝฝ๏ผ |
|
|
219
|
-
| `opc chat` | ๅฝไปค่กไบคไบๅฏน่ฏ๏ผreadline ็้ข๏ผ |
|
|
220
|
-
| `opc test` | ่ฟ่ก OAD ไธญๅฎไน็ๆต่ฏ็จไพ |
|
|
221
|
-
| `opc build` | ๆ ก้ช OAD ้
็ฝฎๅๆณๆง |
|
|
222
|
-
| `opc info` | ๆฅ็ๆบ่ฝไฝไฟกๆฏ |
|
|
223
|
-
| `opc analytics` | ๆฅ็ไฝฟ็จๅๆ |
|
|
224
|
-
| `opc stats` | ๆฅ็่ฟ่กๆถ็ป่ฎกๅฟซ็
ง |
|
|
225
|
-
| `opc deploy` | ้จ็ฝฒๆบ่ฝไฝ๏ผ--target openclaw\|hermes๏ผ |
|
|
226
|
-
| `opc kb add <file>` | ๅ็ฅ่ฏๅบๆทปๅ ๆไปถ |
|
|
227
|
-
| `opc kb search <query>` | ๆ็ดข็ฅ่ฏๅบ |
|
|
228
|
-
| `opc kb stats` | ็ฅ่ฏๅบ็ป่ฎก |
|
|
229
|
-
| `opc kb clear` | ๆธ
็ฉบ็ฅ่ฏๅบ |
|
|
230
|
-
| `opc search` | ๆ็ดข OPC Registry |
|
|
231
|
-
| `opc tool` | MCP ๅทฅๅ
ท็ฎก็ |
|
|
232
|
-
| `opc workflow run` | ่ฟ่กๅทฅไฝๆต |
|
|
233
|
-
| `opc workflow list` | ๅๅบๅทฅไฝๆต |
|
|
234
|
-
| `opc version-mgmt list` | ๅๅบๅๅฒ็ๆฌ |
|
|
235
|
-
| `opc version-mgmt rollback` | ๅๆป็ๆฌ |
|
|
236
|
-
| `opc publish` | ๆๅ
ๅๅธๆบ่ฝไฝ |
|
|
237
|
-
| `opc install <pkg>` | ๅฎ่ฃ
ๆบ่ฝไฝๅ
|
|
|
238
|
-
| `opc plugin list` | ๅๅบๅทฒๅฎ่ฃ
ๆไปถ |
|
|
239
|
-
| `opc plugin add <name>` | ๆทปๅ ๆไปถ |
|
|
240
|
-
| `opc migrate` | OAD Schema ่ฟ็งป |
|
|
241
|
-
|
|
242
|
-
## ๐ SDK ๅ่
|
|
243
|
-
|
|
244
|
-
```typescript
|
|
245
|
-
import { AgentRuntime, KnowledgeBase, Orchestrator } from 'opc-agent';
|
|
246
|
-
|
|
247
|
-
// ๅฏๅจๆบ่ฝไฝ
|
|
248
|
-
const runtime = new AgentRuntime();
|
|
249
|
-
await runtime.loadConfig('oad.yaml');
|
|
250
|
-
await runtime.initialize();
|
|
251
|
-
await runtime.start();
|
|
252
|
-
|
|
253
|
-
// ็ฅ่ฏๅบ
|
|
254
|
-
const kb = new KnowledgeBase('./docs');
|
|
255
|
-
await kb.addFile('handbook.pdf');
|
|
256
|
-
const results = await kb.search('้ๆฌพๆฟ็ญ');
|
|
257
|
-
|
|
258
|
-
// ๅคๆบ่ฝไฝ็ผๆ
|
|
259
|
-
const orch = new Orchestrator({
|
|
260
|
-
agents: [agentA, agentB],
|
|
261
|
-
strategy: 'route-by-intent',
|
|
262
|
-
});
|
|
263
|
-
```
|
|
147
|
+
## ๐ ็ๆ
|
|
264
148
|
|
|
265
|
-
|
|
149
|
+
| ้กน็ฎ | ๅฎไฝ | ๅ
ณ็ณป |
|
|
150
|
+
|------|------|------|
|
|
151
|
+
| [deepbrain](https://github.com/Deepleaper/deepbrain) | Agent ่ฎฐๅฟๅผๆ | Traces โ learn() |
|
|
152
|
+
| **opc-agent** | Agent OS | โ ไฝ ๅจ่ฟ้ |
|
|
153
|
+
| [agentkits](https://github.com/Deepleaper/agentkits) | ๅธฆ่ฎฐๅฟ็ OpenRouter | ๆจกๅ่ฐ็จๅฑ |
|
|
154
|
+
| [agent-workstation](https://github.com/Deepleaper/agent-workstation) | ่ๆๅทฅไฝๆจกๆฟ | `opc init --template` |
|
|
266
155
|
|
|
267
|
-
|
|
268
|
-
apiVersion: opc/v1
|
|
269
|
-
kind: Agent
|
|
270
|
-
|
|
271
|
-
metadata:
|
|
272
|
-
name: my-agent
|
|
273
|
-
version: 1.0.0
|
|
274
|
-
|
|
275
|
-
spec:
|
|
276
|
-
provider:
|
|
277
|
-
default: deepseek
|
|
278
|
-
allowed: [deepseek, openai, qwen, anthropic, ollama]
|
|
279
|
-
model: deepseek-chat
|
|
280
|
-
systemPrompt: |
|
|
281
|
-
ไฝ ๆฏไธไธชไธไธ็ๅฎขๆๅฉๆ...
|
|
282
|
-
|
|
283
|
-
channels:
|
|
284
|
-
- type: web
|
|
285
|
-
port: 3000
|
|
286
|
-
|
|
287
|
-
memory:
|
|
288
|
-
shortTerm: true
|
|
289
|
-
longTerm: false
|
|
290
|
-
|
|
291
|
-
rateLimits:
|
|
292
|
-
perUser:
|
|
293
|
-
maxRequests: 60
|
|
294
|
-
windowMs: 60000
|
|
295
|
-
|
|
296
|
-
plugins:
|
|
297
|
-
- name: logging
|
|
298
|
-
- name: analytics
|
|
299
|
-
|
|
300
|
-
testing:
|
|
301
|
-
cases:
|
|
302
|
-
- name: ๅบๆฌ้ฎๅ
|
|
303
|
-
input: "ไฝ ๅฅฝ"
|
|
304
|
-
expect:
|
|
305
|
-
contains: ["ไฝ ๅฅฝ"]
|
|
306
|
-
maxLatencyMs: 5000
|
|
307
|
-
```
|
|
156
|
+
## License
|
|
308
157
|
|
|
309
|
-
|
|
158
|
+
Apache-2.0
|
|
310
159
|
|
|
311
|
-
|
|
312
|
-
git clone https://github.com/Deepleaper/opc-agent.git
|
|
313
|
-
cd opc-agent
|
|
314
|
-
npm install
|
|
315
|
-
npm run build # TypeScript ็ผ่ฏ
|
|
316
|
-
npm test # ่ฟ่ก 146 ไธชๆต่ฏ
|
|
317
|
-
```
|
|
160
|
+
---
|
|
318
161
|
|
|
319
|
-
|
|
162
|
+
<a name="english"></a>
|
|
320
163
|
|
|
321
|
-
##
|
|
164
|
+
## English
|
|
322
165
|
|
|
323
|
-
|
|
166
|
+
## ๐ก What Is OPC Agent?
|
|
324
167
|
|
|
325
|
-
|
|
168
|
+
> **Not just a Harness โ it's an Agent OS, one dimension above Harness frameworks.**
|
|
169
|
+
> From creation to runtime to monitoring, one tool for the entire Agent lifecycle.
|
|
326
170
|
|
|
327
|
-
|
|
328
|
-
<summary id="english">๐บ๐ธ English</summary>
|
|
171
|
+
## ๐ฏ How It Differs from Harness Frameworks
|
|
329
172
|
|
|
330
|
-
|
|
173
|
+
| | LangChain | CrewAI | AutoGen | **OPC Agent** |
|
|
174
|
+
|---|---|---|---|---|
|
|
175
|
+
| Creation | Write code | Write code | Write code | **`opc init` one command** |
|
|
176
|
+
| Configuration | Python/code | Python | Python | **YAML declarative** |
|
|
177
|
+
| Testing | DIY | None | None | **Built-in test framework** |
|
|
178
|
+
| Channels | DIY | None | None | **11 channels out-of-the-box** |
|
|
179
|
+
| Monitoring | DIY | None | None | **Traces + Score** |
|
|
180
|
+
| Memory | DIY | Basic | Basic | **DeepBrain integration** |
|
|
331
181
|
|
|
332
|
-
|
|
182
|
+
**Frameworks manage "how to run." Agent OS manages "the entire process."**
|
|
333
183
|
|
|
334
184
|
## Quick Start
|
|
335
185
|
|
|
336
186
|
```bash
|
|
337
187
|
npm install -g opc-agent
|
|
188
|
+
|
|
189
|
+
# Create
|
|
338
190
|
opc init my-agent
|
|
339
191
|
cd my-agent
|
|
340
|
-
opc run
|
|
341
|
-
```
|
|
342
|
-
|
|
343
|
-
Agent is live at `http://localhost:3000` with a built-in web chat UI.
|
|
344
|
-
|
|
345
|
-
## Features
|
|
346
|
-
|
|
347
|
-
- **Multi-Provider LLM** โ DeepSeek, Qwen, OpenAI, Anthropic, Ollama, any OpenAI-compatible API
|
|
348
|
-
- **10 Channels** โ Web, Telegram, Slack, WebSocket, Email, WeChat, Feishu, Voice (STT/TTS), Webhook, Discord
|
|
349
|
-
- **Knowledge Base (RAG)** โ TF-IDF + cosine similarity, no external vector DB required
|
|
350
|
-
- **Multi-Agent Orchestration** โ Intent routing, sequential/parallel execution, agent handoff
|
|
351
|
-
- **Built-in Testing** โ YAML-defined test cases with content and latency assertions
|
|
352
|
-
- **Plugin System** โ Logging, analytics, rate limiting; full lifecycle hooks
|
|
353
|
-
- **Security** โ Input sanitization, CORS, auth middleware, session isolation
|
|
354
|
-
- **Monitoring** โ `/api/health`, `/api/metrics` (Prometheus format), `/api/dashboard`
|
|
355
|
-
- **12 Templates** โ Customer service, sales, knowledge base, code review, HR, and more
|
|
356
|
-
- **146 Tests** โ 22 test files covering all major features
|
|
357
|
-
|
|
358
|
-
## CLI Reference
|
|
359
|
-
|
|
360
|
-
| Command | Description |
|
|
361
|
-
|---------|-------------|
|
|
362
|
-
| `opc init [name]` | Create new agent project (interactive, template selection) |
|
|
363
|
-
| `opc run` | Start agent |
|
|
364
|
-
| `opc dev` | Development mode (hot-reload) |
|
|
365
|
-
| `opc test` | Run OAD test cases |
|
|
366
|
-
| `opc chat` | Interactive CLI chat |
|
|
367
|
-
| `opc build` | Validate OAD configuration |
|
|
368
|
-
| `opc deploy` | Deploy (`--target openclaw\|hermes`) |
|
|
369
|
-
| `opc analytics` | View analytics |
|
|
370
|
-
| `opc stats` | Runtime statistics snapshot |
|
|
371
|
-
| `opc kb add <file>` | Add file to knowledge base |
|
|
372
|
-
| `opc kb search <query>` | Search knowledge base |
|
|
373
|
-
| `opc workflow run` | Run a workflow |
|
|
374
|
-
| `opc version-mgmt rollback` | Rollback to a previous version |
|
|
375
|
-
| `opc publish` | Package agent for distribution |
|
|
376
|
-
| `opc install <pkg>` | Install agent package |
|
|
377
|
-
| `opc plugin add <name>` | Add plugin |
|
|
378
|
-
| `opc migrate` | Migrate OAD schema |
|
|
379
|
-
|
|
380
|
-
## Deploy
|
|
381
|
-
|
|
382
|
-
### Docker
|
|
383
|
-
|
|
384
|
-
Every project created with `opc init` includes a `Dockerfile` and `docker-compose.yml`:
|
|
385
192
|
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
```
|
|
193
|
+
# Develop
|
|
194
|
+
opc dev
|
|
389
195
|
|
|
390
|
-
|
|
196
|
+
# Test
|
|
197
|
+
opc test
|
|
391
198
|
|
|
392
|
-
|
|
393
|
-
opc
|
|
199
|
+
# Run
|
|
200
|
+
opc run
|
|
394
201
|
```
|
|
395
202
|
|
|
396
|
-
|
|
203
|
+
## OAD Declarative Configuration
|
|
397
204
|
|
|
398
|
-
|
|
205
|
+
Define your Agent with YAML โ no code required:
|
|
399
206
|
|
|
400
|
-
```
|
|
401
|
-
|
|
207
|
+
```yaml
|
|
208
|
+
id: customer-service
|
|
209
|
+
name: Customer Service Rep
|
|
210
|
+
version: "1.0.0"
|
|
211
|
+
|
|
212
|
+
model: deepseek-chat
|
|
213
|
+
systemPrompt: |
|
|
214
|
+
You are a professional customer service agent...
|
|
215
|
+
|
|
216
|
+
skills:
|
|
217
|
+
- ticket-management
|
|
218
|
+
- knowledge-base-search
|
|
219
|
+
|
|
220
|
+
channels:
|
|
221
|
+
- type: web
|
|
222
|
+
priority: primary
|
|
223
|
+
- type: telegram
|
|
224
|
+
priority: secondary
|
|
225
|
+
- type: wechat
|
|
226
|
+
priority: secondary
|
|
227
|
+
|
|
228
|
+
memory:
|
|
229
|
+
shortTerm: true
|
|
230
|
+
longTerm:
|
|
231
|
+
provider: deepbrain
|
|
402
232
|
```
|
|
403
233
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
## SDK
|
|
234
|
+
## CLI Commands
|
|
407
235
|
|
|
408
|
-
```
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
236
|
+
```bash
|
|
237
|
+
opc init <name> # Create a new Agent
|
|
238
|
+
opc dev # Development mode (hot reload)
|
|
239
|
+
opc test # Run tests
|
|
240
|
+
opc run # Production run
|
|
241
|
+
opc logs [-f] # View Traces logs
|
|
242
|
+
opc brain [--url ...] # View memory status
|
|
243
|
+
opc score # View performance score
|
|
415
244
|
```
|
|
416
245
|
|
|
417
|
-
##
|
|
246
|
+
## 11 Channels
|
|
247
|
+
|
|
248
|
+
One codebase, deploy to any channel:
|
|
249
|
+
|
|
250
|
+
| Channel | Status | Description |
|
|
251
|
+
|---------|--------|-------------|
|
|
252
|
+
| ๐ Web | โ
| Web chat |
|
|
253
|
+
| ๐ฑ Telegram | โ
| Bot API |
|
|
254
|
+
| ๐ฌ Slack | โ
| Slack App |
|
|
255
|
+
| ๐ฎ Discord | โ
| Discord Bot |
|
|
256
|
+
| ๐ง Email | โ
| IMAP/SMTP |
|
|
257
|
+
| ๐ WeChat | โ
| Enterprise/Personal WeChat |
|
|
258
|
+
| ๐ต Feishu | โ
| Feishu (Lark) Bot |
|
|
259
|
+
| ๐ค Voice | โ
| Voice call |
|
|
260
|
+
| ๐ WebSocket | โ
| Real-time bidirectional |
|
|
261
|
+
| ๐ช Webhook | โ
| HTTP callback |
|
|
262
|
+
| ๐ก API | โ
| REST API |
|
|
263
|
+
|
|
264
|
+
## Full Feature Set
|
|
265
|
+
|
|
266
|
+
| Category | Features |
|
|
267
|
+
|----------|----------|
|
|
268
|
+
| ๐ **Configuration** | OAD declarative definition, YAML config |
|
|
269
|
+
| ๐ก **Channels** | 11 channels, unified access |
|
|
270
|
+
| ๐งช **Testing** | Built-in test framework, 163 tests |
|
|
271
|
+
| ๐ **Plugins** | Extensible skills and tools system |
|
|
272
|
+
| ๐ **Monitoring** | Traces behavior collection, Score rating |
|
|
273
|
+
| ๐ง **Memory** | DeepBrain integration, auto-learning |
|
|
274
|
+
| ๐ **i18n** | Built-in internationalization support |
|
|
275
|
+
| ๐ **Deployment** | One-click deploy on OpenClaw and other platforms |
|
|
276
|
+
| ๐ **Analytics** | Data analytics |
|
|
277
|
+
| ๐ **Streaming** | Real-time streaming responses |
|
|
278
|
+
|
|
279
|
+
## Architecture
|
|
418
280
|
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
281
|
+
```
|
|
282
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
283
|
+
โ OPC Agent OS โ
|
|
284
|
+
โโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโค
|
|
285
|
+
โ Create โ Run โ Monitor โ
|
|
286
|
+
โ opc init โ 11 Chan. โ Traces โ
|
|
287
|
+
โ OAD Configโ Plugins โ Score โ
|
|
288
|
+
โ Test Fwk โ Streaming โ Analytics โ
|
|
289
|
+
โโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโค
|
|
290
|
+
โ DeepBrain Memory โ
|
|
291
|
+
โ learn โ Traces โ recall โ
|
|
292
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
293
|
+
```
|
|
422
294
|
|
|
423
|
-
|
|
295
|
+
## ๐ Ecosystem
|
|
424
296
|
|
|
425
|
-
|
|
297
|
+
| Project | Role | Relationship |
|
|
298
|
+
|---------|------|-------------|
|
|
299
|
+
| [deepbrain](https://github.com/Deepleaper/deepbrain) | Agent Memory Engine | Traces โ learn() |
|
|
300
|
+
| **opc-agent** | Agent OS | โ You are here |
|
|
301
|
+
| [agentkits](https://github.com/Deepleaper/agentkits) | OpenRouter with Memory | Model call layer |
|
|
302
|
+
| [agent-workstation](https://github.com/Deepleaper/agent-workstation) | Virtual Role Templates | `opc init --template` |
|
|
426
303
|
|
|
427
|
-
|
|
304
|
+
## License
|
|
428
305
|
|
|
429
|
-
|
|
306
|
+
Apache-2.0
|