Skip to content

Commit c668556

Browse files
Sergio SisternesCopilot
andcommitted
fix: address Copilot review feedback (#603)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e151b56 commit c668556

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/apm_cli/commands/init.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def init(ctx, project_name, yes, plugin, verbose):
134134
start_prompt_path.write_text(START_PROMPT_TEMPLATE, encoding="utf-8")
135135
start_prompt_created = True
136136
else:
137-
logger.progress("start.prompt.md already exists, skipping")
137+
logger.progress(f"{START_PROMPT_FILENAME} already exists, skipping")
138138

139139
# Create plugin.json for plugin mode
140140
if plugin:
@@ -159,7 +159,7 @@ def init(ctx, project_name, yes, plugin, verbose):
159159
logger.progress("Created:")
160160
click.echo(" * apm.yml - Project configuration")
161161
if start_prompt_created:
162-
click.echo(" * start.prompt.md - Starter prompt")
162+
click.echo(f" * {START_PROMPT_FILENAME} - Starter prompt")
163163
if plugin:
164164
click.echo(" * plugin.json - Plugin metadata")
165165

@@ -175,7 +175,7 @@ def init(ctx, project_name, yes, plugin, verbose):
175175
next_steps = [
176176
"Install a runtime: apm runtime setup copilot",
177177
"Add APM dependencies: apm install <owner>/<repo>",
178-
"Edit your prompt: start.prompt.md",
178+
"Edit your prompt: start.prompt.md (or .apm/prompts/start.prompt.md)",
179179
"Run your first workflow: apm run start",
180180
]
181181

0 commit comments

Comments
 (0)