strix-agent 0.1.12__py3-none-any.whl → 0.1.13__py3-none-any.whl
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.
- strix/agents/StrixAgent/system_prompt.jinja +8 -0
- strix/tools/agents_graph/agents_graph_actions.py +3 -0
- strix/tools/terminal/terminal_actions_schema.xml +5 -4
- {strix_agent-0.1.12.dist-info → strix_agent-0.1.13.dist-info}/METADATA +1 -1
- {strix_agent-0.1.12.dist-info → strix_agent-0.1.13.dist-info}/RECORD +8 -8
- {strix_agent-0.1.12.dist-info → strix_agent-0.1.13.dist-info}/LICENSE +0 -0
- {strix_agent-0.1.12.dist-info → strix_agent-0.1.13.dist-info}/WHEEL +0 -0
- {strix_agent-0.1.12.dist-info → strix_agent-0.1.13.dist-info}/entry_points.txt +0 -0
@@ -24,6 +24,8 @@ USER INTERACTION:
|
|
24
24
|
- NEVER be redundant or repeat information - say it once and move on
|
25
25
|
- If you need user input, IMMEDIATELY call wait_for_message tool
|
26
26
|
- Never ask questions without calling wait_for_message in the same response
|
27
|
+
- Minimize user messaging: avoid redundancy and repetition; consolidate updates into a single concise message
|
28
|
+
- If there is nothing to execute and no user query to answer any more: do NOT send filler/repetitive text — either call wait_for_message or finish your work (subagents: agent_finish; root: finish_scan)
|
27
29
|
</communication_rules>
|
28
30
|
|
29
31
|
<execution_guidelines>
|
@@ -114,6 +116,8 @@ VALIDATION REQUIREMENTS:
|
|
114
116
|
- Independent verification through subagent
|
115
117
|
- Document complete attack chain
|
116
118
|
- Keep going until you find something that matters
|
119
|
+
- A vulnerability is ONLY considered reported when a reporting agent uses create_vulnerability_report with full details. Mentions in agent_finish, finish_scan, or messages to the user are NOT sufficient
|
120
|
+
- Do NOT patch/fix before reporting: first create the vulnerability report via create_vulnerability_report (by the reporting agent). Only after reporting is completed should fixing/patching proceed
|
117
121
|
</execution_guidelines>
|
118
122
|
|
119
123
|
<vulnerability_focus>
|
@@ -193,6 +197,10 @@ SIMPLE WORKFLOW RULES:
|
|
193
197
|
4. **MULTIPLE VULNS = MULTIPLE CHAINS** - Each vulnerability finding gets its own validation chain
|
194
198
|
5. **CREATE AGENTS AS YOU GO** - Don't create all agents at start, create them when you discover new attack surfaces
|
195
199
|
6. **ONE JOB PER AGENT** - Each agent has ONE specific task only
|
200
|
+
7. **VIEW THE AGENT GRAPH BEFORE ACTING** - Always call view_agent_graph before creating or messaging agents to avoid duplicates and to target correctly
|
201
|
+
8. **SCALE AGENT COUNT TO SCOPE** - Number of agents should correlate with target size and difficulty; avoid both agent sprawl and under-staffing
|
202
|
+
9. **CHILDREN ARE MEANINGFUL SUBTASKS** - Child agents must be focused subtasks that directly support their parent's task; do NOT create unrelated children
|
203
|
+
10. **UNIQUENESS** - Do not create two agents with the same task; ensure clear, non-overlapping responsibilities for every agent
|
196
204
|
|
197
205
|
WHEN TO CREATE NEW AGENTS:
|
198
206
|
|
@@ -53,6 +53,9 @@ def _run_agent_in_thread(
|
|
53
53
|
<instructions>
|
54
54
|
- You have {context_status}
|
55
55
|
- Inherited context is for BACKGROUND ONLY - don't continue parent's work
|
56
|
+
- Maintain strict self-identity: never speak as or for your parent
|
57
|
+
- Do not merge your conversation with the parent's;
|
58
|
+
- Do not claim parent's actions or messages as your own
|
56
59
|
- Focus EXCLUSIVELY on your delegated task above
|
57
60
|
- Work independently with your own approach
|
58
61
|
- Use agent_finish when complete to report back to parent
|
@@ -25,7 +25,7 @@
|
|
25
25
|
Use is_input=true for regular text input to running processes.</description>
|
26
26
|
</parameter>
|
27
27
|
<parameter name="timeout" type="number" required="false">
|
28
|
-
<description>Optional timeout in seconds for command execution. If not provided, uses default
|
28
|
+
<description>Optional timeout in seconds for command execution. CAPPED AT 60 SECONDS. If not provided, uses default wait (30s). On timeout, the command keeps running and the tool returns with status 'running'. For truly long-running tasks, prefer backgrounding with '&'.</description>
|
29
29
|
</parameter>
|
30
30
|
<parameter name="terminal_id" type="string" required="false">
|
31
31
|
<description>Identifier for the terminal session. Defaults to "default". Use different IDs to manage multiple concurrent terminal sessions.</description>
|
@@ -63,14 +63,15 @@
|
|
63
63
|
3. LONG-RUNNING COMMANDS:
|
64
64
|
- Commands never get killed automatically - they keep running in background
|
65
65
|
- Set timeout to control how long to wait for output before returning
|
66
|
+
- For daemons/servers or very long jobs, append '&' to run in background
|
66
67
|
- Use empty command "" to check progress (waits for timeout period to collect output)
|
67
68
|
- Use C-c, C-d, C-z to interrupt processes (works automatically, no is_input needed)
|
68
69
|
|
69
70
|
4. TIMEOUT HANDLING:
|
70
|
-
- Timeout controls how long to wait before returning current output
|
71
|
+
- Timeout controls how long to wait before returning current output (max 60s cap)
|
71
72
|
- Commands are NEVER killed on timeout - they keep running
|
72
73
|
- After timeout, you can run new commands or check progress with empty command
|
73
|
-
-
|
74
|
+
- On timeout, status is 'running'; on completion, status is 'completed'
|
74
75
|
|
75
76
|
5. MULTIPLE TERMINALS: Use different terminal_id values to run multiple concurrent sessions.
|
76
77
|
|
@@ -97,7 +98,7 @@
|
|
97
98
|
# Run a command with custom timeout
|
98
99
|
<function=terminal_execute>
|
99
100
|
<parameter=command>npm install</parameter>
|
100
|
-
<parameter=timeout>
|
101
|
+
<parameter=timeout>60</parameter>
|
101
102
|
</function>
|
102
103
|
|
103
104
|
# Check progress of running command (waits for timeout to collect output)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
strix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
strix/agents/StrixAgent/__init__.py,sha256=VORJn9aPTJyNn2-QAv6DbTxO1P9wBQoSZlAw-YuTJhQ,63
|
3
3
|
strix/agents/StrixAgent/strix_agent.py,sha256=T0B2rcPe_YUE6Fv-B9Hl9C-xHTuvDL5whGEArqFRXVk,2676
|
4
|
-
strix/agents/StrixAgent/system_prompt.jinja,sha256=
|
4
|
+
strix/agents/StrixAgent/system_prompt.jinja,sha256=unDXkVFE3He8T6L5CKud_hM-uHisckrTPK3CDThSLrQ,18917
|
5
5
|
strix/agents/__init__.py,sha256=F64zhlv4XZIvYJSL9eSSuKUsIVGPLG3ycpQBhZwvE6A,168
|
6
6
|
strix/agents/base_agent.py,sha256=YMluoaFLbUnYDm0pOrDJ3zckZOSzvpzXhBDOGGU_YVg,14452
|
7
7
|
strix/agents/state.py,sha256=ORN2VyLOcQrppiuGcelD0C-1-uhxc6TS4AEqdbK7LZg,4858
|
@@ -50,7 +50,7 @@ strix/runtime/runtime.py,sha256=yUVLl9BTQChQgaba2jJCrEmHeJFDE9N0sF9M_XjqEbg,692
|
|
50
50
|
strix/runtime/tool_server.py,sha256=pKI_cL1aSEFC8b6Dqaz9bRfh0LvcCKwb6ZCN-v6OYls,6618
|
51
51
|
strix/tools/__init__.py,sha256=_uTsOImNlJ-q5FFuQBTIYpIAgTETNI7Pm2hkaLE-Z5Y,1743
|
52
52
|
strix/tools/agents_graph/__init__.py,sha256=FLJ2kGxXICY2pRKrC0sgIc3w3KhZo7VID7hbwYcgBfM,278
|
53
|
-
strix/tools/agents_graph/agents_graph_actions.py,sha256=
|
53
|
+
strix/tools/agents_graph/agents_graph_actions.py,sha256=7YSUQq7UIyVcV1GCKlYvNvfD0eiLQ5B9BKd67sRfKcY,20573
|
54
54
|
strix/tools/agents_graph/agents_graph_actions_schema.xml,sha256=KbDu8Ds2RWyy6b4iF0WY83T7wL9lU9mJ16midNiT_uI,12645
|
55
55
|
strix/tools/argument_parser.py,sha256=FA9LY0UBtMqDRJ9yHHUzQCbGmpTQvo4xTtLiNRYG2FU,3861
|
56
56
|
strix/tools/browser/__init__.py,sha256=7azA1td3CfwCVqMYIIzT0vGM0-JUNq3sZBYB0QnwFDk,75
|
@@ -83,7 +83,7 @@ strix/tools/reporting/reporting_actions.py,sha256=RIp3u3pmlRXx_uCr2Kc8R7yYiSe3pz
|
|
83
83
|
strix/tools/reporting/reporting_actions_schema.xml,sha256=y_g0iuyBuCh79fvA0ri8fOPlXY7uUd-P-mdzXLUyIJg,1629
|
84
84
|
strix/tools/terminal/__init__.py,sha256=xvflcrbLQ31o_K3cWFsIhTm7gxY5JF0nVnhOIadwFV0,80
|
85
85
|
strix/tools/terminal/terminal_actions.py,sha256=9BGsK7Io7PyW8YGpJfXHeJTP3AVqBAgaKZl-1YziF8Y,888
|
86
|
-
strix/tools/terminal/terminal_actions_schema.xml,sha256=
|
86
|
+
strix/tools/terminal/terminal_actions_schema.xml,sha256=L7dzjvKNZpJA0qDGp1gCBuwXiY4mtjOq7T2tNDmUPA4,7257
|
87
87
|
strix/tools/terminal/terminal_manager.py,sha256=cTWosczkMoSRSjQ-xPR56D5cIYcylA3NAZb4FSi32Ko,4838
|
88
88
|
strix/tools/terminal/terminal_session.py,sha256=peHQrYCty-KHYECbT8jOww06ayGUK_rAcnTlYIfQe00,16008
|
89
89
|
strix/tools/thinking/__init__.py,sha256=-v4fG4fyFkqsTSWspDtCT6IRlyRM8zeUwEM-kscaxDE,58
|
@@ -92,8 +92,8 @@ strix/tools/thinking/thinking_actions_schema.xml,sha256=otD4dOhQx4uyudLnjA_HIP6E
|
|
92
92
|
strix/tools/web_search/__init__.py,sha256=m5PCHXqeNVraLRLNIbh54Z2N4Y_75d-ftqwyq3dbCd0,70
|
93
93
|
strix/tools/web_search/web_search_actions.py,sha256=LRS3AjGO4JLIyu_B6-ogfWOsnENwqrrCa8Rz0vxuuGQ,3107
|
94
94
|
strix/tools/web_search/web_search_actions_schema.xml,sha256=Ihc3Gv4LaPI_MzBbwZOt3y4pwg9xmtl8KfPNvFihEP4,4805
|
95
|
-
strix_agent-0.1.
|
96
|
-
strix_agent-0.1.
|
97
|
-
strix_agent-0.1.
|
98
|
-
strix_agent-0.1.
|
99
|
-
strix_agent-0.1.
|
95
|
+
strix_agent-0.1.13.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
|
96
|
+
strix_agent-0.1.13.dist-info/METADATA,sha256=eJHyy1olgY1HnDDCBhrzp7MBfJ11OBSIeWMNvCuFgPw,6139
|
97
|
+
strix_agent-0.1.13.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
98
|
+
strix_agent-0.1.13.dist-info/entry_points.txt,sha256=sswIgnkzSVSzQ3Rd046g7mhIPQaj_7RYlXgU_bQelF0,45
|
99
|
+
strix_agent-0.1.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|