Skip to content

Commit 4e869cb

Browse files
committed
Update __init__.py
1 parent 32c933c commit 4e869cb

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

src/specify_cli/__init__.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
╚══════╝╚═╝ ╚══════╝ ╚═════╝╚═╝╚═╝ ╚═╝
7878
"""
7979

80-
TAGLINE = "Spec-Driven Development Toolkit"
80+
TAGLINE = "GitHub Spec Kit - Spec-Driven Development Toolkit"
8181
class StepTracker:
8282
"""Track and render hierarchical steps without emojis, similar to Claude Code tree output.
8383
Supports live auto-refresh via an attached refresh callback.
@@ -951,15 +951,11 @@ def init(
951951
step_num = 2
952952

953953
steps_lines.append(f"{step_num}. Start using slash commands with your AI agent:")
954-
steps_lines.append(" [bold cyan]/constitution[/] - Establish project principles")
955-
step_num += 1
956-
steps_lines.append(f"{step_num}. [bold cyan]/specify[/] - Create specifications")
957-
step_num += 1
958-
steps_lines.append(f"{step_num}. [bold cyan]/plan[/] - Create implementation plans")
959-
step_num += 1
960-
steps_lines.append(f"{step_num}. [bold cyan]/tasks[/] - Generate actionable tasks")
961-
step_num += 1
962-
steps_lines.append(f"{step_num}. [bold cyan]/implement[/] - Execute implementation")
954+
steps_lines.append(" 2.1 [bold cyan]/constitution[/] - Establish project principles")
955+
steps_lines.append(" 2.2 [bold cyan]/specify[/] - Create specifications")
956+
steps_lines.append(" 2.3 [bold cyan]/plan[/] - Create implementation plans")
957+
steps_lines.append(" 2.4 [bold cyan]/tasks[/] - Generate actionable tasks")
958+
steps_lines.append(" 2.5 [bold cyan]/implement[/] - Execute implementation")
963959

964960
steps_panel = Panel("\n".join(steps_lines), title="Next steps", border_style="cyan", padding=(1,2))
965961
console.print()

0 commit comments

Comments
 (0)