arga-cli 0.1.6__tar.gz → 0.1.8__tar.gz

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.
Files changed (29) hide show
  1. {arga_cli-0.1.6 → arga_cli-0.1.8}/PKG-INFO +1 -23
  2. {arga_cli-0.1.6 → arga_cli-0.1.8}/README.md +0 -22
  3. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/main.py +327 -184
  4. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/__init__.py +13 -1
  5. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/provision.py +49 -12
  6. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/summary.py +19 -20
  7. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli.egg-info/PKG-INFO +1 -23
  8. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli.egg-info/SOURCES.txt +0 -1
  9. {arga_cli-0.1.6 → arga_cli-0.1.8}/pyproject.toml +1 -1
  10. arga_cli-0.1.8/tests/test_cli_test_url.py +107 -0
  11. arga_cli-0.1.6/tests/test_cli_scan.py +0 -113
  12. arga_cli-0.1.6/tests/test_cli_test_url.py +0 -50
  13. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/__init__.py +0 -0
  14. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/mcp.py +0 -0
  15. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/constants.py +0 -0
  16. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/env.py +0 -0
  17. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/output.py +0 -0
  18. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/prompts.py +0 -0
  19. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli/wizard/session.py +0 -0
  20. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli.egg-info/dependency_links.txt +0 -0
  21. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli.egg-info/entry_points.txt +0 -0
  22. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli.egg-info/requires.txt +0 -0
  23. {arga_cli-0.1.6 → arga_cli-0.1.8}/arga_cli.egg-info/top_level.txt +0 -0
  24. {arga_cli-0.1.6 → arga_cli-0.1.8}/setup.cfg +0 -0
  25. {arga_cli-0.1.6 → arga_cli-0.1.8}/tests/test_cli_git.py +0 -0
  26. {arga_cli-0.1.6 → arga_cli-0.1.8}/tests/test_cli_mcp.py +0 -0
  27. {arga_cli-0.1.6 → arga_cli-0.1.8}/tests/test_cli_runs.py +0 -0
  28. {arga_cli-0.1.6 → arga_cli-0.1.8}/tests/test_cli_validate_config.py +0 -0
  29. {arga_cli-0.1.6 → arga_cli-0.1.8}/tests/test_cli_validate_pr.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arga-cli
3
- Version: 0.1.6
3
+ Version: 0.1.8
4
4
  Summary: Command-line interface for Arga authentication, MCP installation, and browser validation
5
5
  Author: Arga Labs
6
6
  Project-URL: Homepage, https://github.com/ArgaLabs/arga-cli
@@ -33,7 +33,6 @@ Requires-Dist: rich>=13.0.0
33
33
  - Starts URL validation runs from the terminal.
34
34
  - Starts pull request validation runs from the terminal.
35
35
  - Wraps `git commit` and `git push` with Arga skip-validation helpers.
36
- - Starts and inspects Arga app scans.
37
36
 
38
37
  ## Installation
39
38
 
@@ -112,14 +111,6 @@ arga validate config arga-labs/validation-server
112
111
  arga validate config set arga-labs/validation-server --trigger branch --branch main --comments on
113
112
  ```
114
113
 
115
- Start an app scan and inspect it later:
116
-
117
- ```bash
118
- arga scan https://demo-app.com --budget 200
119
- arga scan status <run_id>
120
- arga scan report <run_id>
121
- ```
122
-
123
114
  List and inspect recent validation runs:
124
115
 
125
116
  ```bash
@@ -173,19 +164,6 @@ arga test url \
173
164
 
174
165
  Both `--email` and `--password` must be supplied together.
175
166
 
176
- ### App Scans
177
-
178
- ```bash
179
- arga scan https://demo-app.com --budget 200
180
- arga scan status <run_id>
181
- arga scan report <run_id>
182
- ```
183
-
184
- - `arga scan <url>` starts an app scan, waits for the generated scan plan to be ready, and auto-approves it so execution can begin.
185
- - `--budget` controls the red-team action budget and defaults to `200`.
186
- - `arga scan status <run_id>` prints the current run status and anomaly count.
187
- - `arga scan report <run_id>` prints the final JSON report once the scan has completed.
188
-
189
167
  ### Validation Runs
190
168
 
191
169
  ```bash
@@ -11,7 +11,6 @@
11
11
  - Starts URL validation runs from the terminal.
12
12
  - Starts pull request validation runs from the terminal.
13
13
  - Wraps `git commit` and `git push` with Arga skip-validation helpers.
14
- - Starts and inspects Arga app scans.
15
14
 
16
15
  ## Installation
17
16
 
@@ -90,14 +89,6 @@ arga validate config arga-labs/validation-server
90
89
  arga validate config set arga-labs/validation-server --trigger branch --branch main --comments on
91
90
  ```
92
91
 
93
- Start an app scan and inspect it later:
94
-
95
- ```bash
96
- arga scan https://demo-app.com --budget 200
97
- arga scan status <run_id>
98
- arga scan report <run_id>
99
- ```
100
-
101
92
  List and inspect recent validation runs:
102
93
 
103
94
  ```bash
@@ -151,19 +142,6 @@ arga test url \
151
142
 
152
143
  Both `--email` and `--password` must be supplied together.
153
144
 
154
- ### App Scans
155
-
156
- ```bash
157
- arga scan https://demo-app.com --budget 200
158
- arga scan status <run_id>
159
- arga scan report <run_id>
160
- ```
161
-
162
- - `arga scan <url>` starts an app scan, waits for the generated scan plan to be ready, and auto-approves it so execution can begin.
163
- - `--budget` controls the red-team action budget and defaults to `200`.
164
- - `arga scan status <run_id>` prints the current run status and anomaly count.
165
- - `arga scan report <run_id>` prints the final JSON report once the scan has completed.
166
-
167
145
  ### Validation Runs
168
146
 
169
147
  ```bash