Skip to content

Commit 7fec159

Browse files
committed
refactor: migrate Information package and add repo path helpers
Move GHSA/NVD fetchers under pure_auto_codeql.information with top-level re-export shims. Introduce get_repo_root/prompts_dir and fix codeql_gen_agents prompt path resolution after nested package layout.
1 parent f720056 commit 7fec159

15 files changed

Lines changed: 1082 additions & 974 deletions

Information/__init__.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
"""Helper modules for vulnerability intelligence fetchers."""
1+
"""Legacy GHSA/NVD intelligence package.
2+
3+
Implementation lives under ``pure_auto_codeql.information``. This top-level
4+
package re-exports the same modules for compatibility.
5+
"""
6+
7+
from pure_auto_codeql.information import ghsa_fetch, nvd_info_fetch
8+
9+
__all__ = ["ghsa_fetch", "nvd_info_fetch"]

0 commit comments

Comments
 (0)