@shawnstack/quickforge 1.3.19 → 1.3.20
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 +10 -10
- package/package.json +1 -1
- package/server/subagents.mjs +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 速构 QuickForge
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img alt="Version" src="https://img.shields.io/badge/version-1.3.
|
|
4
|
+
<img alt="Version" src="https://img.shields.io/badge/version-1.3.20-blue" />
|
|
5
5
|
<img alt="License" src="https://img.shields.io/badge/license-MIT-green" />
|
|
6
6
|
<img alt="Node" src="https://img.shields.io/badge/node-%3E%3D20-brightgreen" />
|
|
7
7
|
<img alt="React" src="https://img.shields.io/badge/react-19-61DAFB?logo=react" />
|
|
@@ -65,7 +65,7 @@ QuickForge 的工具能力很直接,因此也需要谨慎使用:
|
|
|
65
65
|
#### 从 npm 安装
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npm install -g @shawnstack/quickforge@1.3.
|
|
68
|
+
npm install -g @shawnstack/quickforge@1.3.20
|
|
69
69
|
qf
|
|
70
70
|
|
|
71
71
|
# CLI 工具
|
|
@@ -79,17 +79,17 @@ qf update
|
|
|
79
79
|
当前版本的离线包:
|
|
80
80
|
|
|
81
81
|
```text
|
|
82
|
-
package-offline/shawnstack-quickforge-1.3.
|
|
82
|
+
package-offline/shawnstack-quickforge-1.3.20.tgz
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
在安装了 Node.js 20+ 和 npm 的机器上执行:
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
npm install -g ./package-offline/shawnstack-quickforge-1.3.
|
|
88
|
+
npm install -g ./package-offline/shawnstack-quickforge-1.3.20.tgz
|
|
89
89
|
qf
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
-
该包由 `v1.3.
|
|
92
|
+
该包由 `v1.3.20` 标签生成,包含离线安装所需的运行时依赖。
|
|
93
93
|
|
|
94
94
|
### 本地开发
|
|
95
95
|
|
|
@@ -228,7 +228,7 @@ QuickForge intentionally exposes powerful local capabilities, so the boundaries
|
|
|
228
228
|
#### npm
|
|
229
229
|
|
|
230
230
|
```bash
|
|
231
|
-
npm install -g @shawnstack/quickforge@1.3.
|
|
231
|
+
npm install -g @shawnstack/quickforge@1.3.20
|
|
232
232
|
qf
|
|
233
233
|
|
|
234
234
|
# CLI utilities
|
|
@@ -239,20 +239,20 @@ qf update
|
|
|
239
239
|
|
|
240
240
|
#### Offline tarball
|
|
241
241
|
|
|
242
|
-
The offline release package for `v1.3.
|
|
242
|
+
The offline release package for `v1.3.20` is:
|
|
243
243
|
|
|
244
244
|
```text
|
|
245
|
-
package-offline/shawnstack-quickforge-1.3.
|
|
245
|
+
package-offline/shawnstack-quickforge-1.3.20.tgz
|
|
246
246
|
```
|
|
247
247
|
|
|
248
248
|
Install it on a machine with Node.js 20+ and npm:
|
|
249
249
|
|
|
250
250
|
```bash
|
|
251
|
-
npm install -g ./package-offline/shawnstack-quickforge-1.3.
|
|
251
|
+
npm install -g ./package-offline/shawnstack-quickforge-1.3.20.tgz
|
|
252
252
|
qf
|
|
253
253
|
```
|
|
254
254
|
|
|
255
|
-
The package was generated from tag `v1.3.
|
|
255
|
+
The package was generated from tag `v1.3.20` and includes bundled runtime dependencies for offline installation.
|
|
256
256
|
|
|
257
257
|
### Local development
|
|
258
258
|
|
package/package.json
CHANGED
package/server/subagents.mjs
CHANGED
|
@@ -25,7 +25,7 @@ export const subagentDefinitions = [
|
|
|
25
25
|
allowedTools: ['read_file', 'grep_files', 'write_file', 'edit_file', 'run_command'],
|
|
26
26
|
allowFileMutations: true,
|
|
27
27
|
maxRuntimeMs: 30 * 60 * 1000,
|
|
28
|
-
maxToolCalls:
|
|
28
|
+
maxToolCalls: 300,
|
|
29
29
|
systemPrompt: `You are General, a general-purpose subagent for complex research and multi-step implementation tasks. You may inspect, edit, write files, and run commands using the built-in workspace tools when needed. You do not have MCP tools or Agent Skills. Make focused, minimal changes that satisfy the delegated task, and verify your changes when appropriate.`,
|
|
30
30
|
},
|
|
31
31
|
{
|
|
@@ -36,7 +36,7 @@ export const subagentDefinitions = [
|
|
|
36
36
|
allowedTools: ['read_file', 'grep_files'],
|
|
37
37
|
allowFileMutations: false,
|
|
38
38
|
maxRuntimeMs: 30 * 60 * 1000,
|
|
39
|
-
maxToolCalls:
|
|
39
|
+
maxToolCalls: 300,
|
|
40
40
|
systemPrompt: `You are Explore, a fast read-only exploration subagent. Use read_file and grep_files to locate relevant files, search keywords, identify patterns, and answer focused questions. You cannot modify files or run commands.`,
|
|
41
41
|
},
|
|
42
42
|
]
|