Skip to content

Commit d6016ab

Browse files
Copilotmnriem
andauthored
style: simplify --agent help text, normalize comment spelling
Co-authored-by: mnriem <15701806+mnriem@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/spec-kit/sessions/930d8c4d-ce42-41fb-a40f-561fb1468e81
1 parent c2227a7 commit d6016ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/specify_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ def _handle_agent_skills_migration(console: Console, agent_key: str) -> None:
17151715
def init(
17161716
project_name: str = typer.Argument(None, help="Name for your new project directory (optional if using --here, or use '.' for current directory)"),
17171717
ai_assistant: str = typer.Option(None, "--ai", help=AI_ASSISTANT_HELP),
1718-
agent: str = typer.Option(None, "--agent", help="AI agent to use (pack-based flow — resolves through the agent pack system and records installed files for tracked teardown). Accepts the same agent IDs as --ai."),
1718+
agent: str = typer.Option(None, "--agent", help="AI agent to use (enables file tracking for clean teardown when switching agents). Accepts the same agent IDs as --ai."),
17191719
ai_commands_dir: str = typer.Option(None, "--ai-commands-dir", help="Directory for agent command files (required with --ai generic, e.g. .myagent/commands/)"),
17201720
script_type: str = typer.Option(None, "--script", help="Script type to use: sh or ps"),
17211721
ignore_agent_tools: bool = typer.Option(False, "--ignore-agent-tools", help="Skip checks for AI agent tools like Claude Code"),

tests/test_agent_pack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ def test_pack_commands_dir_matches_agent_config(self):
851851
folder = config.get("folder", "").rstrip("/")
852852
subdir = config.get("commands_subdir", "commands")
853853
expected_dir = f"{folder}/{subdir}" if folder else ""
854-
# Normalise path separators
854+
# Normalize path separators
855855
expected_dir = expected_dir.lstrip("/")
856856

857857
assert resolved.manifest.commands_dir == expected_dir, (

0 commit comments

Comments
 (0)