strix-agent 0.1.17__py3-none-any.whl → 0.1.19__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.
- strix/agents/StrixAgent/strix_agent.py +2 -1
- strix/agents/StrixAgent/system_prompt.jinja +8 -10
- strix/agents/base_agent.py +20 -0
- strix/agents/state.py +18 -1
- strix/cli/app.py +92 -15
- strix/cli/main.py +81 -24
- strix/cli/tool_components/base_renderer.py +2 -2
- strix/cli/tool_components/reporting_renderer.py +2 -1
- strix/llm/llm.py +9 -0
- strix/prompts/README.md +64 -0
- strix/prompts/__init__.py +1 -1
- strix/prompts/cloud/.gitkeep +0 -0
- strix/prompts/custom/.gitkeep +0 -0
- strix/prompts/frameworks/fastapi.jinja +142 -0
- strix/prompts/frameworks/nextjs.jinja +126 -0
- strix/prompts/protocols/graphql.jinja +215 -0
- strix/prompts/reconnaissance/.gitkeep +0 -0
- strix/prompts/technologies/firebase_firestore.jinja +177 -0
- strix/prompts/technologies/supabase.jinja +189 -0
- strix/prompts/vulnerabilities/authentication_jwt.jinja +133 -115
- strix/prompts/vulnerabilities/broken_function_level_authorization.jinja +146 -0
- strix/prompts/vulnerabilities/business_logic.jinja +146 -118
- strix/prompts/vulnerabilities/csrf.jinja +137 -131
- strix/prompts/vulnerabilities/idor.jinja +149 -118
- strix/prompts/vulnerabilities/insecure_file_uploads.jinja +188 -0
- strix/prompts/vulnerabilities/mass_assignment.jinja +141 -0
- strix/prompts/vulnerabilities/path_traversal_lfi_rfi.jinja +142 -0
- strix/prompts/vulnerabilities/race_conditions.jinja +135 -165
- strix/prompts/vulnerabilities/rce.jinja +128 -180
- strix/prompts/vulnerabilities/sql_injection.jinja +128 -192
- strix/prompts/vulnerabilities/ssrf.jinja +118 -151
- strix/prompts/vulnerabilities/xss.jinja +144 -196
- strix/prompts/vulnerabilities/xxe.jinja +151 -243
- strix/tools/agents_graph/agents_graph_actions.py +4 -3
- strix/tools/agents_graph/agents_graph_actions_schema.xml +10 -14
- strix/tools/registry.py +1 -1
- {strix_agent-0.1.17.dist-info → strix_agent-0.1.19.dist-info}/METADATA +55 -16
- {strix_agent-0.1.17.dist-info → strix_agent-0.1.19.dist-info}/RECORD +41 -28
- {strix_agent-0.1.17.dist-info → strix_agent-0.1.19.dist-info}/LICENSE +0 -0
- {strix_agent-0.1.17.dist-info → strix_agent-0.1.19.dist-info}/WHEEL +0 -0
- {strix_agent-0.1.17.dist-info → strix_agent-0.1.19.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: strix-agent
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.19
|
|
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
|
|
@@ -44,10 +44,11 @@ Description-Content-Type: text/markdown
|
|
|
44
44
|
|
|
45
45
|
### Open-source AI hackers for your apps
|
|
46
46
|
|
|
47
|
+
[](https://usestrix.com)
|
|
47
48
|
[](LICENSE)
|
|
48
|
-
[](https://discord.gg/yduEyduBsp)
|
|
50
|
+
[](https://pepy.tech/projects/strix-agent)
|
|
51
|
+
[](https://github.com/usestrix/strix)
|
|
51
52
|
</div>
|
|
52
53
|
|
|
53
54
|
<div align="center">
|
|
@@ -60,8 +61,30 @@ Description-Content-Type: text/markdown
|
|
|
60
61
|
|
|
61
62
|
Strix are autonomous AI agents that act just like real hackers - they run your code dynamically, find vulnerabilities, and validate them through actual exploitation. Built for developers and security teams who need fast, accurate security testing without the overhead of manual pentesting or the false positives of static analysis tools.
|
|
62
63
|
|
|
64
|
+
- **Full hacker toolkit** out of the box
|
|
65
|
+
- **Teams of agents** that collaborate and scale
|
|
66
|
+
- **Real validation** via exploitation and PoC, not false positives
|
|
67
|
+
- **Developer‑first** CLI with actionable reports
|
|
68
|
+
- **Auto‑fix & reporting** to accelerate remediation
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
### 🎯 Use Cases
|
|
73
|
+
|
|
74
|
+
- Detect and validate critical vulnerabilities in your applications.
|
|
75
|
+
- Get penetration tests done in hours, not weeks, with compliance reports.
|
|
76
|
+
- Automate bug bounty research and generate PoCs for faster reporting.
|
|
77
|
+
- Run tests in CI/CD to block vulnerabilities before reaching production.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
63
81
|
### 🚀 Quick Start
|
|
64
82
|
|
|
83
|
+
Prerequisites:
|
|
84
|
+
- Docker (running)
|
|
85
|
+
- Python 3.12+
|
|
86
|
+
- An LLM provider key (or a local LLM)
|
|
87
|
+
|
|
65
88
|
```bash
|
|
66
89
|
# Install
|
|
67
90
|
pipx install strix-agent
|
|
@@ -74,12 +97,11 @@ export LLM_API_KEY="your-api-key"
|
|
|
74
97
|
strix --target ./app-directory
|
|
75
98
|
```
|
|
76
99
|
|
|
77
|
-
|
|
100
|
+
First run pulls the sandbox Docker image. Results are saved under `agent_runs/<run-name>`.
|
|
101
|
+
|
|
102
|
+
### ☁️ Cloud Hosted
|
|
78
103
|
|
|
79
|
-
|
|
80
|
-
- **Real Validation** - Dynamic testing and actual exploitation, thus much fewer false positives
|
|
81
|
-
- **Developer-First** - Seamlessly integrates into existing development workflows
|
|
82
|
-
- **Auto-Fix & Reporting** - Automated patching with detailed remediation and security reports
|
|
104
|
+
Want to skip the setup? Try our cloud-hosted version: **[usestrix.com](https://usestrix.com)**
|
|
83
105
|
|
|
84
106
|
## ✨ Features
|
|
85
107
|
|
|
@@ -124,17 +146,20 @@ strix --target https://your-app.com
|
|
|
124
146
|
|
|
125
147
|
# Focused testing
|
|
126
148
|
strix --target api.your-app.com --instruction "Prioritize authentication and authorization testing"
|
|
149
|
+
|
|
150
|
+
# Testing with credentials
|
|
151
|
+
strix --target https://your-app.com --instruction "Test with credentials: testuser/testpass. Focus on privilege escalation and access control bypasses."
|
|
127
152
|
```
|
|
128
153
|
|
|
129
154
|
### ⚙️ Configuration
|
|
130
155
|
|
|
131
156
|
```bash
|
|
132
|
-
# Required
|
|
133
157
|
export STRIX_LLM="openai/gpt-5"
|
|
134
158
|
export LLM_API_KEY="your-api-key"
|
|
135
159
|
|
|
136
|
-
#
|
|
137
|
-
export
|
|
160
|
+
# Optional
|
|
161
|
+
export LLM_API_BASE="your-api-base-url" # if using a local model, e.g. Ollama, LMStudio
|
|
162
|
+
export PERPLEXITY_API_KEY="your-api-key" # for search capabilities
|
|
138
163
|
```
|
|
139
164
|
|
|
140
165
|
[📚 View supported AI models](https://docs.litellm.ai/docs/providers)
|
|
@@ -150,19 +175,33 @@ Our managed platform provides:
|
|
|
150
175
|
- **🔌 Third-Party Integrations**
|
|
151
176
|
- **🎯 Enterprise Support**
|
|
152
177
|
|
|
153
|
-
[**Get Enterprise Demo →**](https://
|
|
178
|
+
[**Get Enterprise Demo →**](https://usestrix.com)
|
|
154
179
|
|
|
155
180
|
## 🔒 Security Architecture
|
|
156
181
|
|
|
157
182
|
- **Container Isolation** - All testing in sandboxed Docker environments
|
|
158
183
|
- **Local Processing** - Testing runs locally, no data sent to external services
|
|
159
184
|
|
|
160
|
-
> [!NOTE]
|
|
161
|
-
> Strix is currently in Alpha. Expect rapid updates and improvements.
|
|
162
|
-
|
|
163
185
|
> [!WARNING]
|
|
164
186
|
> Only test systems you own or have permission to test. You are responsible for using Strix ethically and legally.
|
|
165
187
|
|
|
188
|
+
## 🤝 Contributing
|
|
189
|
+
|
|
190
|
+
We welcome contributions from the community! There are several ways to contribute:
|
|
191
|
+
|
|
192
|
+
### Code Contributions
|
|
193
|
+
See our [Contributing Guide](CONTRIBUTING.md) for details on:
|
|
194
|
+
- Setting up your development environment
|
|
195
|
+
- Running tests and quality checks
|
|
196
|
+
- Submitting pull requests
|
|
197
|
+
- Code style guidelines
|
|
198
|
+
|
|
199
|
+
### Prompt Modules Collection
|
|
200
|
+
Help expand our collection of specialized prompt modules for AI agents:
|
|
201
|
+
- Advanced testing techniques for vulnerabilities, frameworks, and technologies
|
|
202
|
+
- See [Prompt Modules Documentation](strix/prompts/README.md) for guidelines
|
|
203
|
+
- Submit via [pull requests](https://github.com/usestrix/strix/pulls) or [issues](https://github.com/usestrix/strix/issues)
|
|
204
|
+
|
|
166
205
|
## 🌟 Support the Project
|
|
167
206
|
|
|
168
207
|
**Love Strix?** Give us a ⭐ on GitHub!
|
|
@@ -1,17 +1,17 @@
|
|
|
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=
|
|
4
|
-
strix/agents/StrixAgent/system_prompt.jinja,sha256=
|
|
3
|
+
strix/agents/StrixAgent/strix_agent.py,sha256=MO-8H4tEj_oKDy6aDiumKp4r4tYUsakSWWor2ArfkQQ,2698
|
|
4
|
+
strix/agents/StrixAgent/system_prompt.jinja,sha256=gB2tMyC9UhacxbQAnV5ekMv8sEftzb-ZbosqH_zsDPc,18850
|
|
5
5
|
strix/agents/__init__.py,sha256=F64zhlv4XZIvYJSL9eSSuKUsIVGPLG3ycpQBhZwvE6A,168
|
|
6
|
-
strix/agents/base_agent.py,sha256=
|
|
7
|
-
strix/agents/state.py,sha256=
|
|
6
|
+
strix/agents/base_agent.py,sha256=4PvrpHl2yc-85uJ98R_C88xpfZ1a5mhq_Lh-2W5qJtw,16970
|
|
7
|
+
strix/agents/state.py,sha256=tHezJbju78v5Igzb8Lj0VRVzNfmNMp1sgMi7fISuheQ,5525
|
|
8
8
|
strix/cli/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
|
|
9
|
-
strix/cli/app.py,sha256=
|
|
9
|
+
strix/cli/app.py,sha256=BBoPCoQTvg1lzYTDI5YZY94-iV4Wth1LXIw2r5TkKmY,44055
|
|
10
10
|
strix/cli/assets/cli.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
|
|
11
|
-
strix/cli/main.py,sha256=
|
|
11
|
+
strix/cli/main.py,sha256=B-2yXjg4v5sGTxplYhvL3tfty-0CMadTy_b2MznPctA,23905
|
|
12
12
|
strix/cli/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
|
|
13
13
|
strix/cli/tool_components/agents_graph_renderer.py,sha256=eVFRqmJ-TxyxZ-hssLTweDAio4UvsZZgxo2dKky0N1U,4399
|
|
14
|
-
strix/cli/tool_components/base_renderer.py,sha256=
|
|
14
|
+
strix/cli/tool_components/base_renderer.py,sha256=P0zYeRnbkr2NYoE8KDQmj1TzrAGX6r7qLMb4Sw7AoTI,1905
|
|
15
15
|
strix/cli/tool_components/browser_renderer.py,sha256=_dj5VSNtuyJSH24SyORB466H8bpa7aD4_hNiFmqxtFs,4526
|
|
16
16
|
strix/cli/tool_components/file_edit_renderer.py,sha256=DfV8l4o3ssipXO_-uIrTS674h_9kALFLkuCb3ry0T0s,3612
|
|
17
17
|
strix/cli/tool_components/finish_renderer.py,sha256=Q5Jp-irOqh0rfdoG_wzEiNhDqLDkdP-NwhYoag4N_Kw,984
|
|
@@ -19,7 +19,7 @@ strix/cli/tool_components/notes_renderer.py,sha256=ZykNe589yXR9D9mm5rSHfdppZs65S
|
|
|
19
19
|
strix/cli/tool_components/proxy_renderer.py,sha256=cK1mG3r0QhlVd_jbdKGiWuw5MJNLs0sTZCkOMZRRbJw,10224
|
|
20
20
|
strix/cli/tool_components/python_renderer.py,sha256=2jlD6J9PpL-rOUq8uQiny54KLr45yVPO24Q-Tn_6VxM,1208
|
|
21
21
|
strix/cli/tool_components/registry.py,sha256=o7KnSfuIR4NYAZ5EGk11YThrTdCmbb7pMBhxr1o6Fec,2370
|
|
22
|
-
strix/cli/tool_components/reporting_renderer.py,sha256=
|
|
22
|
+
strix/cli/tool_components/reporting_renderer.py,sha256=mfVadTe5IbWBc9lV-rCJ29BxwXcFhaY1aON4_0qzglM,1762
|
|
23
23
|
strix/cli/tool_components/scan_info_renderer.py,sha256=X2WVw89eJTlg5WIR518rAFctErK_lNtiPIx4TVdc6Zo,1992
|
|
24
24
|
strix/cli/tool_components/terminal_renderer.py,sha256=-ORL2vBH5XImUZrIfk_K3fij3QQks2ejiJgcU11OB0E,3349
|
|
25
25
|
strix/cli/tool_components/thinking_renderer.py,sha256=-MQLkKCgOJksrustULFf2jhAjJrP5bbfS2BQ6zgNKCc,927
|
|
@@ -28,30 +28,43 @@ strix/cli/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8
|
|
|
28
28
|
strix/cli/tracer.py,sha256=V8_ZnYHKfzsVQSMuxb04_AweuXN1dWUJ-9C025-rM0Y,11207
|
|
29
29
|
strix/llm/__init__.py,sha256=WqYE3Xc2e1D3z4QyjwN_jZPTdqsSDX6ODYsu-dcufSk,230
|
|
30
30
|
strix/llm/config.py,sha256=iBv1tuUOUDcP2gVQWhjtN8wtO5lWOipsER7Rnc3p6k4,603
|
|
31
|
-
strix/llm/llm.py,sha256=
|
|
31
|
+
strix/llm/llm.py,sha256=lsjNAXDGikhI2EGrtQHolqRtr5KC4Zi4-2sCUF3n9ZE,15604
|
|
32
32
|
strix/llm/memory_compressor.py,sha256=RFJWirlK39ZkoDc42eNicJUR8nMVbxSsviWvfJ4kRgs,6953
|
|
33
33
|
strix/llm/request_queue.py,sha256=P8YStE3qe8X1H0PkIaZ7_FNokWgDlgrrZrRj0TWHbKo,2595
|
|
34
34
|
strix/llm/utils.py,sha256=0Z0r6qo9IfUSOJt5FJsq3X-veXrA8A09frc2VIy-aS4,2540
|
|
35
|
-
strix/prompts/
|
|
35
|
+
strix/prompts/README.md,sha256=m81jqGbsmYMzuvBQ7jrftqTv1qGuUvpKH09XYCpRV4A,2983
|
|
36
|
+
strix/prompts/__init__.py,sha256=cysOM59WT-BVsGrGc09a8Dkcog2Ky08fDZJXXHZ8iJg,3490
|
|
37
|
+
strix/prompts/cloud/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
38
|
strix/prompts/coordination/root_agent.jinja,sha256=Z34uffB-lIt6Oei307dtD7oyXSmX2DSApeoRcA3LcnM,1902
|
|
37
|
-
strix/prompts/
|
|
38
|
-
strix/prompts/
|
|
39
|
-
strix/prompts/
|
|
40
|
-
strix/prompts/
|
|
41
|
-
strix/prompts/
|
|
42
|
-
strix/prompts/
|
|
43
|
-
strix/prompts/
|
|
44
|
-
strix/prompts/vulnerabilities/
|
|
45
|
-
strix/prompts/vulnerabilities/
|
|
46
|
-
strix/prompts/vulnerabilities/
|
|
39
|
+
strix/prompts/custom/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
strix/prompts/frameworks/fastapi.jinja,sha256=zXa08RDG9tVQu6MZetKCcOUPuDDKJJF1anTei7_2TZg,10200
|
|
41
|
+
strix/prompts/frameworks/nextjs.jinja,sha256=AhfKOUl2bQzRWqqCw5lrjrXaKIkZ3CEEjVJwPJF8nP8,8175
|
|
42
|
+
strix/prompts/protocols/graphql.jinja,sha256=Tm538OmlFOJvuOwd4MXYQ4KYR7k4bJ4r-z4yoFcF6-8,10454
|
|
43
|
+
strix/prompts/reconnaissance/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
+
strix/prompts/technologies/firebase_firestore.jinja,sha256=J2yBQ3CvX8V0DV9hebmS1tdMyQhWHTRXIAe0bNYGAdM,11365
|
|
45
|
+
strix/prompts/technologies/supabase.jinja,sha256=ib2B_OLRLrutr1f8ez8paiXQcLBKS8_LU3iJBnO_vK4,11751
|
|
46
|
+
strix/prompts/vulnerabilities/authentication_jwt.jinja,sha256=XVil5YMvjo4DyDWdpAxrclMTh-0JELU9G4PFK6SHA6c,8388
|
|
47
|
+
strix/prompts/vulnerabilities/broken_function_level_authorization.jinja,sha256=DTFi_M9_edDprotnRaUoCjUvPztnafXD7NMsF6wfd38,7204
|
|
48
|
+
strix/prompts/vulnerabilities/business_logic.jinja,sha256=hz7oOzJWNFjj_DZndzqahzU5ckOrJMCpnIy3GxzmzCA,9857
|
|
49
|
+
strix/prompts/vulnerabilities/csrf.jinja,sha256=ZOkFB-u2qWi1wYq_vTJzINi9eOyHh6rUsOgJguGvutk,8739
|
|
50
|
+
strix/prompts/vulnerabilities/idor.jinja,sha256=8XE24uCCyJXBPZj6JIhcwPx3mx9_NE2mr5XAfhq8yTE,10785
|
|
51
|
+
strix/prompts/vulnerabilities/insecure_file_uploads.jinja,sha256=1qLkfQoOyyTwbafJknmDJ_tjV9fzJInfLNc3eeagWos,10972
|
|
52
|
+
strix/prompts/vulnerabilities/mass_assignment.jinja,sha256=9RTI_waQPvXBBEhzHCzytlbU7zF2Y-B3HuYHeUs7iO8,7176
|
|
53
|
+
strix/prompts/vulnerabilities/path_traversal_lfi_rfi.jinja,sha256=5Zfr424yM2LyFxt9A6q18RhbIjdq1MB6mpjWbG_FA7o,7916
|
|
54
|
+
strix/prompts/vulnerabilities/race_conditions.jinja,sha256=ZHxdZc7v7yvhmUWJK3P3kIzOz3oaYRb2OJEzG1momcg,8372
|
|
55
|
+
strix/prompts/vulnerabilities/rce.jinja,sha256=tgmocWH3Y9FJ3fBeR9DTR7ViBcuH5salGis8vywJ2h8,8425
|
|
56
|
+
strix/prompts/vulnerabilities/sql_injection.jinja,sha256=tdFjkbu5p_di0Zui95o2Eh1v-Ulvwg1qcENDNLswv1Q,8426
|
|
57
|
+
strix/prompts/vulnerabilities/ssrf.jinja,sha256=XMRAclYIyq0JhVSXopTsbZAm-wRxz-zZfDHdaFgVeiw,7899
|
|
58
|
+
strix/prompts/vulnerabilities/xss.jinja,sha256=GG1egKjGw9onilu1azEhU2Hfxu9XjQfBA2j4P4KQRzE,8675
|
|
59
|
+
strix/prompts/vulnerabilities/xxe.jinja,sha256=yyWl5i74YiFZIhQknMPWXLKL0C5gwL6Ra_YB4xddJsc,7841
|
|
47
60
|
strix/runtime/__init__.py,sha256=v2oQ1JnfZXOTU8N3NOEI_MbxNp8BfNj8hTgvjCsNGvY,445
|
|
48
61
|
strix/runtime/docker_runtime.py,sha256=XFpgf-epyUPUp-LCbOAQhMQAKB2nZptkgR5i9jmyFnU,14813
|
|
49
62
|
strix/runtime/runtime.py,sha256=yUVLl9BTQChQgaba2jJCrEmHeJFDE9N0sF9M_XjqEbg,692
|
|
50
63
|
strix/runtime/tool_server.py,sha256=pKI_cL1aSEFC8b6Dqaz9bRfh0LvcCKwb6ZCN-v6OYls,6618
|
|
51
64
|
strix/tools/__init__.py,sha256=_uTsOImNlJ-q5FFuQBTIYpIAgTETNI7Pm2hkaLE-Z5Y,1743
|
|
52
65
|
strix/tools/agents_graph/__init__.py,sha256=FLJ2kGxXICY2pRKrC0sgIc3w3KhZo7VID7hbwYcgBfM,278
|
|
53
|
-
strix/tools/agents_graph/agents_graph_actions.py,sha256=
|
|
54
|
-
strix/tools/agents_graph/agents_graph_actions_schema.xml,sha256=
|
|
66
|
+
strix/tools/agents_graph/agents_graph_actions.py,sha256=6fA5tD0tgkBapRo6D7TVgVsZ2VnzTTrmuwZh3X_h4Lo,20602
|
|
67
|
+
strix/tools/agents_graph/agents_graph_actions_schema.xml,sha256=lgnjltVyDog5T-uW4oFll1RksRfXdLmQyjUVVtFBXoE,12511
|
|
55
68
|
strix/tools/argument_parser.py,sha256=FA9LY0UBtMqDRJ9yHHUzQCbGmpTQvo4xTtLiNRYG2FU,3861
|
|
56
69
|
strix/tools/browser/__init__.py,sha256=7azA1td3CfwCVqMYIIzT0vGM0-JUNq3sZBYB0QnwFDk,75
|
|
57
70
|
strix/tools/browser/browser_actions.py,sha256=ZmHdPoow9R-rkSjopYsY1-56fL7Tm-WDCaIPvs1_hys,7037
|
|
@@ -77,7 +90,7 @@ strix/tools/python/python_actions.py,sha256=pXnyvspsV3nh2qNWJTY7m4rzoXYfYQ7mpsVI
|
|
|
77
90
|
strix/tools/python/python_actions_schema.xml,sha256=XcIUjz5uEoI7J3VFcby0O-0ovm9r9cIoADfpqDGJXlU,7122
|
|
78
91
|
strix/tools/python/python_instance.py,sha256=x8ARTRAmAjdotD3TbtN0O4Q3nKNjfOzxTMN7aGU99H8,5547
|
|
79
92
|
strix/tools/python/python_manager.py,sha256=C_k8C8uQ6ESpAgzhbf3km9jeFyI52SGd2m36mD1ErhM,4235
|
|
80
|
-
strix/tools/registry.py,sha256=
|
|
93
|
+
strix/tools/registry.py,sha256=LhByebT-OiIfc2g-hxlSopzHoNIPiKfPJRvTAK37TOQ,6025
|
|
81
94
|
strix/tools/reporting/__init__.py,sha256=_cYxb3OP0vZtCwO_ExLBjhAn1ECaG-SH1Z4wfGDyT1Y,110
|
|
82
95
|
strix/tools/reporting/reporting_actions.py,sha256=RIp3u3pmlRXx_uCr2Kc8R7yYiSe3pzPtVSUHw3cNM4s,2186
|
|
83
96
|
strix/tools/reporting/reporting_actions_schema.xml,sha256=y_g0iuyBuCh79fvA0ri8fOPlXY7uUd-P-mdzXLUyIJg,1629
|
|
@@ -92,8 +105,8 @@ strix/tools/thinking/thinking_actions_schema.xml,sha256=otD4dOhQx4uyudLnjA_HIP6E
|
|
|
92
105
|
strix/tools/web_search/__init__.py,sha256=m5PCHXqeNVraLRLNIbh54Z2N4Y_75d-ftqwyq3dbCd0,70
|
|
93
106
|
strix/tools/web_search/web_search_actions.py,sha256=LRS3AjGO4JLIyu_B6-ogfWOsnENwqrrCa8Rz0vxuuGQ,3107
|
|
94
107
|
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.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|