@link-assistant/hive-mind 0.40.3 → 0.41.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 0.41.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5d193ef: Add `--prompt-general-purpose-sub-agent` flag for Claude tool to enable general-purpose sub-agent usage prompting when processing large tasks with multiple files or folders
|
|
8
|
+
|
|
3
9
|
## 0.40.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -144,7 +144,7 @@ Initial research.
|
|
|
144
144
|
- When you are fixing a bug, please make sure you first find the actual root cause, do as many experiments as needed.
|
|
145
145
|
- When you are fixing a bug and code does not have enough tracing/logs, add them and make sure they stay in the code, but are switched off by default.
|
|
146
146
|
- When you need latest comments on pull request (sorted newest first), use appropriate GitHub API commands.
|
|
147
|
-
- When you need latest comments on issue (sorted newest first), use appropriate GitHub API commands.
|
|
147
|
+
- When you need latest comments on issue (sorted newest first), use appropriate GitHub API commands.${argv && argv.promptGeneralPurposeSubAgent ? '\n - When the task is big and requires processing of lots of files or folders, you should use the `general-purpose` sub agents to delegate work. Each separate file or folder can be delegated to a sub agent for more efficient processing.' : ''}
|
|
148
148
|
|
|
149
149
|
Solution development and testing.
|
|
150
150
|
- When issue is solvable, implement code with tests.
|
package/src/hive.config.lib.mjs
CHANGED
|
@@ -246,6 +246,11 @@ export const createYargsConfig = (yargsInstance) => {
|
|
|
246
246
|
description: 'Encourage Claude to use Explore sub-agent for codebase exploration. Only supported for --tool claude.',
|
|
247
247
|
default: false
|
|
248
248
|
})
|
|
249
|
+
.option('prompt-general-purpose-sub-agent', {
|
|
250
|
+
type: 'boolean',
|
|
251
|
+
description: 'Prompt AI to use general-purpose sub agents for processing large tasks with multiple files/folders. Only supported for --tool claude.',
|
|
252
|
+
default: false
|
|
253
|
+
})
|
|
249
254
|
.parserConfiguration({
|
|
250
255
|
'boolean-negation': true,
|
|
251
256
|
'strip-dashed': false,
|
package/src/solve.config.lib.mjs
CHANGED
|
@@ -250,6 +250,11 @@ export const createYargsConfig = (yargsInstance) => {
|
|
|
250
250
|
description: 'Encourage Claude to use Explore sub-agent for codebase exploration. Only supported for --tool claude.',
|
|
251
251
|
default: false
|
|
252
252
|
})
|
|
253
|
+
.option('prompt-general-purpose-sub-agent', {
|
|
254
|
+
type: 'boolean',
|
|
255
|
+
description: 'Prompt AI to use general-purpose sub agents for processing large tasks with multiple files/folders. Only supported for --tool claude.',
|
|
256
|
+
default: false
|
|
257
|
+
})
|
|
253
258
|
.parserConfiguration({
|
|
254
259
|
'boolean-negation': true
|
|
255
260
|
})
|