@@ -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