/
mkudmi
/
gigaspec-kit
Обзор
Документация
Войти
/
mkudmi
/
gigaspec-kit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/specify_cli/_agent_config.py
20 строк
640 B
Copilot
feat!: remove legacy --ai, --ai-commands-dir, and --ai-skills flags (0.10.0) (#2872)
05 июн 2026, 22:56
Не верифицирован
05 июн 2026, 22:56
7106858
Код
Авторство
О чём код?
"""Agent configuration constants derived from the integration registry.""" from __future__ import annotations from typing import Any def _build_agent_config() -> dict[str, dict[str, Any]]: from .integrations import INTEGRATION_REGISTRY config: dict[str, dict[str, Any]] = {} for key, integration in INTEGRATION_REGISTRY.items(): if integration.config: config[key] = dict(integration.config) return config AGENT_CONFIG: dict[str, dict[str, Any]] = _build_agent_config() DEFAULT_INIT_INTEGRATION = "copilot" SCRIPT_TYPE_CHOICES: dict[str, str] = {"sh": "POSIX Shell (bash/zsh)", "ps": "PowerShell"}