@fideliosai/adapter-hermes-local 0.0.15 → 0.0.17
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/package.json +2 -2
- package/src/server/execute.js +3 -0
- package/src/shared/constants.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fideliosai/adapter-hermes-local",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Hermes AI agent adapter for FideliOS",
|
|
6
6
|
"homepage": "https://github.com/fideliosai/fidelios",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"src"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@fideliosai/adapter-utils": "0.0.
|
|
26
|
+
"@fideliosai/adapter-utils": "0.0.17",
|
|
27
27
|
"picocolors": "^1.1.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/src/server/execute.js
CHANGED
|
@@ -277,6 +277,9 @@ export async function execute(ctx) {
|
|
|
277
277
|
args.push("--checkpoints");
|
|
278
278
|
if (cfgBoolean(config.verbose) === true)
|
|
279
279
|
args.push("-v");
|
|
280
|
+
// Skip dangerous-command security scanner for unattended FideliOS agent runs.
|
|
281
|
+
// Without this, Hermes blocks curl|python pipes used in FideliOS workflow.
|
|
282
|
+
args.push("--yolo");
|
|
280
283
|
// Tag sessions as "tool" source so they don't clutter the user's session history.
|
|
281
284
|
// Requires hermes-agent >= PR #3255 (feat/session-source-tag).
|
|
282
285
|
args.push("--source", "tool");
|
package/src/shared/constants.js
CHANGED
|
@@ -8,7 +8,7 @@ export const ADAPTER_LABEL = "Hermes Agent";
|
|
|
8
8
|
/** Default CLI binary name. */
|
|
9
9
|
export const HERMES_CLI = "hermes";
|
|
10
10
|
/** Default timeout for a single execution run (seconds). */
|
|
11
|
-
export const DEFAULT_TIMEOUT_SEC =
|
|
11
|
+
export const DEFAULT_TIMEOUT_SEC = 600;
|
|
12
12
|
/** Grace period after SIGTERM before SIGKILL (seconds). */
|
|
13
13
|
export const DEFAULT_GRACE_SEC = 10;
|
|
14
14
|
/** Default model to use if none specified. */
|