strix-agent 0.1.19__py3-none-any.whl → 0.3.1__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.

Potentially problematic release.


This version of strix-agent might be problematic. Click here for more details.

Files changed (41) hide show
  1. strix/agents/StrixAgent/strix_agent.py +49 -40
  2. strix/agents/StrixAgent/system_prompt.jinja +15 -0
  3. strix/agents/base_agent.py +71 -11
  4. strix/agents/state.py +5 -1
  5. strix/interface/cli.py +171 -0
  6. strix/interface/main.py +482 -0
  7. strix/{cli → interface}/tool_components/scan_info_renderer.py +17 -12
  8. strix/{cli/app.py → interface/tui.py} +15 -16
  9. strix/interface/utils.py +435 -0
  10. strix/runtime/docker_runtime.py +28 -7
  11. strix/runtime/runtime.py +4 -1
  12. strix/telemetry/__init__.py +4 -0
  13. strix/{cli → telemetry}/tracer.py +21 -9
  14. strix/tools/agents_graph/agents_graph_actions.py +13 -9
  15. strix/tools/executor.py +1 -1
  16. strix/tools/finish/finish_actions.py +1 -1
  17. strix/tools/reporting/reporting_actions.py +1 -1
  18. {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/METADATA +45 -4
  19. {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/RECORD +39 -36
  20. strix_agent-0.3.1.dist-info/entry_points.txt +3 -0
  21. strix/cli/main.py +0 -703
  22. strix_agent-0.1.19.dist-info/entry_points.txt +0 -3
  23. /strix/{cli → interface}/__init__.py +0 -0
  24. /strix/{cli/assets/cli.tcss → interface/assets/tui_styles.tcss} +0 -0
  25. /strix/{cli → interface}/tool_components/__init__.py +0 -0
  26. /strix/{cli → interface}/tool_components/agents_graph_renderer.py +0 -0
  27. /strix/{cli → interface}/tool_components/base_renderer.py +0 -0
  28. /strix/{cli → interface}/tool_components/browser_renderer.py +0 -0
  29. /strix/{cli → interface}/tool_components/file_edit_renderer.py +0 -0
  30. /strix/{cli → interface}/tool_components/finish_renderer.py +0 -0
  31. /strix/{cli → interface}/tool_components/notes_renderer.py +0 -0
  32. /strix/{cli → interface}/tool_components/proxy_renderer.py +0 -0
  33. /strix/{cli → interface}/tool_components/python_renderer.py +0 -0
  34. /strix/{cli → interface}/tool_components/registry.py +0 -0
  35. /strix/{cli → interface}/tool_components/reporting_renderer.py +0 -0
  36. /strix/{cli → interface}/tool_components/terminal_renderer.py +0 -0
  37. /strix/{cli → interface}/tool_components/thinking_renderer.py +0 -0
  38. /strix/{cli → interface}/tool_components/user_message_renderer.py +0 -0
  39. /strix/{cli → interface}/tool_components/web_search_renderer.py +0 -0
  40. {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/LICENSE +0 -0
  41. {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: strix-agent
3
- Version: 0.1.19
3
+ Version: 0.3.1
4
4
  Summary: Open-source AI Hackers for your apps
5
5
  License: Apache-2.0
6
6
  Keywords: cybersecurity,security,vulnerability,scanner,pentest,agent,ai,cli
@@ -46,7 +46,7 @@ Description-Content-Type: text/markdown
46
46
 
47
47
  [![Strix](https://img.shields.io/badge/Strix-usestrix.com-1a1a1a.svg)](https://usestrix.com)
48
48
  [![Apache 2.0](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
49
- [![Discord](https://img.shields.io/badge/Discord-join-5865F2?logo=discord&logoColor=white)](https://discord.gg/yduEyduBsp)
49
+ [![Discord](https://img.shields.io/badge/Discord-join-5865F2?logo=discord&logoColor=white)](https://discord.gg/J48Fzuh7)
50
50
  [![PyPI Downloads](https://static.pepy.tech/personalized-badge/strix-agent?period=total&units=INTERNATIONAL_SYSTEM&left_color=GRAY&right_color=BLACK&left_text=Downloads)](https://pepy.tech/projects/strix-agent)
51
51
  [![GitHub stars](https://img.shields.io/github/stars/usestrix/strix.svg?style=social&label=Star)](https://github.com/usestrix/strix)
52
52
  </div>
@@ -144,7 +144,13 @@ strix --target https://github.com/org/repo
144
144
  # Web application assessment
145
145
  strix --target https://your-app.com
146
146
 
147
- # Focused testing
147
+ # Multi-target white-box testing (source code + deployed app)
148
+ strix -t https://github.com/org/app -t https://your-app.com
149
+
150
+ # Test multiple environments simultaneously
151
+ strix -t https://dev.your-app.com -t https://staging.your-app.com -t https://prod.your-app.com
152
+
153
+ # Focused testing with instructions
148
154
  strix --target api.your-app.com --instruction "Prioritize authentication and authorization testing"
149
155
 
150
156
  # Testing with credentials
@@ -164,6 +170,41 @@ export PERPLEXITY_API_KEY="your-api-key" # for search capabilities
164
170
 
165
171
  [📚 View supported AI models](https://docs.litellm.ai/docs/providers)
166
172
 
173
+ ### 🤖 Headless Mode
174
+
175
+ Run Strix programmatically without interactive UI using the `-n/--non-interactive` flag—perfect for servers and automated jobs. The CLI prints real-time vulnerability findings, and the final report before exiting. Exits with non-zero code when vulnerabilities are found.
176
+
177
+ ```bash
178
+ strix -n --target https://your-app.com --instruction "Focus on authentication and authorization vulnerabilities"
179
+ ```
180
+
181
+ ### 🔄 CI/CD (GitHub Actions)
182
+
183
+ Strix can be added to your pipeline to run a security test on pull requests with a lightweight GitHub Actions workflow:
184
+
185
+ ```yaml
186
+ name: strix-penetration-test
187
+
188
+ on:
189
+ pull_request:
190
+
191
+ jobs:
192
+ security-scan:
193
+ runs-on: ubuntu-latest
194
+ steps:
195
+ - uses: actions/checkout@v4
196
+
197
+ - name: Install Strix
198
+ run: pipx install strix-agent
199
+
200
+ - name: Run Strix
201
+ env:
202
+ STRIX_LLM: ${{ secrets.STRIX_LLM }}
203
+ LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
204
+
205
+ run: strix -n -t ./
206
+ ```
207
+
167
208
  ## 🏆 Enterprise Platform
168
209
 
169
210
  Our managed platform provides:
@@ -208,7 +249,7 @@ Help expand our collection of specialized prompt modules for AI agents:
208
249
 
209
250
  ## 👥 Join Our Community
210
251
 
211
- Have questions? Found a bug? Want to contribute? **[Join our Discord!](https://discord.gg/yduEyduBsp)**
252
+ Have questions? Found a bug? Want to contribute? **[Join our Discord!](https://discord.gg/J48Fzuh7)**
212
253
 
213
254
  </div>
214
255
 
@@ -1,31 +1,32 @@
1
1
  strix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  strix/agents/StrixAgent/__init__.py,sha256=VORJn9aPTJyNn2-QAv6DbTxO1P9wBQoSZlAw-YuTJhQ,63
3
- strix/agents/StrixAgent/strix_agent.py,sha256=MO-8H4tEj_oKDy6aDiumKp4r4tYUsakSWWor2ArfkQQ,2698
4
- strix/agents/StrixAgent/system_prompt.jinja,sha256=gB2tMyC9UhacxbQAnV5ekMv8sEftzb-ZbosqH_zsDPc,18850
3
+ strix/agents/StrixAgent/strix_agent.py,sha256=2_A8vLzIOB7WC8svNVVzij4isw09LNcAslvAgd9EiHo,2796
4
+ strix/agents/StrixAgent/system_prompt.jinja,sha256=W48gWtCalN7fu_SURJEpbX4YVbKP8iEj7YN2qwHfa8c,20088
5
5
  strix/agents/__init__.py,sha256=F64zhlv4XZIvYJSL9eSSuKUsIVGPLG3ycpQBhZwvE6A,168
6
- strix/agents/base_agent.py,sha256=4PvrpHl2yc-85uJ98R_C88xpfZ1a5mhq_Lh-2W5qJtw,16970
7
- strix/agents/state.py,sha256=tHezJbju78v5Igzb8Lj0VRVzNfmNMp1sgMi7fISuheQ,5525
8
- strix/cli/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
9
- strix/cli/app.py,sha256=BBoPCoQTvg1lzYTDI5YZY94-iV4Wth1LXIw2r5TkKmY,44055
10
- strix/cli/assets/cli.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
11
- strix/cli/main.py,sha256=B-2yXjg4v5sGTxplYhvL3tfty-0CMadTy_b2MznPctA,23905
12
- strix/cli/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
13
- strix/cli/tool_components/agents_graph_renderer.py,sha256=eVFRqmJ-TxyxZ-hssLTweDAio4UvsZZgxo2dKky0N1U,4399
14
- strix/cli/tool_components/base_renderer.py,sha256=P0zYeRnbkr2NYoE8KDQmj1TzrAGX6r7qLMb4Sw7AoTI,1905
15
- strix/cli/tool_components/browser_renderer.py,sha256=_dj5VSNtuyJSH24SyORB466H8bpa7aD4_hNiFmqxtFs,4526
16
- strix/cli/tool_components/file_edit_renderer.py,sha256=DfV8l4o3ssipXO_-uIrTS674h_9kALFLkuCb3ry0T0s,3612
17
- strix/cli/tool_components/finish_renderer.py,sha256=Q5Jp-irOqh0rfdoG_wzEiNhDqLDkdP-NwhYoag4N_Kw,984
18
- strix/cli/tool_components/notes_renderer.py,sha256=ZykNe589yXR9D9mm5rSHfdppZs65STVr356EDh7GaT0,3736
19
- strix/cli/tool_components/proxy_renderer.py,sha256=cK1mG3r0QhlVd_jbdKGiWuw5MJNLs0sTZCkOMZRRbJw,10224
20
- strix/cli/tool_components/python_renderer.py,sha256=2jlD6J9PpL-rOUq8uQiny54KLr45yVPO24Q-Tn_6VxM,1208
21
- strix/cli/tool_components/registry.py,sha256=o7KnSfuIR4NYAZ5EGk11YThrTdCmbb7pMBhxr1o6Fec,2370
22
- strix/cli/tool_components/reporting_renderer.py,sha256=mfVadTe5IbWBc9lV-rCJ29BxwXcFhaY1aON4_0qzglM,1762
23
- strix/cli/tool_components/scan_info_renderer.py,sha256=X2WVw89eJTlg5WIR518rAFctErK_lNtiPIx4TVdc6Zo,1992
24
- strix/cli/tool_components/terminal_renderer.py,sha256=-ORL2vBH5XImUZrIfk_K3fij3QQks2ejiJgcU11OB0E,3349
25
- strix/cli/tool_components/thinking_renderer.py,sha256=-MQLkKCgOJksrustULFf2jhAjJrP5bbfS2BQ6zgNKCc,927
26
- strix/cli/tool_components/user_message_renderer.py,sha256=6gHJ1hG-pwcTsxLM7JuYZuaDu8cZ2MeOuUDF3LGy-4I,1432
27
- strix/cli/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8Th9cHSxo-fej9YcuYHs,911
28
- strix/cli/tracer.py,sha256=V8_ZnYHKfzsVQSMuxb04_AweuXN1dWUJ-9C025-rM0Y,11207
6
+ strix/agents/base_agent.py,sha256=0oWy779P3ZzqCP_kuN9Okq0UQNzFf9oS0zYhXIDawtc,20220
7
+ strix/agents/state.py,sha256=3A4wOewNYyzqnCCBbzpSc35OrgTfObzxIwZpJDW_rag,5720
8
+ strix/interface/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
9
+ strix/interface/assets/tui_styles.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
10
+ strix/interface/cli.py,sha256=9-kcS_x-15sXL3jUCz5Fi2s1RLNXdMh82okEb2eTD7M,5485
11
+ strix/interface/main.py,sha256=712U3e49vj02YleqNr-QIm1Vjj9uNVA7T1sOkOz1SVg,16431
12
+ strix/interface/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
13
+ strix/interface/tool_components/agents_graph_renderer.py,sha256=eVFRqmJ-TxyxZ-hssLTweDAio4UvsZZgxo2dKky0N1U,4399
14
+ strix/interface/tool_components/base_renderer.py,sha256=P0zYeRnbkr2NYoE8KDQmj1TzrAGX6r7qLMb4Sw7AoTI,1905
15
+ strix/interface/tool_components/browser_renderer.py,sha256=_dj5VSNtuyJSH24SyORB466H8bpa7aD4_hNiFmqxtFs,4526
16
+ strix/interface/tool_components/file_edit_renderer.py,sha256=DfV8l4o3ssipXO_-uIrTS674h_9kALFLkuCb3ry0T0s,3612
17
+ strix/interface/tool_components/finish_renderer.py,sha256=Q5Jp-irOqh0rfdoG_wzEiNhDqLDkdP-NwhYoag4N_Kw,984
18
+ strix/interface/tool_components/notes_renderer.py,sha256=ZykNe589yXR9D9mm5rSHfdppZs65STVr356EDh7GaT0,3736
19
+ strix/interface/tool_components/proxy_renderer.py,sha256=cK1mG3r0QhlVd_jbdKGiWuw5MJNLs0sTZCkOMZRRbJw,10224
20
+ strix/interface/tool_components/python_renderer.py,sha256=2jlD6J9PpL-rOUq8uQiny54KLr45yVPO24Q-Tn_6VxM,1208
21
+ strix/interface/tool_components/registry.py,sha256=o7KnSfuIR4NYAZ5EGk11YThrTdCmbb7pMBhxr1o6Fec,2370
22
+ strix/interface/tool_components/reporting_renderer.py,sha256=mfVadTe5IbWBc9lV-rCJ29BxwXcFhaY1aON4_0qzglM,1762
23
+ strix/interface/tool_components/scan_info_renderer.py,sha256=BWeWJ-Whm-MOM_CKSR59SKTq1tKbUh2kqi1cdOkUorQ,2223
24
+ strix/interface/tool_components/terminal_renderer.py,sha256=-ORL2vBH5XImUZrIfk_K3fij3QQks2ejiJgcU11OB0E,3349
25
+ strix/interface/tool_components/thinking_renderer.py,sha256=-MQLkKCgOJksrustULFf2jhAjJrP5bbfS2BQ6zgNKCc,927
26
+ strix/interface/tool_components/user_message_renderer.py,sha256=6gHJ1hG-pwcTsxLM7JuYZuaDu8cZ2MeOuUDF3LGy-4I,1432
27
+ strix/interface/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8Th9cHSxo-fej9YcuYHs,911
28
+ strix/interface/tui.py,sha256=xCwmRqdIg8KOcrqijcMoacKx-O2XHCKJhuwLMo4P3l4,43872
29
+ strix/interface/utils.py,sha256=oEGc5WyXiV65OBEpUKMub0w7lOqSk_UPvNL_MKdf3jw,14899
29
30
  strix/llm/__init__.py,sha256=WqYE3Xc2e1D3z4QyjwN_jZPTdqsSDX6ODYsu-dcufSk,230
30
31
  strix/llm/config.py,sha256=iBv1tuUOUDcP2gVQWhjtN8wtO5lWOipsER7Rnc3p6k4,603
31
32
  strix/llm/llm.py,sha256=lsjNAXDGikhI2EGrtQHolqRtr5KC4Zi4-2sCUF3n9ZE,15604
@@ -58,12 +59,14 @@ strix/prompts/vulnerabilities/ssrf.jinja,sha256=XMRAclYIyq0JhVSXopTsbZAm-wRxz-zZ
58
59
  strix/prompts/vulnerabilities/xss.jinja,sha256=GG1egKjGw9onilu1azEhU2Hfxu9XjQfBA2j4P4KQRzE,8675
59
60
  strix/prompts/vulnerabilities/xxe.jinja,sha256=yyWl5i74YiFZIhQknMPWXLKL0C5gwL6Ra_YB4xddJsc,7841
60
61
  strix/runtime/__init__.py,sha256=v2oQ1JnfZXOTU8N3NOEI_MbxNp8BfNj8hTgvjCsNGvY,445
61
- strix/runtime/docker_runtime.py,sha256=XFpgf-epyUPUp-LCbOAQhMQAKB2nZptkgR5i9jmyFnU,14813
62
- strix/runtime/runtime.py,sha256=yUVLl9BTQChQgaba2jJCrEmHeJFDE9N0sF9M_XjqEbg,692
62
+ strix/runtime/docker_runtime.py,sha256=cUkx2S3h7d9lOXGHBb5Sz0tjY178QuVZB6dGcxSwBMY,15595
63
+ strix/runtime/runtime.py,sha256=PRYByipRG9OhtIphIruGBSe4k-glVnYAXH68mikqt78,730
63
64
  strix/runtime/tool_server.py,sha256=pKI_cL1aSEFC8b6Dqaz9bRfh0LvcCKwb6ZCN-v6OYls,6618
65
+ strix/telemetry/__init__.py,sha256=8QLHMvrVNLlGKezWTf3mTSmTOLIvDS5xVciry1KVS1Y,130
66
+ strix/telemetry/tracer.py,sha256=DkCD3m3dqely_of6EcYKko3hJDZKgfFE_O4towdqzWA,11586
64
67
  strix/tools/__init__.py,sha256=_uTsOImNlJ-q5FFuQBTIYpIAgTETNI7Pm2hkaLE-Z5Y,1743
65
68
  strix/tools/agents_graph/__init__.py,sha256=FLJ2kGxXICY2pRKrC0sgIc3w3KhZo7VID7hbwYcgBfM,278
66
- strix/tools/agents_graph/agents_graph_actions.py,sha256=6fA5tD0tgkBapRo6D7TVgVsZ2VnzTTrmuwZh3X_h4Lo,20602
69
+ strix/tools/agents_graph/agents_graph_actions.py,sha256=vftFb1haz3ZZMVBVR8N99aGqhBSPfLEAQCR4L9PLkpQ,20818
67
70
  strix/tools/agents_graph/agents_graph_actions_schema.xml,sha256=lgnjltVyDog5T-uW4oFll1RksRfXdLmQyjUVVtFBXoE,12511
68
71
  strix/tools/argument_parser.py,sha256=FA9LY0UBtMqDRJ9yHHUzQCbGmpTQvo4xTtLiNRYG2FU,3861
69
72
  strix/tools/browser/__init__.py,sha256=7azA1td3CfwCVqMYIIzT0vGM0-JUNq3sZBYB0QnwFDk,75
@@ -71,12 +74,12 @@ strix/tools/browser/browser_actions.py,sha256=ZmHdPoow9R-rkSjopYsY1-56fL7Tm-WDCa
71
74
  strix/tools/browser/browser_actions_schema.xml,sha256=zZQD8sZWsNnxxnlY3QYDrfKHFu0x6i1vtfSOlIGyiho,9573
72
75
  strix/tools/browser/browser_instance.py,sha256=vgb-dJP20SLaBOhFExn-uwfjdISBrHJpG7ewfiKQkYU,18605
73
76
  strix/tools/browser/tab_manager.py,sha256=SMkDFOgEr3ADK2rP5Ko2uK-A24-8p0VsbjoxEj5eU-Y,13011
74
- strix/tools/executor.py,sha256=J6cCOkZX4Mr8RsQtl-hZ5clJALh1dgUIrcprD-19yro,10217
77
+ strix/tools/executor.py,sha256=ED7P7LLCuZk12jO4t8UvB6Ms-xm4kVeu6F4WHetETnM,10223
75
78
  strix/tools/file_edit/__init__.py,sha256=8f6VlEoGP627hGtcdLkr63vdrTmdb8uyPIqB0qVgZd8,141
76
79
  strix/tools/file_edit/file_edit_actions.py,sha256=Aq-LwzmmfUJrBZWy5TeP9Pxz9TlmeqOSqemD4jBkt2s,3951
77
80
  strix/tools/file_edit/file_edit_actions_schema.xml,sha256=tt0_QgSjOtTEy8ordsXUcEiVTePiybgn4aisZJ_qnbc,5477
78
81
  strix/tools/finish/__init__.py,sha256=QIMaHYusly8YaFR3zjYsy_CFawwgtTZvOU7gsEumFrw,68
79
- strix/tools/finish/finish_actions.py,sha256=EX3swXMIKMWcdmnKgQIVrzq1APFS07iqY86mJBTOiEY,5696
82
+ strix/tools/finish/finish_actions.py,sha256=_M8mmJzPAwSJCG0NOGAhhON24OQMJV16dqZEa_s8HuM,5702
80
83
  strix/tools/finish/finish_actions_schema.xml,sha256=CS6Vq3ByyNxv2spRWS4oJcmUzWQRB7jvUAOS8aiWd8o,2294
81
84
  strix/tools/notes/__init__.py,sha256=DUpkZUWN21tb9AXCWfJLrKrgLz9YEBVU8KQy1J6cyxU,189
82
85
  strix/tools/notes/notes_actions.py,sha256=Y4b7DYJzh7XwwlMTdwThOLuIuuj46m6KiMrMKekTMCE,5771
@@ -92,7 +95,7 @@ strix/tools/python/python_instance.py,sha256=x8ARTRAmAjdotD3TbtN0O4Q3nKNjfOzxTMN
92
95
  strix/tools/python/python_manager.py,sha256=C_k8C8uQ6ESpAgzhbf3km9jeFyI52SGd2m36mD1ErhM,4235
93
96
  strix/tools/registry.py,sha256=LhByebT-OiIfc2g-hxlSopzHoNIPiKfPJRvTAK37TOQ,6025
94
97
  strix/tools/reporting/__init__.py,sha256=_cYxb3OP0vZtCwO_ExLBjhAn1ECaG-SH1Z4wfGDyT1Y,110
95
- strix/tools/reporting/reporting_actions.py,sha256=RIp3u3pmlRXx_uCr2Kc8R7yYiSe3pzPtVSUHw3cNM4s,2186
98
+ strix/tools/reporting/reporting_actions.py,sha256=1d0QfWWqjaamErfQk5Fms3FxdSJoi3vuZ0e17V2Nh_Y,2192
96
99
  strix/tools/reporting/reporting_actions_schema.xml,sha256=y_g0iuyBuCh79fvA0ri8fOPlXY7uUd-P-mdzXLUyIJg,1629
97
100
  strix/tools/terminal/__init__.py,sha256=xvflcrbLQ31o_K3cWFsIhTm7gxY5JF0nVnhOIadwFV0,80
98
101
  strix/tools/terminal/terminal_actions.py,sha256=9BGsK7Io7PyW8YGpJfXHeJTP3AVqBAgaKZl-1YziF8Y,888
@@ -105,8 +108,8 @@ strix/tools/thinking/thinking_actions_schema.xml,sha256=otD4dOhQx4uyudLnjA_HIP6E
105
108
  strix/tools/web_search/__init__.py,sha256=m5PCHXqeNVraLRLNIbh54Z2N4Y_75d-ftqwyq3dbCd0,70
106
109
  strix/tools/web_search/web_search_actions.py,sha256=LRS3AjGO4JLIyu_B6-ogfWOsnENwqrrCa8Rz0vxuuGQ,3107
107
110
  strix/tools/web_search/web_search_actions_schema.xml,sha256=Ihc3Gv4LaPI_MzBbwZOt3y4pwg9xmtl8KfPNvFihEP4,4805
108
- strix_agent-0.1.19.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
109
- strix_agent-0.1.19.dist-info/METADATA,sha256=eE762B6HBEppg1BgHWVxaWnJAMGJu7X_CdMPekTNkB4,7823
110
- strix_agent-0.1.19.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
111
- strix_agent-0.1.19.dist-info/entry_points.txt,sha256=sswIgnkzSVSzQ3Rd046g7mhIPQaj_7RYlXgU_bQelF0,45
112
- strix_agent-0.1.19.dist-info/RECORD,,
111
+ strix_agent-0.3.1.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
112
+ strix_agent-0.3.1.dist-info/METADATA,sha256=NwABK0FvzSF3eysmrNZXF1CHymAOOjddgVQXYMtLSLM,9066
113
+ strix_agent-0.3.1.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
114
+ strix_agent-0.3.1.dist-info/entry_points.txt,sha256=F_Uflti5ggiBHZ9wUHTqacARQavQDiditz0mRN0qnAA,51
115
+ strix_agent-0.3.1.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ strix=strix.interface.main:main
3
+