agent-strike 0.1.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.
- agent_strike-0.1.0/PKG-INFO +14 -0
- agent_strike-0.1.0/README.md +4 -0
- agent_strike-0.1.0/agent_strike.egg-info/PKG-INFO +14 -0
- agent_strike-0.1.0/agent_strike.egg-info/SOURCES.txt +6 -0
- agent_strike-0.1.0/agent_strike.egg-info/dependency_links.txt +1 -0
- agent_strike-0.1.0/agent_strike.egg-info/top_level.txt +1 -0
- agent_strike-0.1.0/pyproject.toml +18 -0
- agent_strike-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-strike
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Agent Strike — Offensive LLM Security Testing. Coming soon by Sandeep.
|
|
5
|
+
Author-email: Sandeep-int <sandeep.int.2005@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/Sandeep-int/agent-shield
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Agent Strike
|
|
12
|
+
Offensive LLM Security Testing Tool — coming soon.
|
|
13
|
+
By Sandeep (github.com/Sandeep-int)
|
|
14
|
+
Copyright (c) 2026 Sandeep. All Rights Reserved.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-strike
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Agent Strike — Offensive LLM Security Testing. Coming soon by Sandeep.
|
|
5
|
+
Author-email: Sandeep-int <sandeep.int.2005@gmail.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://github.com/Sandeep-int/agent-shield
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Agent Strike
|
|
12
|
+
Offensive LLM Security Testing Tool — coming soon.
|
|
13
|
+
By Sandeep (github.com/Sandeep-int)
|
|
14
|
+
Copyright (c) 2026 Sandeep. All Rights Reserved.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agent-strike"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Agent Strike — Offensive LLM Security Testing. Coming soon by Sandeep."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Proprietary" }
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
dependencies = []
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Sandeep-int", email = "sandeep.int.2005@gmail.com" }
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/Sandeep-int/agent-shield"
|