We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7c9812 commit 2e822beCopy full SHA for 2e822be
1 file changed
src/specify_cli/agents.py
@@ -378,6 +378,8 @@ def resolve_skill_placeholders(
378
# Fall back to init-options.json for projects that haven't migrated.
379
context_file = ""
380
try:
381
+ # Local import: _load_agent_context_config lives in __init__.py
382
+ # which imports agents.py, so a top-level import would be circular.
383
from . import _load_agent_context_config
384
ac_cfg = _load_agent_context_config(project_root)
385
context_file = ac_cfg.get("context_file") or ""
0 commit comments