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 CHANGED
@@ -122,27 +122,40 @@ opencode auth login
122
122
  opencode
123
123
  ```
124
124
 
125
- ### Invoke Agents
125
+ ### Three-Layer Architecture
126
126
 
127
- The Chief (editor-in-chief) will automatically coordinate team work. You can also specify agents directly:
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
- # Have the researcher investigate a topic
131
- @researcher Research the trends in AI development for 2024
143
+ # Research request - Chief delegates to researcher via Deputy
144
+ "Help me understand the AI development trends in 2024"
132
145
 
133
- # Have the fact-checker verify information
134
- @fact-checker Verify the source of this claim
146
+ # Writing request - Chief coordinates writer → editor pipeline
147
+ "Write an article about this topic based on our research"
135
148
 
136
- # Have the writer draft an article
137
- @writer Write an overview based on these materials
149
+ # Fact-checking request - Chief dispatches fact-checker
150
+ "Verify the sources in this document"
138
151
 
139
- # Have the editor polish the content
140
- @editor Help me refine this paragraph
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
- Use `chief_task` tool to delegate tasks by category:
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
- ### 调用 Agent
125
+ ### 三层架构
126
126
 
127
- 主编 (chief) 会自动协调团队工作。你也可以直接指定 Agent:
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
- @researcher 调研一下2024年AI发展趋势
143
+ # 调研请求 - Chief 通过 Deputy 委派给 researcher
144
+ "帮我了解一下2024年AI发展趋势"
132
145
 
133
- # 让核查员验证信息
134
- @fact-checker 核实这个说法的来源
146
+ # 写作请求 - Chief 协调 writer → editor 流水线
147
+ "根据我们的调研写一篇关于这个话题的文章"
135
148
 
136
- # 让写手起草文章
137
- @writer 基于这些资料写一篇概述
149
+ # 核查请求 - Chief 派遣 fact-checker
150
+ "验证这份文档中的来源"
138
151
 
139
- # 让编辑润色
140
- @editor 帮我精炼这段文字
152
+ # 复杂任务 - Chief 编排多个 Agent
153
+ "创建一份关于[主题]的综合报告,要求来源可验证"
141
154
  ```
142
155
 
143
156
  ### 使用任务分类
144
157
 
145
- 通过 `chief_task` 工具可以按分类委派任务:
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.30",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newtype-profile",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "description": "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",