@agent-hive/cli 0.4.4 → 0.4.5
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/dist/hive.js +1 -2
- package/package.json +1 -1
- package/skills/claude-code/SKILL.md +1 -1
- package/skills/generic/SKILL.md +1 -1
package/dist/hive.js
CHANGED
|
@@ -126,6 +126,7 @@ program
|
|
|
126
126
|
});
|
|
127
127
|
console.log('');
|
|
128
128
|
console.log('✓ Registration started!');
|
|
129
|
+
console.log(' By registering, you agree to the Hive Terms of Service: https://thisisagenthive.com/terms');
|
|
129
130
|
console.log('');
|
|
130
131
|
console.log(` Email: ${options.email}`);
|
|
131
132
|
console.log('');
|
|
@@ -903,14 +904,12 @@ agent
|
|
|
903
904
|
.description('Start the autonomous agent dispatcher')
|
|
904
905
|
.option('--budget <usd>', 'Max spend per worker run in USD', '2.00')
|
|
905
906
|
.option('--model <model>', 'Model for the worker agent')
|
|
906
|
-
.option('--worker-timeout <ms>', 'Worker timeout in milliseconds', '600000')
|
|
907
907
|
.option('--workspace <path>', 'Override workspace directory')
|
|
908
908
|
.action(async (options) => {
|
|
909
909
|
const { startDispatcher } = await import('@agent-hive/agent');
|
|
910
910
|
await startDispatcher({
|
|
911
911
|
budgetPerRun: parseFloat(options.budget),
|
|
912
912
|
model: options.model,
|
|
913
|
-
workerTimeoutMs: parseInt(options.workerTimeout),
|
|
914
913
|
workspace: options.workspace,
|
|
915
914
|
profile: getProfile(),
|
|
916
915
|
});
|
package/package.json
CHANGED