vigiskill 0.0.1__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Rafael Perez / ConservaTex, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: vigiskill
3
+ Version: 0.0.1
4
+ Summary: Vigiskill — security workbench for AI agent skills and OpenClaw mirror integrity. Placeholder package reserving the name for the upcoming production release.
5
+ Author-email: Rafael Perez <ceo@conservatex.net>
6
+ License: MIT
7
+ Project-URL: Homepage, https://vigiskill.com
8
+ Project-URL: Source, https://github.com/vigiskill/vigiskill
9
+ Project-URL: Issues, https://github.com/vigiskill/vigiskill/issues
10
+ Keywords: vigiskill,security,audit,ai-agent,openclaw,supply-chain,skill-sast
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: Topic :: Security
15
+ Classifier: Topic :: Software Development :: Quality Assurance
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Operating System :: OS Independent
23
+ Requires-Python: >=3.9
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Dynamic: license-file
27
+
28
+ # vigiskill
29
+
30
+ > **Placeholder package.** Vigiskill is a security workbench for AI agent skills and OpenClaw mirror integrity, currently in development.
31
+
32
+ This PyPI package reserves the name `vigiskill` while the production workbench is being built. It has no functionality yet.
33
+
34
+ ## What Vigiskill will do (when it ships)
35
+
36
+ Vigiskill audits AI agent deployments — specifically OpenClaw mirrors and the custom skills your team writes — to find and seal vulnerabilities before they reach production:
37
+
38
+ - **Mirror integrity audit** — provenance, tamper-diff, supply-chain checks on any OpenClaw fork
39
+ - **Custom skill SAST** — semantic static analysis of the skills your agents load
40
+ - **Hardening review** — Gateway exposure, sandbox config, plugin permissions
41
+ - **Vulnerability Knowledge Base** — curated, dated, scored advisories for the OpenClaw ecosystem
42
+
43
+ ## Status
44
+
45
+ This is the `vigiskill==0.0.1` placeholder. The real workbench will publish under this same package name when ready.
46
+
47
+ - Home: https://vigiskill.com *(coming soon)*
48
+ - Source: https://github.com/vigiskill
49
+ - Contact: ceo@conservatex.net
50
+
51
+ ## Install (placeholder only — does nothing yet)
52
+
53
+ ```bash
54
+ pip install vigiskill
55
+ ```
56
+
57
+ ## License
58
+
59
+ MIT
@@ -0,0 +1,32 @@
1
+ # vigiskill
2
+
3
+ > **Placeholder package.** Vigiskill is a security workbench for AI agent skills and OpenClaw mirror integrity, currently in development.
4
+
5
+ This PyPI package reserves the name `vigiskill` while the production workbench is being built. It has no functionality yet.
6
+
7
+ ## What Vigiskill will do (when it ships)
8
+
9
+ Vigiskill audits AI agent deployments — specifically OpenClaw mirrors and the custom skills your team writes — to find and seal vulnerabilities before they reach production:
10
+
11
+ - **Mirror integrity audit** — provenance, tamper-diff, supply-chain checks on any OpenClaw fork
12
+ - **Custom skill SAST** — semantic static analysis of the skills your agents load
13
+ - **Hardening review** — Gateway exposure, sandbox config, plugin permissions
14
+ - **Vulnerability Knowledge Base** — curated, dated, scored advisories for the OpenClaw ecosystem
15
+
16
+ ## Status
17
+
18
+ This is the `vigiskill==0.0.1` placeholder. The real workbench will publish under this same package name when ready.
19
+
20
+ - Home: https://vigiskill.com *(coming soon)*
21
+ - Source: https://github.com/vigiskill
22
+ - Contact: ceo@conservatex.net
23
+
24
+ ## Install (placeholder only — does nothing yet)
25
+
26
+ ```bash
27
+ pip install vigiskill
28
+ ```
29
+
30
+ ## License
31
+
32
+ MIT
@@ -0,0 +1,48 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "vigiskill"
7
+ version = "0.0.1"
8
+ description = "Vigiskill — security workbench for AI agent skills and OpenClaw mirror integrity. Placeholder package reserving the name for the upcoming production release."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Rafael Perez", email = "ceo@conservatex.net" }
14
+ ]
15
+ keywords = [
16
+ "vigiskill",
17
+ "security",
18
+ "audit",
19
+ "ai-agent",
20
+ "openclaw",
21
+ "supply-chain",
22
+ "skill-sast",
23
+ ]
24
+ classifiers = [
25
+ "Development Status :: 1 - Planning",
26
+ "Intended Audience :: Developers",
27
+ "Intended Audience :: Information Technology",
28
+ "Topic :: Security",
29
+ "Topic :: Software Development :: Quality Assurance",
30
+ "License :: OSI Approved :: MIT License",
31
+ "Programming Language :: Python :: 3",
32
+ "Programming Language :: Python :: 3.9",
33
+ "Programming Language :: Python :: 3.10",
34
+ "Programming Language :: Python :: 3.11",
35
+ "Programming Language :: Python :: 3.12",
36
+ "Operating System :: OS Independent",
37
+ ]
38
+
39
+ [project.urls]
40
+ Homepage = "https://vigiskill.com"
41
+ Source = "https://github.com/vigiskill/vigiskill"
42
+ Issues = "https://github.com/vigiskill/vigiskill/issues"
43
+
44
+ [tool.setuptools.packages.find]
45
+ where = ["src"]
46
+
47
+ [tool.setuptools.package-data]
48
+ vigiskill = ["py.typed"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,31 @@
1
+ """Vigiskill — placeholder package.
2
+
3
+ The real Vigiskill security workbench is in development.
4
+ This package reserves the PyPI name; it has no functionality yet.
5
+
6
+ Track development at https://vigiskill.com or https://github.com/vigiskill.
7
+ """
8
+
9
+ __version__ = "0.0.1"
10
+ __status__ = "placeholder"
11
+ __author__ = "Rafael Perez"
12
+ __email__ = "ceo@conservatex.net"
13
+ __license__ = "MIT"
14
+
15
+ __all__ = ["__version__", "__status__", "info"]
16
+
17
+
18
+ def info() -> dict[str, str]:
19
+ """Return placeholder package metadata.
20
+
21
+ The real Vigiskill API will replace this in version 1.0.0+.
22
+ """
23
+ return {
24
+ "name": "vigiskill",
25
+ "version": __version__,
26
+ "status": __status__,
27
+ "message": (
28
+ "Vigiskill is in development. This package reserves the name "
29
+ "on PyPI. See https://github.com/vigiskill for updates."
30
+ ),
31
+ }
File without changes
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: vigiskill
3
+ Version: 0.0.1
4
+ Summary: Vigiskill — security workbench for AI agent skills and OpenClaw mirror integrity. Placeholder package reserving the name for the upcoming production release.
5
+ Author-email: Rafael Perez <ceo@conservatex.net>
6
+ License: MIT
7
+ Project-URL: Homepage, https://vigiskill.com
8
+ Project-URL: Source, https://github.com/vigiskill/vigiskill
9
+ Project-URL: Issues, https://github.com/vigiskill/vigiskill/issues
10
+ Keywords: vigiskill,security,audit,ai-agent,openclaw,supply-chain,skill-sast
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: Topic :: Security
15
+ Classifier: Topic :: Software Development :: Quality Assurance
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Operating System :: OS Independent
23
+ Requires-Python: >=3.9
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Dynamic: license-file
27
+
28
+ # vigiskill
29
+
30
+ > **Placeholder package.** Vigiskill is a security workbench for AI agent skills and OpenClaw mirror integrity, currently in development.
31
+
32
+ This PyPI package reserves the name `vigiskill` while the production workbench is being built. It has no functionality yet.
33
+
34
+ ## What Vigiskill will do (when it ships)
35
+
36
+ Vigiskill audits AI agent deployments — specifically OpenClaw mirrors and the custom skills your team writes — to find and seal vulnerabilities before they reach production:
37
+
38
+ - **Mirror integrity audit** — provenance, tamper-diff, supply-chain checks on any OpenClaw fork
39
+ - **Custom skill SAST** — semantic static analysis of the skills your agents load
40
+ - **Hardening review** — Gateway exposure, sandbox config, plugin permissions
41
+ - **Vulnerability Knowledge Base** — curated, dated, scored advisories for the OpenClaw ecosystem
42
+
43
+ ## Status
44
+
45
+ This is the `vigiskill==0.0.1` placeholder. The real workbench will publish under this same package name when ready.
46
+
47
+ - Home: https://vigiskill.com *(coming soon)*
48
+ - Source: https://github.com/vigiskill
49
+ - Contact: ceo@conservatex.net
50
+
51
+ ## Install (placeholder only — does nothing yet)
52
+
53
+ ```bash
54
+ pip install vigiskill
55
+ ```
56
+
57
+ ## License
58
+
59
+ MIT
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/vigiskill/__init__.py
5
+ src/vigiskill/py.typed
6
+ src/vigiskill.egg-info/PKG-INFO
7
+ src/vigiskill.egg-info/SOURCES.txt
8
+ src/vigiskill.egg-info/dependency_links.txt
9
+ src/vigiskill.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ vigiskill