valicode 2.0.0__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.
- valicode-2.0.0/PKG-INFO +55 -0
- valicode-2.0.0/README.md +31 -0
- valicode-2.0.0/aov/__init__.py +1 -0
- valicode-2.0.0/aov/cli.py +1705 -0
- valicode-2.0.0/pyproject.toml +39 -0
- valicode-2.0.0/setup.cfg +4 -0
- valicode-2.0.0/valicode.egg-info/PKG-INFO +55 -0
- valicode-2.0.0/valicode.egg-info/SOURCES.txt +10 -0
- valicode-2.0.0/valicode.egg-info/dependency_links.txt +1 -0
- valicode-2.0.0/valicode.egg-info/entry_points.txt +3 -0
- valicode-2.0.0/valicode.egg-info/requires.txt +3 -0
- valicode-2.0.0/valicode.egg-info/top_level.txt +1 -0
valicode-2.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: valicode
|
|
3
|
+
Version: 2.0.0
|
|
4
|
+
Summary: Valicode CLI
|
|
5
|
+
Author: Valicode
|
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
|
7
|
+
Project-URL: Homepage, https://valicode.sbs
|
|
8
|
+
Project-URL: Documentation, https://valicode.sbs/docs
|
|
9
|
+
Keywords: ai,code-review,security,cli,github
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
18
|
+
Classifier: Topic :: Security
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
Requires-Dist: click>=8.1
|
|
22
|
+
Requires-Dist: httpx>=0.27
|
|
23
|
+
Requires-Dist: toml>=0.10
|
|
24
|
+
|
|
25
|
+
# Valicode CLI
|
|
26
|
+
|
|
27
|
+
Valicode audits code changes for security, reliability, and production readiness.
|
|
28
|
+
|
|
29
|
+
## Install
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
python -m pip install valicode
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Configure
|
|
36
|
+
|
|
37
|
+
Create an API key at https://valicode.sbs/dashboard/api-keys, then run:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
valicode login
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Use
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
valicode doctor --check-api
|
|
47
|
+
valicode scan . --dry-run
|
|
48
|
+
valicode scan . --output summary
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
The CLI uses `https://api.valicode.sbs/v1` by default. To override it:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
valicode config set api_base https://api.valicode.sbs/v1
|
|
55
|
+
```
|
valicode-2.0.0/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Valicode CLI
|
|
2
|
+
|
|
3
|
+
Valicode audits code changes for security, reliability, and production readiness.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
python -m pip install valicode
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Configure
|
|
12
|
+
|
|
13
|
+
Create an API key at https://valicode.sbs/dashboard/api-keys, then run:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
valicode login
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Use
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
valicode doctor --check-api
|
|
23
|
+
valicode scan . --dry-run
|
|
24
|
+
valicode scan . --output summary
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
The CLI uses `https://api.valicode.sbs/v1` by default. To override it:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
valicode config set api_base https://api.valicode.sbs/v1
|
|
31
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|