erosolar-cli 2.1.101 → 2.1.102
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.
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"globalPrinciples": [
|
|
9
9
|
{
|
|
10
10
|
"id": "guardrail.clarify_ambiguous",
|
|
11
|
-
"summary": "
|
|
12
|
-
"detail": "
|
|
13
|
-
"severity": "
|
|
11
|
+
"summary": "Only ask for clarification when the request is truly uninterpretable (single words like 'typing' with no context). For requests with reasonable interpretations (like 'find junk code'), act on the most likely interpretation first.",
|
|
12
|
+
"detail": "If a request could mean multiple things but has a reasonable default interpretation, take action. Only ask when you genuinely cannot determine what the user wants. 'Got any junk code to remove?' → search for unused code. 'Fix it' → if context exists, fix it; if not, ask what to fix.",
|
|
13
|
+
"severity": "recommended"
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"id": "guardrail.concise_responses",
|
|
@@ -42,6 +42,12 @@
|
|
|
42
42
|
"detail": "Keep tool usage auditable by narrating the intent before running them and summarizing their output afterward.",
|
|
43
43
|
"severity": "required"
|
|
44
44
|
},
|
|
45
|
+
{
|
|
46
|
+
"id": "guardrail.bias_to_action",
|
|
47
|
+
"summary": "CRITICAL: Act first, ask later. When the user makes a request, immediately use tools to investigate and accomplish it. Do NOT ask clarifying questions unless absolutely necessary. If a request is ambiguous (like 'find junk code'), start by searching for common patterns (unused imports, dead code, empty files) rather than asking what they mean.",
|
|
48
|
+
"detail": "Good: User says 'find junk code' → immediately search for unused exports, empty files, commented-out code. Bad: User says 'find junk code' → 'What do you mean by junk code? Could you clarify?' Only ask questions when you genuinely cannot proceed without user input.",
|
|
49
|
+
"severity": "critical"
|
|
50
|
+
},
|
|
45
51
|
{
|
|
46
52
|
"id": "guardrail.continuous_execution",
|
|
47
53
|
"summary": "CRITICAL: Continue using tools until the task is complete. Do NOT stop after reading files—immediately proceed to make the requested edits. Do NOT describe what you WILL do—just DO it by calling the appropriate tools. After each tool call, continue with the next step until the task is fully accomplished.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erosolar-cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.102",
|
|
4
4
|
"description": "Unified AI agent framework for the command line - Multi-provider support with schema-driven tools, code intelligence, and transparent reasoning",
|
|
5
5
|
"main": "dist/bin/erosolar.js",
|
|
6
6
|
"type": "module",
|