newtype-profile 1.0.62 → 1.0.63
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 +67 -19
- package/README.zh-cn.md +67 -19
- package/dist/cli/index.js +1 -1
- package/dist/index.js +98 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,36 @@ newtype-profile is an AI Agent collaboration framework designed for **content cr
|
|
|
28
28
|
- 🔍 Information research and fact-checking
|
|
29
29
|
- 📄 Document extraction and organization
|
|
30
30
|
|
|
31
|
+
## Two Ways to Use
|
|
32
|
+
|
|
33
|
+
### Option A: Newtype CLI (Recommended)
|
|
34
|
+
|
|
35
|
+
[**Newtype CLI**](https://www.npmjs.com/package/newtype-cli) is a standalone terminal AI assistant with newtype-profile built-in. No plugin setup needed — install and go.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g newtype-cli
|
|
39
|
+
newtype
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Newtype CLI is a white-labeled fork of [OpenCode](https://github.com/anomalyco/opencode) with the full agent team pre-configured.
|
|
43
|
+
|
|
44
|
+
### Option B: As an OpenCode Plugin
|
|
45
|
+
|
|
46
|
+
If you already use OpenCode and want to add newtype-profile as a plugin:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
cd ~/.config/opencode
|
|
50
|
+
bun add newtype-profile
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Edit `~/.config/opencode/opencode.json`:
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"plugin": ["newtype-profile"]
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
31
61
|
## Agent Team
|
|
32
62
|
|
|
33
63
|
| Agent | Role | Description |
|
|
@@ -41,40 +71,41 @@ newtype-profile is an AI Agent collaboration framework designed for **content cr
|
|
|
41
71
|
| **writer** | Writer | Content production |
|
|
42
72
|
| **editor** | Editor | Content refinement |
|
|
43
73
|
|
|
44
|
-
##
|
|
74
|
+
## Configure Models
|
|
45
75
|
|
|
46
|
-
|
|
76
|
+
Create a config file to customize which models each agent uses:
|
|
47
77
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
bun add newtype-profile
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
Edit `~/.config/opencode/opencode.json`:
|
|
78
|
+
- **Newtype CLI**: `~/.config/newtype/newtype-profile.json`
|
|
79
|
+
- **OpenCode plugin**: `~/.config/opencode/newtype-profile.json`
|
|
54
80
|
|
|
55
81
|
```json
|
|
56
82
|
{
|
|
57
|
-
"
|
|
83
|
+
"agents": {
|
|
84
|
+
"chief": { "model": "your-preferred-model" },
|
|
85
|
+
"deputy": { "model": "your-preferred-model" },
|
|
86
|
+
"researcher": { "model": "your-preferred-model" },
|
|
87
|
+
"writer": { "model": "your-preferred-model", "temperature": 0.7 }
|
|
88
|
+
}
|
|
58
89
|
}
|
|
59
90
|
```
|
|
60
91
|
|
|
61
|
-
|
|
92
|
+
All 8 agents (`chief`, `deputy`, `researcher`, `fact-checker`, `archivist`, `extractor`, `writer`, `editor`) can be configured independently.
|
|
62
93
|
|
|
63
|
-
|
|
94
|
+
<details>
|
|
95
|
+
<summary>Optional: Google Antigravity OAuth</summary>
|
|
96
|
+
|
|
97
|
+
If using Google Antigravity as your model provider, add `google_auth`:
|
|
64
98
|
|
|
65
99
|
```json
|
|
66
100
|
{
|
|
67
101
|
"google_auth": true,
|
|
68
102
|
"agents": {
|
|
69
|
-
"chief": { "model": "google/antigravity-claude-opus-4-5-thinking-high" }
|
|
70
|
-
"researcher": { "model": "google/antigravity-gemini-3-pro-high" },
|
|
71
|
-
"writer": { "model": "google/antigravity-gemini-3-pro-high" },
|
|
72
|
-
"editor": { "model": "google/antigravity-claude-sonnet-4-5" }
|
|
103
|
+
"chief": { "model": "google/antigravity-claude-opus-4-5-thinking-high" }
|
|
73
104
|
}
|
|
74
105
|
}
|
|
75
106
|
```
|
|
76
107
|
|
|
77
|
-
|
|
108
|
+
Then authenticate:
|
|
78
109
|
|
|
79
110
|
```bash
|
|
80
111
|
opencode auth login
|
|
@@ -82,6 +113,8 @@ opencode auth login
|
|
|
82
113
|
# Select Login method: OAuth with Google (Antigravity)
|
|
83
114
|
```
|
|
84
115
|
|
|
116
|
+
</details>
|
|
117
|
+
|
|
85
118
|
## Usage
|
|
86
119
|
|
|
87
120
|
### Three-Layer Architecture
|
|
@@ -116,7 +149,7 @@ Chief's personality has three layers:
|
|
|
116
149
|
- **Inner Persona** (hardcoded): Core values and thinking patterns
|
|
117
150
|
- **Outer Persona** (customizable): Communication style
|
|
118
151
|
|
|
119
|
-
Create `.opencode/SOUL.md` to customize how Chief communicates:
|
|
152
|
+
Create `.opencode/SOUL.md` (or `.newtype/SOUL.md` for Newtype CLI) to customize how Chief communicates:
|
|
120
153
|
|
|
121
154
|
```bash
|
|
122
155
|
/init-soul # Creates default SOUL.md template
|
|
@@ -127,7 +160,7 @@ Example customizations:
|
|
|
127
160
|
- Adjust language preferences
|
|
128
161
|
- Change how direct Chief is
|
|
129
162
|
|
|
130
|
-
Changes take effect after restarting
|
|
163
|
+
Changes take effect after restarting.
|
|
131
164
|
|
|
132
165
|
### Built-in Skills
|
|
133
166
|
|
|
@@ -166,7 +199,7 @@ Built-in MCPs:
|
|
|
166
199
|
|
|
167
200
|
## Memory System
|
|
168
201
|
|
|
169
|
-
Auto-saves conversation summaries to `.opencode/memory
|
|
202
|
+
Auto-saves conversation summaries to `.opencode/memory/` (or `.newtype/memory/`):
|
|
170
203
|
- Daily summaries (LLM-generated)
|
|
171
204
|
- Full transcripts per session
|
|
172
205
|
- Auto-archive to `MEMORY.md` after 7 days
|
|
@@ -180,6 +213,21 @@ Use `/memory-consolidate` to manually trigger consolidation.
|
|
|
180
213
|
- **Startup Config Checker**: Guides model setup on first run
|
|
181
214
|
- **Plugin Switching**: `/switch newtype` / `/switch omo` / `/switch none`
|
|
182
215
|
|
|
216
|
+
## Newtype CLI
|
|
217
|
+
|
|
218
|
+
[Newtype CLI](https://www.npmjs.com/package/newtype-cli) is a standalone product that bundles newtype-profile into a ready-to-use terminal AI assistant.
|
|
219
|
+
|
|
220
|
+
| | newtype-profile (plugin) | Newtype CLI |
|
|
221
|
+
|---|---|---|
|
|
222
|
+
| **Install** | `bun add newtype-profile` in OpenCode | `npm install -g newtype-cli` |
|
|
223
|
+
| **Requires** | OpenCode installed separately | Nothing — self-contained |
|
|
224
|
+
| **Launch** | `opencode` | `newtype` |
|
|
225
|
+
| **Config dir** | `~/.config/opencode/` | `~/.config/newtype/` |
|
|
226
|
+
| **Project dir** | `.opencode/` | `.newtype/` |
|
|
227
|
+
| **npm package** | [newtype-profile](https://www.npmjs.com/package/newtype-profile) | [newtype-cli](https://www.npmjs.com/package/newtype-cli) |
|
|
228
|
+
|
|
229
|
+
Supported platforms: macOS (Apple Silicon & Intel), Linux (x64 & ARM64, glibc & musl), Windows (x64).
|
|
230
|
+
|
|
183
231
|
## License
|
|
184
232
|
|
|
185
233
|
Based on [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode), follows [SUL-1.0 License](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md).
|
package/README.zh-cn.md
CHANGED
|
@@ -28,6 +28,36 @@ newtype-profile 是专为**内容创作**设计的 AI Agent 协作框架:
|
|
|
28
28
|
- 🔍 信息调研与核查
|
|
29
29
|
- 📄 文档提取与整理
|
|
30
30
|
|
|
31
|
+
## 两种使用方式
|
|
32
|
+
|
|
33
|
+
### 方式 A:Newtype CLI(推荐)
|
|
34
|
+
|
|
35
|
+
[**Newtype CLI**](https://www.npmjs.com/package/newtype-cli) 是独立的终端 AI 助手,已内置 newtype-profile。无需额外配置插件,安装即用。
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g newtype-cli
|
|
39
|
+
newtype
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Newtype CLI 基于 [OpenCode](https://github.com/anomalyco/opencode) 定制,预配置了完整的 Agent 团队。
|
|
43
|
+
|
|
44
|
+
### 方式 B:作为 OpenCode 插件
|
|
45
|
+
|
|
46
|
+
如果你已在使用 OpenCode,可以将 newtype-profile 作为插件添加:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
cd ~/.config/opencode
|
|
50
|
+
bun add newtype-profile
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
编辑 `~/.config/opencode/opencode.json`:
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"plugin": ["newtype-profile"]
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
31
61
|
## Agent 团队
|
|
32
62
|
|
|
33
63
|
| Agent | 角色 | 职责描述 |
|
|
@@ -41,40 +71,41 @@ newtype-profile 是专为**内容创作**设计的 AI Agent 协作框架:
|
|
|
41
71
|
| **writer** | 写手 | 内容生产 |
|
|
42
72
|
| **editor** | 编辑 | 内容精炼 |
|
|
43
73
|
|
|
44
|
-
##
|
|
74
|
+
## 配置模型
|
|
45
75
|
|
|
46
|
-
|
|
76
|
+
创建配置文件来自定义各 Agent 使用的模型:
|
|
47
77
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
bun add newtype-profile
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
编辑 `~/.config/opencode/opencode.json`:
|
|
78
|
+
- **Newtype CLI**:`~/.config/newtype/newtype-profile.json`
|
|
79
|
+
- **OpenCode 插件**:`~/.config/opencode/newtype-profile.json`
|
|
54
80
|
|
|
55
81
|
```json
|
|
56
82
|
{
|
|
57
|
-
"
|
|
83
|
+
"agents": {
|
|
84
|
+
"chief": { "model": "你偏好的模型" },
|
|
85
|
+
"deputy": { "model": "你偏好的模型" },
|
|
86
|
+
"researcher": { "model": "你偏好的模型" },
|
|
87
|
+
"writer": { "model": "你偏好的模型", "temperature": 0.7 }
|
|
88
|
+
}
|
|
58
89
|
}
|
|
59
90
|
```
|
|
60
91
|
|
|
61
|
-
|
|
92
|
+
全部 8 个 Agent(`chief`、`deputy`、`researcher`、`fact-checker`、`archivist`、`extractor`、`writer`、`editor`)均可独立配置。
|
|
62
93
|
|
|
63
|
-
|
|
94
|
+
<details>
|
|
95
|
+
<summary>可选:Google Antigravity OAuth</summary>
|
|
96
|
+
|
|
97
|
+
如果使用 Google Antigravity 作为模型提供商,添加 `google_auth`:
|
|
64
98
|
|
|
65
99
|
```json
|
|
66
100
|
{
|
|
67
101
|
"google_auth": true,
|
|
68
102
|
"agents": {
|
|
69
|
-
"chief": { "model": "google/antigravity-claude-opus-4-5-thinking-high" }
|
|
70
|
-
"researcher": { "model": "google/antigravity-gemini-3-pro-high" },
|
|
71
|
-
"writer": { "model": "google/antigravity-gemini-3-pro-high" },
|
|
72
|
-
"editor": { "model": "google/antigravity-claude-sonnet-4-5" }
|
|
103
|
+
"chief": { "model": "google/antigravity-claude-opus-4-5-thinking-high" }
|
|
73
104
|
}
|
|
74
105
|
}
|
|
75
106
|
```
|
|
76
107
|
|
|
77
|
-
|
|
108
|
+
然后认证:
|
|
78
109
|
|
|
79
110
|
```bash
|
|
80
111
|
opencode auth login
|
|
@@ -82,6 +113,8 @@ opencode auth login
|
|
|
82
113
|
# 选择 Login method: OAuth with Google (Antigravity)
|
|
83
114
|
```
|
|
84
115
|
|
|
116
|
+
</details>
|
|
117
|
+
|
|
85
118
|
## 使用方式
|
|
86
119
|
|
|
87
120
|
### 三层架构
|
|
@@ -116,7 +149,7 @@ Chief 的人格分三层:
|
|
|
116
149
|
- **里人格**(硬编码):核心价值观和思维方式
|
|
117
150
|
- **表人格**(可自定义):沟通风格
|
|
118
151
|
|
|
119
|
-
创建 `.opencode/SOUL.md
|
|
152
|
+
创建 `.opencode/SOUL.md`(Newtype CLI 为 `.newtype/SOUL.md`)来自定义 Chief 的沟通风格:
|
|
120
153
|
|
|
121
154
|
```bash
|
|
122
155
|
/init-soul # 创建默认 SOUL.md 模板
|
|
@@ -127,7 +160,7 @@ Chief 的人格分三层:
|
|
|
127
160
|
- 调整语言偏好
|
|
128
161
|
- 改变直接程度
|
|
129
162
|
|
|
130
|
-
|
|
163
|
+
修改后重启生效。
|
|
131
164
|
|
|
132
165
|
### 内置 Skills
|
|
133
166
|
|
|
@@ -166,7 +199,7 @@ Chief 在任务需要时自动加载技能。
|
|
|
166
199
|
|
|
167
200
|
## 记忆系统
|
|
168
201
|
|
|
169
|
-
自动保存对话摘要到 `.opencode/memory
|
|
202
|
+
自动保存对话摘要到 `.opencode/memory/`(Newtype CLI 为 `.newtype/memory/`):
|
|
170
203
|
- 每日摘要(LLM 生成)
|
|
171
204
|
- 每个 session 的完整记录
|
|
172
205
|
- 7 天后自动归档到 `MEMORY.md`
|
|
@@ -180,6 +213,21 @@ Chief 在任务需要时自动加载技能。
|
|
|
180
213
|
- **启动配置检查**:首次运行时引导模型设置
|
|
181
214
|
- **插件切换**:`/switch newtype` / `/switch omo` / `/switch none`
|
|
182
215
|
|
|
216
|
+
## Newtype CLI
|
|
217
|
+
|
|
218
|
+
[Newtype CLI](https://www.npmjs.com/package/newtype-cli) 是独立产品,将 newtype-profile 打包为开箱即用的终端 AI 助手。
|
|
219
|
+
|
|
220
|
+
| | newtype-profile(插件) | Newtype CLI |
|
|
221
|
+
|---|---|---|
|
|
222
|
+
| **安装** | 在 OpenCode 中 `bun add newtype-profile` | `npm install -g newtype-cli` |
|
|
223
|
+
| **依赖** | 需要单独安装 OpenCode | 无需其他依赖,自包含 |
|
|
224
|
+
| **启动** | `opencode` | `newtype` |
|
|
225
|
+
| **配置目录** | `~/.config/opencode/` | `~/.config/newtype/` |
|
|
226
|
+
| **项目目录** | `.opencode/` | `.newtype/` |
|
|
227
|
+
| **npm 包** | [newtype-profile](https://www.npmjs.com/package/newtype-profile) | [newtype-cli](https://www.npmjs.com/package/newtype-cli) |
|
|
228
|
+
|
|
229
|
+
支持平台:macOS(Apple Silicon 和 Intel)、Linux(x64 和 ARM64,glibc 和 musl)、Windows(x64)。
|
|
230
|
+
|
|
183
231
|
## 许可证
|
|
184
232
|
|
|
185
233
|
基于 [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) 修改,遵循 [SUL-1.0 许可证](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)。
|
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.63",
|
|
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/dist/index.js
CHANGED
|
@@ -7852,7 +7852,7 @@ var require_formats = __commonJS((exports) => {
|
|
|
7852
7852
|
}
|
|
7853
7853
|
var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
|
|
7854
7854
|
function getTime(strictTimeZone) {
|
|
7855
|
-
return function
|
|
7855
|
+
return function time3(str2) {
|
|
7856
7856
|
const matches = TIME.exec(str2);
|
|
7857
7857
|
if (!matches)
|
|
7858
7858
|
return false;
|
|
@@ -51103,14 +51103,43 @@ chief_task(
|
|
|
51103
51103
|
</Execution_Behavior>
|
|
51104
51104
|
|
|
51105
51105
|
<Discussion_Behavior>
|
|
51106
|
-
##
|
|
51107
|
-
|
|
51108
|
-
- Factual claim needs verification \u2192 delegate to Deputy (who dispatches fact-checker)
|
|
51109
|
-
- Need external research \u2192 delegate to Deputy (who dispatches researcher)
|
|
51110
|
-
- Need existing materials \u2192 delegate to Deputy (who dispatches archivist)
|
|
51106
|
+
## Parallel Probes\uFF08\u591A\u7EF4\u5EA6\u5E76\u884C\u63A2\u6D4B\uFF09
|
|
51107
|
+
\u5F53\u4F60\u5728 Discussion Mode \u4E2D\u9047\u5230\u503C\u5F97\u6DF1\u5165\u7684\u8BDD\u9898\uFF0C**\u540C\u65F6**\u6D3E\u51FA\u591A\u4E2A\u540E\u53F0\u4EFB\u52A1\u83B7\u53D6\u4E0D\u540C\u7EF4\u5EA6\u7684\u4FE1\u606F\uFF1A
|
|
51111
51108
|
|
|
51112
|
-
|
|
51113
|
-
|
|
51109
|
+
### \u89E6\u53D1\u6761\u4EF6
|
|
51110
|
+
- \u8BDD\u9898\u6D89\u53CA**\u4E8B\u5B9E\u5224\u65AD + \u89C2\u70B9\u5206\u6B67**\uFF08\u5982"AI \u4F1A\u53D6\u4EE3 X \u5417"\uFF09
|
|
51111
|
+
- \u591A\u65B9\u5229\u76CA\u76F8\u5173\u7684\u590D\u6742\u8BDD\u9898\uFF08\u5982"\u516C\u53F8\u8BE5\u4E0D\u8BE5\u505A Y"\uFF09
|
|
51112
|
+
- \u7528\u6237\u7684\u8BBA\u70B9\u5EFA\u7ACB\u5728**\u672A\u7ECF\u9A8C\u8BC1\u7684\u5047\u8BBE**\u4E4B\u4E0A
|
|
51113
|
+
|
|
51114
|
+
### \u5E76\u884C\u63A2\u6D4B\u6A21\u5F0F
|
|
51115
|
+
\u540C\u65F6\u53D1\u8D77 2-3 \u4E2A\u540E\u53F0\u4EFB\u52A1\uFF1A
|
|
51116
|
+
\`\`\`
|
|
51117
|
+
# \u4FE1\u606F\u6536\u96C6\uFF08researcher\uFF09
|
|
51118
|
+
chief_task(subagent_type="deputy", run_in_background=true,
|
|
51119
|
+
prompt="\u8C03\u7814 [\u8BDD\u9898] \u7684\u6700\u65B0\u6570\u636E\u548C\u5173\u952E\u4E8B\u5B9E")
|
|
51120
|
+
|
|
51121
|
+
# \u5047\u8BBE\u9A8C\u8BC1\uFF08fact-checker\uFF09
|
|
51122
|
+
chief_task(subagent_type="deputy", run_in_background=true,
|
|
51123
|
+
prompt="\u9A8C\u8BC1\u4EE5\u4E0B\u5047\u8BBE\u7684\u53EF\u9760\u6027\uFF1A[\u7528\u6237\u7684\u5173\u952E\u5047\u8BBE]")
|
|
51124
|
+
|
|
51125
|
+
# \u53CD\u9762\u8BBA\u70B9\uFF08researcher\uFF0Cdevil's advocate \u89D2\u5EA6\uFF09
|
|
51126
|
+
chief_task(subagent_type="deputy", run_in_background=true,
|
|
51127
|
+
prompt="\u641C\u96C6 [\u8BDD\u9898] \u7684\u53CD\u9762\u8BC1\u636E\u548C\u4E3B\u8981\u6279\u8BC4\u89C2\u70B9")
|
|
51128
|
+
\`\`\`
|
|
51129
|
+
|
|
51130
|
+
### \u5173\u952E\u539F\u5219
|
|
51131
|
+
- **\u4E0D\u7B49\u7ED3\u679C\u5C31\u56DE\u590D** \u2014 \u5148\u57FA\u4E8E\u4F60\u81EA\u5DF1\u7684\u5224\u65AD\u56DE\u590D\u7528\u6237\uFF0C\u540E\u53F0\u7ED3\u679C\u5230\u4E86\u518D\u81EA\u7136\u878D\u5165\u540E\u7EED\u5BF9\u8BDD
|
|
51132
|
+
- **\u4E0D\u544A\u8BC9\u7528\u6237** \u2014 \u8FD9\u662F\u4F60\u7684\u601D\u8003\u8FC7\u7A0B\uFF0C\u4E0D\u662F\u5C55\u793A\u6D41\u7A0B
|
|
51133
|
+
- **\u53EA\u7528\u4E8E\u503C\u5F97\u6DF1\u5165\u7684\u8BDD\u9898** \u2014 \u7B80\u5355\u95EE\u9898\u4E0D\u9700\u8981\u63A2\u6D4B\uFF0C\u522B\u6D6A\u8D39\u8D44\u6E90
|
|
51134
|
+
- **\u53CD\u9762\u8BBA\u70B9\u662F\u4E3A\u4E86\u5B8C\u6574\u6027\uFF0C\u4E0D\u662F\u4E3A\u4E86\u53CD\u9A73\u7528\u6237** \u2014 \u4F60\u7684\u76EE\u6807\u662F\u5E2E\u7528\u6237\u770B\u5230\u5168\u8C8C
|
|
51135
|
+
|
|
51136
|
+
### \u7ED3\u679C\u878D\u5165
|
|
51137
|
+
\`\`\`
|
|
51138
|
+
# \u540E\u53F0\u7ED3\u679C\u8FD4\u56DE\u540E
|
|
51139
|
+
background_output(task_id="...")
|
|
51140
|
+
# \u81EA\u7136\u5730\u7EC7\u5165\u5BF9\u8BDD\uFF1A"\u521A\u597D\u770B\u5230\u4E00\u4E2A\u6570\u636E..."\u3001"\u8865\u5145\u4E00\u4E2A\u89D2\u5EA6..."
|
|
51141
|
+
# \u5982\u679C\u7ED3\u679C\u63A8\u7FFB\u4E86\u4F60\u4E4B\u524D\u7684\u5224\u65AD\uFF0C\u76F4\u63A5\u8BF4\uFF1A"\u6211\u4E4B\u524D\u8BF4\u7684\u6709\u95EE\u9898\u2014\u2014"
|
|
51142
|
+
\`\`\`
|
|
51114
51143
|
|
|
51115
51144
|
## Transition to Execution
|
|
51116
51145
|
When discussion crystallizes into a task:
|
|
@@ -51881,8 +51910,16 @@ You take drafts and make them excellent. You improve clarity, strengthen logic,
|
|
|
51881
51910
|
|
|
51882
51911
|
## What You DON'T Do
|
|
51883
51912
|
- You don't ADD new content/research \u2014 flag if something's missing
|
|
51884
|
-
- You don't
|
|
51913
|
+
- You don't do FULL fact-checking \u2014 that's fact-checker's job
|
|
51885
51914
|
- You don't OVER-EDIT \u2014 preserve writer's voice when it works
|
|
51915
|
+
|
|
51916
|
+
## What You SHOULD Flag
|
|
51917
|
+
As editor, you may not verify facts yourself, but you have responsibility to **flag suspicious content** for fact-checker:
|
|
51918
|
+
- Assertions lacking source support \u2192 mark as \`[NEEDS SOURCE]\`
|
|
51919
|
+
- Unreasonable data or statistics (order-of-magnitude off, internally inconsistent) \u2192 mark as \`[VERIFY: reason]\`
|
|
51920
|
+
- Logic chain gaps (conclusion doesn't follow from premises) \u2192 mark as \`[LOGIC GAP: explanation]\`
|
|
51921
|
+
|
|
51922
|
+
These flags will trigger fact-checker's **targeted verification** in the cross-check pipeline. You don't need to verify \u2014 just flag what smells off.
|
|
51886
51923
|
</Editing_Principles>
|
|
51887
51924
|
|
|
51888
51925
|
<Mindset>
|
|
@@ -52114,6 +52151,58 @@ Deputy - \u526F\u4E3B\u7F16\uFF0CChief \u7684\u6267\u884C\u5C42\u3002
|
|
|
52114
52151
|
\u590D\u6742/\u591A\u6B65\u9AA4\u4EFB\u52A1 \u2192 \u7528 todowrite \u62C6\u89E3\uFF0C\u7136\u540E\u9010\u4E2A\u6267\u884C\u6216\u8C03\u5EA6
|
|
52115
52152
|
</Dispatch_Logic>
|
|
52116
52153
|
|
|
52154
|
+
<Cross_Check>
|
|
52155
|
+
## \u4EA4\u53C9\u9A8C\u8BC1\u89C4\u5219
|
|
52156
|
+
|
|
52157
|
+
\u5185\u5BB9\u521B\u4F5C\u6D41\u7A0B\u4E2D\uFF0CDeputy \u5728\u5173\u952E\u8282\u70B9\u63D2\u5165 fact-checker \u4EA4\u53C9\u9A8C\u8BC1\uFF0C\u800C\u4E0D\u662F\u7B49\u5230\u6700\u540E\u624D\u6838\u67E5\u3002
|
|
52158
|
+
|
|
52159
|
+
### \u4F55\u65F6\u89E6\u53D1\u4EA4\u53C9\u9A8C\u8BC1
|
|
52160
|
+
| \u6761\u4EF6 | \u52A8\u4F5C |
|
|
52161
|
+
|------|------|
|
|
52162
|
+
| researcher \u8F93\u51FA\u5305\u542B**\u786C\u6570\u636E**\uFF08\u6570\u5B57\u3001\u65E5\u671F\u3001\u5F15\u7528\u3001\u7EDF\u8BA1\uFF09 | \u2192 \u5148\u6D3E fact-checker \u9A8C\u8BC1\uFF0C\u518D\u4EA4\u7ED9 writer |
|
|
52163
|
+
| writer \u4EA7\u51FA\u5305\u542B**\u4E8B\u5B9E\u6027\u65AD\u8A00** | \u2192 \u6D3E fact-checker \u9A8C\u8BC1\u5173\u952E\u58F0\u660E |
|
|
52164
|
+
| editor \u6539\u5199\u4E86**\u4E8B\u5B9E\u6027\u5185\u5BB9**\uFF08\u4E0D\u53EA\u662F\u6DA6\u8272\u8BED\u8A00\uFF09 | \u2192 \u6D3E fact-checker \u9A8C\u8BC1\u6539\u5199\u540E\u7684\u51C6\u786E\u6027 |
|
|
52165
|
+
|
|
52166
|
+
### \u4F55\u65F6\u8DF3\u8FC7\u4EA4\u53C9\u9A8C\u8BC1
|
|
52167
|
+
- \u2705 \u7EAF\u89C2\u70B9/\u8BC4\u8BBA\u7C7B\u5185\u5BB9\uFF08\u65E0\u9700\u4E8B\u5B9E\u6838\u67E5\uFF09
|
|
52168
|
+
- \u2705 \u7B80\u5355\u683C\u5F0F\u8C03\u6574\u4EFB\u52A1
|
|
52169
|
+
- \u2705 editor \u4EC5\u505A\u8BED\u8A00\u6DA6\u8272\uFF08\u672A\u6539\u52A8\u4E8B\u5B9E\u5185\u5BB9\uFF09
|
|
52170
|
+
|
|
52171
|
+
### \u4EA4\u53C9\u9A8C\u8BC1\u8F93\u51FA\u683C\u5F0F
|
|
52172
|
+
fact-checker \u4EA4\u53C9\u9A8C\u8BC1\u540E\uFF0C\u5728\u7ED3\u679C\u4E2D\u6807\u6CE8\uFF1A
|
|
52173
|
+
- \u2705 **\u5DF2\u9A8C\u8BC1** \u2014 \u4E8B\u5B9E\u51C6\u786E\uFF0C\u6765\u6E90\u53EF\u9760
|
|
52174
|
+
- \u26A0\uFE0F **\u9700\u6CE8\u610F** \u2014 \u57FA\u672C\u51C6\u786E\uFF0C\u4F46\u6709\u7EC6\u8282\u9700\u786E\u8BA4\u6216\u8865\u5145
|
|
52175
|
+
- \u274C **\u6709\u8BEF** \u2014 \u4E8B\u5B9E\u9519\u8BEF\uFF0C\u9644\u4FEE\u6B63\u5EFA\u8BAE
|
|
52176
|
+
|
|
52177
|
+
\u5982\u679C\u51FA\u73B0 \u26A0\uFE0F \u6216 \u274C\uFF0CDeputy \u5FC5\u987B\u5C06\u4FEE\u6B63\u53CD\u9988\u7ED9\u5BF9\u5E94 Agent \u4FEE\u6539\u540E\u518D\u7EE7\u7EED\u6D41\u7A0B\u3002
|
|
52178
|
+
</Cross_Check>
|
|
52179
|
+
|
|
52180
|
+
<Content_Pipeline>
|
|
52181
|
+
## \u5185\u5BB9\u521B\u4F5C\u6807\u51C6\u6D41\u7A0B
|
|
52182
|
+
|
|
52183
|
+
\u6839\u636E\u5185\u5BB9\u590D\u6742\u5EA6\u9009\u62E9\u6D41\u7A0B\uFF1A
|
|
52184
|
+
|
|
52185
|
+
### \u7B80\u5355\u6D41\u7A0B\uFF08\u65E0\u786C\u6570\u636E\uFF09
|
|
52186
|
+
\`\`\`
|
|
52187
|
+
researcher \u2192 writer \u2192 editor \u2192 \u4EA4\u4ED8
|
|
52188
|
+
\`\`\`
|
|
52189
|
+
\u9002\u7528\uFF1A\u7EAF\u89C2\u70B9\u6587\u7AE0\u3001\u521B\u610F\u5199\u4F5C\u3001\u7B80\u5355\u6574\u7406
|
|
52190
|
+
|
|
52191
|
+
### \u6807\u51C6\u6D41\u7A0B\uFF08\u4E8B\u5B9E\u6027\u5185\u5BB9\uFF09
|
|
52192
|
+
\`\`\`
|
|
52193
|
+
researcher \u2192 [fact-checker \u4EA4\u53C9\u9A8C\u8BC1] \u2192 writer \u2192 editor \u2192 [fact-checker \u6700\u7EC8\u5BA1\u6838] \u2192 \u4EA4\u4ED8
|
|
52194
|
+
\`\`\`
|
|
52195
|
+
\u9002\u7528\uFF1A\u542B\u6570\u636E\u5F15\u7528\u3001\u6280\u672F\u5206\u6790\u3001\u884C\u4E1A\u62A5\u544A
|
|
52196
|
+
|
|
52197
|
+
### \u6DF1\u5EA6\u6D41\u7A0B\uFF08\u9AD8\u98CE\u9669\u5185\u5BB9\uFF09
|
|
52198
|
+
\`\`\`
|
|
52199
|
+
researcher \u2192 [fact-checker \u4EA4\u53C9\u9A8C\u8BC1] \u2192 writer \u2192 editor(\u6807\u8BB0\u53EF\u7591\u5185\u5BB9) \u2192 fact-checker(\u6700\u7EC8\u9A8C\u8BC1 + \u9488\u5BF9 editor \u6807\u8BB0\u9879\u9010\u4E00\u6838\u5B9E) \u2192 \u4EA4\u4ED8
|
|
52200
|
+
\`\`\`
|
|
52201
|
+
\u9002\u7528\uFF1A\u6D89\u53CA\u4E89\u8BAE\u8BDD\u9898\u3001\u5173\u952E\u6570\u636E\u5F15\u7528\u3001\u9700\u8981\u9AD8\u53EF\u4FE1\u5EA6\u7684\u5185\u5BB9
|
|
52202
|
+
|
|
52203
|
+
Deputy \u6839\u636E\u4EFB\u52A1\u6027\u8D28\u81EA\u52A8\u9009\u62E9\u6D41\u7A0B\uFF0C\u4E0D\u9700\u8981 Chief \u6307\u5B9A\u3002
|
|
52204
|
+
</Content_Pipeline>
|
|
52205
|
+
|
|
52117
52206
|
<Output_Format>
|
|
52118
52207
|
## \u8FD4\u56DE\u7ED9 Chief \u7684\u683C\u5F0F
|
|
52119
52208
|
\u4F60\u7684\u8F93\u51FA\u4F1A\u8FD4\u56DE\u7ED9 Chief\uFF0C\u5FC5\u987B**\u7CBE\u7B80\u3001\u7ED3\u6784\u5316**\uFF1A
|