@@ -125,7 +125,7 @@ def init(ctx, project_name, yes, plugin, verbose):
125125 start_prompt_path .write_text (START_PROMPT_TEMPLATE , encoding = "utf-8" )
126126 start_prompt_created = True
127127 else :
128- logger .progress ("start.prompt.md already exists, skipping" )
128+ logger .progress (f" { START_PROMPT_FILENAME } already exists, skipping" )
129129
130130 # Create plugin.json for plugin mode
131131 if plugin :
@@ -150,7 +150,7 @@ def init(ctx, project_name, yes, plugin, verbose):
150150 logger .progress ("Created:" )
151151 click .echo (" * apm.yml - Project configuration" )
152152 if start_prompt_created :
153- click .echo (" * start.prompt.md - Starter prompt" )
153+ click .echo (f " * { START_PROMPT_FILENAME } - Starter prompt" )
154154 if plugin :
155155 click .echo (" * plugin.json - Plugin metadata" )
156156
@@ -166,7 +166,7 @@ def init(ctx, project_name, yes, plugin, verbose):
166166 next_steps = [
167167 "Install a runtime: apm runtime setup copilot" ,
168168 "Add APM dependencies: apm install <owner>/<repo>" ,
169- "Edit your prompt: start.prompt.md" ,
169+ "Edit your prompt: start.prompt.md (or .apm/prompts/start.prompt.md) " ,
170170 "Run your first workflow: apm run start" ,
171171 ]
172172
0 commit comments