codejury 0.4.0__tar.gz → 0.4.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.
- {codejury-0.4.0 → codejury-0.4.1}/LICENSE +1 -1
- {codejury-0.4.0 → codejury-0.4.1}/PKG-INFO +4 -4
- {codejury-0.4.0 → codejury-0.4.1}/codejury.egg-info/PKG-INFO +4 -4
- {codejury-0.4.0 → codejury-0.4.1}/pyproject.toml +4 -4
- {codejury-0.4.0 → codejury-0.4.1}/README.md +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/agents/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/agents/base.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/agents/debate.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/agents/mock.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/agents/parsing.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/agents/verifier.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/assembly.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/cli.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/authentication.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/authorization.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/business_logic.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/crypto.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/data_protection.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/dependency_config.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/error_logging.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/input_validation.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/output_encoding.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/secrets.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/capabilities/session.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authn_bcrypt_password.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authn_jwt_noverify_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authn_jwt_verified_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authn_sha256_checksum_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authn_sha256_password.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authz_idor_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/authz_owner_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/cmdi_ossystem_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/cmdi_subprocess_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/crypto_aesgcm_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/crypto_ecb_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/path_contained_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/path_traversal_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/secrets_env_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/secrets_hardcoded_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/sqli_format_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/sqli_fstring_query.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/sqli_parameterized_query.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/xss_innerhtml_constant_safe.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/golden/xss_innerhtml_vuln.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/tasks/audit_diff_debate.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/data/tasks/quick_scan_single.yaml +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/domain/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/domain/artifact.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/domain/capability.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/domain/context.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/domain/observation.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/domain/result.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/evaluation.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/infrastructure/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/infrastructure/json_parse.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/orchestrators/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/orchestrators/base.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/orchestrators/debate.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/orchestrators/pipeline.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/orchestrators/reflexion.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/orchestrators/single.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/anthropic.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/base.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/litellm.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/mock.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/openai.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/openai_format.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/providers/retry.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/reporting.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/resources.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/base.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/callers.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/chunker.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/diff.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/function.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/mock.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/sources/repo.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/tasks/__init__.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/tasks/base.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury/tasks/registry.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury.egg-info/SOURCES.txt +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury.egg-info/dependency_links.txt +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury.egg-info/entry_points.txt +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury.egg-info/requires.txt +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/codejury.egg-info/top_level.txt +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/setup.cfg +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_anthropic_provider.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_assembly.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_audit_pipeline.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_callers.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_capability.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_cli_audit.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_context.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_debate_agents.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_debate_orchestrator.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_diff_source.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_evaluation.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_function_source.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_json_parse.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_litellm_provider.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_openai_provider.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_orchestrator.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_pipeline_orchestrator.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_reflexion_orchestrator.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_repo_source.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_reporting.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_retry_provider.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_tasks.py +0 -0
- {codejury-0.4.0 → codejury-0.4.1}/tests/test_verifier.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codejury
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: General-purpose Application Security AI audit framework -- five-layer architecture, capabilities as first-class data
|
|
5
|
-
Author:
|
|
5
|
+
Author: AISecLabs
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Repository, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/aiseclabs/codejury
|
|
8
|
+
Project-URL: Repository, https://github.com/aiseclabs/codejury
|
|
9
9
|
Keywords: security,appsec,static analysis,llm,owasp,asvs,code review
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codejury
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: General-purpose Application Security AI audit framework -- five-layer architecture, capabilities as first-class data
|
|
5
|
-
Author:
|
|
5
|
+
Author: AISecLabs
|
|
6
6
|
License-Expression: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Repository, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/aiseclabs/codejury
|
|
8
|
+
Project-URL: Repository, https://github.com/aiseclabs/codejury
|
|
9
9
|
Keywords: security,appsec,static analysis,llm,owasp,asvs,code review
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codejury"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.1"
|
|
4
4
|
description = "General-purpose Application Security AI audit framework -- five-layer architecture, capabilities as first-class data"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
license-files = ["LICENSE"]
|
|
9
|
-
authors = [{ name = "
|
|
9
|
+
authors = [{ name = "AISecLabs" }]
|
|
10
10
|
keywords = ["security", "appsec", "static analysis", "llm", "owasp", "asvs", "code review"]
|
|
11
11
|
classifiers = [
|
|
12
12
|
"Development Status :: 4 - Beta",
|
|
@@ -30,8 +30,8 @@ dev = ["pytest>=8.0"]
|
|
|
30
30
|
codejury = "codejury.cli:main"
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
33
|
-
Homepage = "https://github.com/
|
|
34
|
-
Repository = "https://github.com/
|
|
33
|
+
Homepage = "https://github.com/aiseclabs/codejury"
|
|
34
|
+
Repository = "https://github.com/aiseclabs/codejury"
|
|
35
35
|
|
|
36
36
|
[build-system]
|
|
37
37
|
requires = ["setuptools>=77"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|