Skip to content

Commit f3d0a2e

Browse files
committed
fix: restore AGENT_SKILLS_DIR_OVERRIDES compatibility export
1 parent 0ecd0a9 commit f3d0a2e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/specify_cli/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,6 +1493,11 @@ def load_init_options(project_path: Path) -> dict[str, Any]:
14931493
# Default skills directory for agents not in AGENT_CONFIG
14941494
DEFAULT_SKILLS_DIR = ".agents/skills"
14951495

1496+
# Backward-compatible export: kept for downstream tests/tools that still
1497+
# import this symbol, even though skills directory resolution now relies on
1498+
# AGENT_CONFIG folder + "skills" convention.
1499+
AGENT_SKILLS_DIR_OVERRIDES: dict[str, str] = {}
1500+
14961501
# Agents whose downloaded template already contains skills in the final layout.
14971502
#
14981503
# Technical debt note:

0 commit comments

Comments
 (0)