newtype-profile 1.0.30 → 1.0.31
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 +24 -11
- package/README.zh-cn.md +24 -11
- package/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -122,27 +122,40 @@ opencode auth login
|
|
|
122
122
|
opencode
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
-
###
|
|
125
|
+
### Three-Layer Architecture
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
```
|
|
128
|
+
User ↔ Chief (Editor-in-Chief)
|
|
129
|
+
↓ chief_task
|
|
130
|
+
Deputy (Deputy Editor)
|
|
131
|
+
↓ chief_task
|
|
132
|
+
Specialist Agents (researcher, writer, editor...)
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**You only interact with Chief**. Chief automatically coordinates the team:
|
|
136
|
+
|
|
137
|
+
- **Mode 1 - Thought Partner**: When exploring ideas, Chief thinks WITH you, challenges flawed logic, and sparring.
|
|
138
|
+
- **Mode 2 - Execution Coordinator**: When you have clear deliverables, Chief decomposes, delegates, and delivers.
|
|
139
|
+
|
|
140
|
+
### Example Conversations
|
|
128
141
|
|
|
129
142
|
```
|
|
130
|
-
#
|
|
131
|
-
|
|
143
|
+
# Research request - Chief delegates to researcher via Deputy
|
|
144
|
+
"Help me understand the AI development trends in 2024"
|
|
132
145
|
|
|
133
|
-
#
|
|
134
|
-
|
|
146
|
+
# Writing request - Chief coordinates writer → editor pipeline
|
|
147
|
+
"Write an article about this topic based on our research"
|
|
135
148
|
|
|
136
|
-
#
|
|
137
|
-
|
|
149
|
+
# Fact-checking request - Chief dispatches fact-checker
|
|
150
|
+
"Verify the sources in this document"
|
|
138
151
|
|
|
139
|
-
#
|
|
140
|
-
|
|
152
|
+
# Complex task - Chief orchestrates multiple agents
|
|
153
|
+
"Create a comprehensive report on [topic] with verified sources"
|
|
141
154
|
```
|
|
142
155
|
|
|
143
156
|
### Task Categories
|
|
144
157
|
|
|
145
|
-
|
|
158
|
+
Chief uses `chief_task` to delegate tasks by category:
|
|
146
159
|
|
|
147
160
|
| Category | Purpose | Model Configuration |
|
|
148
161
|
|----------|---------|---------------------|
|
package/README.zh-cn.md
CHANGED
|
@@ -122,27 +122,40 @@ opencode auth login
|
|
|
122
122
|
opencode
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
-
###
|
|
125
|
+
### 三层架构
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
```
|
|
128
|
+
用户 ↔ Chief (主编)
|
|
129
|
+
↓ chief_task
|
|
130
|
+
Deputy (副主编)
|
|
131
|
+
↓ chief_task
|
|
132
|
+
专业 Agent (researcher, writer, editor...)
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**你只需要与 Chief 对话**。Chief 会自动协调团队:
|
|
136
|
+
|
|
137
|
+
- **模式 1 - 思考伙伴**:探索想法时,Chief 会和你一起思考,挑战有问题的逻辑,进行思维碰撞。
|
|
138
|
+
- **模式 2 - 执行协调**:当你有明确的交付物时,Chief 负责分解任务、委派执行、交付成果。
|
|
139
|
+
|
|
140
|
+
### 对话示例
|
|
128
141
|
|
|
129
142
|
```
|
|
130
|
-
#
|
|
131
|
-
|
|
143
|
+
# 调研请求 - Chief 通过 Deputy 委派给 researcher
|
|
144
|
+
"帮我了解一下2024年AI发展趋势"
|
|
132
145
|
|
|
133
|
-
#
|
|
134
|
-
|
|
146
|
+
# 写作请求 - Chief 协调 writer → editor 流水线
|
|
147
|
+
"根据我们的调研写一篇关于这个话题的文章"
|
|
135
148
|
|
|
136
|
-
#
|
|
137
|
-
|
|
149
|
+
# 核查请求 - Chief 派遣 fact-checker
|
|
150
|
+
"验证这份文档中的来源"
|
|
138
151
|
|
|
139
|
-
#
|
|
140
|
-
|
|
152
|
+
# 复杂任务 - Chief 编排多个 Agent
|
|
153
|
+
"创建一份关于[主题]的综合报告,要求来源可验证"
|
|
141
154
|
```
|
|
142
155
|
|
|
143
156
|
### 使用任务分类
|
|
144
157
|
|
|
145
|
-
|
|
158
|
+
Chief 使用 `chief_task` 按分类委派任务:
|
|
146
159
|
|
|
147
160
|
| 分类 | 用途 | 模型配置 |
|
|
148
161
|
|------|------|---------|
|
package/dist/cli/index.js
CHANGED
|
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
|
|
|
2253
2253
|
var require_package = __commonJS((exports, module) => {
|
|
2254
2254
|
module.exports = {
|
|
2255
2255
|
name: "newtype-profile",
|
|
2256
|
-
version: "1.0.
|
|
2256
|
+
version: "1.0.31",
|
|
2257
2257
|
description: "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
|
|
2258
2258
|
main: "dist/index.js",
|
|
2259
2259
|
types: "dist/index.d.ts",
|