wolverine-ai 3.9.2 → 3.9.3
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wolverine-ai",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.3",
|
|
4
4
|
"description": "Self-healing Node.js server framework powered by AI. Catches crashes, diagnoses errors, generates fixes, verifies, and restarts — automatically.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -331,7 +331,7 @@ class AgentEngine {
|
|
|
331
331
|
this.logger = options.logger;
|
|
332
332
|
this.cwd = options.cwd || process.cwd();
|
|
333
333
|
this.mcp = options.mcp || null; // McpRegistry for external tools
|
|
334
|
-
this.category = options.category || "
|
|
334
|
+
this.category = options.category || "tool"; // Agent uses tools = tool category by default
|
|
335
335
|
|
|
336
336
|
// Budget constraints (claw-code: QueryEngineConfig)
|
|
337
337
|
this.maxTurns = options.maxTurns || 15;
|
package/src/agent/sub-agents.js
CHANGED
|
@@ -97,9 +97,9 @@ async function spawnAgent(type, task, options = {}) {
|
|
|
97
97
|
});
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
// Map sub-agent type to analytics category
|
|
101
|
-
//
|
|
102
|
-
const categoryMap = { explore: "
|
|
100
|
+
// Map sub-agent type to analytics category by ACTIVITY (what the AI is doing):
|
|
101
|
+
// All agents that use tools = "tool", classification/planning = "classifier", research = "research", security = "audit"
|
|
102
|
+
const categoryMap = { explore: "tool", plan: "classifier", verify: "tool", research: "research", fix: "tool", database: "tool", security: "audit" };
|
|
103
103
|
const agent = new AgentEngine({
|
|
104
104
|
sandbox: options.sandbox,
|
|
105
105
|
logger: options.logger,
|
package/src/core/wolverine.js
CHANGED
|
@@ -367,7 +367,7 @@ async function _healImpl({ stderr, cwd, sandbox, notifier, rateLimiter, backupMa
|
|
|
367
367
|
sandbox, logger, cwd, mcp,
|
|
368
368
|
maxTurns: agentMaxTurns,
|
|
369
369
|
maxTokens: tokenBudget.agent,
|
|
370
|
-
category: "
|
|
370
|
+
category: "tool", // Agent uses tools (read_file, write_file, bash_exec) = tool category
|
|
371
371
|
});
|
|
372
372
|
|
|
373
373
|
const agentResult = await agent.run({
|