Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devflow/cli/commands/git_new_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ def _build_issue_creation_prompt(
"Your task:",
f"1. Analyze the codebase to understand how to implement: {goal}",
"2. Read relevant files, search for patterns, understand the architecture",
f"3. Create a detailed GitHub/GitLab issue{' (' + issue_type + ')' if issue_type else ''} using the 'daf git create' command",
f"3. Create the GitHub/GitLab issue{' (' + issue_type + ')' if issue_type else ''} using 'daf git create' (this session uses GitHub/GitLab backend)",
"4. Include detailed description and acceptance criteria based on your analysis",
"",
])
Expand Down
2 changes: 1 addition & 1 deletion devflow/cli/commands/jira_new_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def _build_ticket_creation_prompt(
"Your task:",
f"1. Analyze the codebase to understand how to implement: {goal}",
"2. Read relevant files, search for patterns, understand the architecture",
f"3. Create a detailed JIRA {issue_type} using the 'daf jira create' command",
f"3. Create the JIRA {issue_type} using 'daf jira create' (this session uses JIRA backend)",
parent_instruction,
f"5. Use project: {project}; configured defaults: {defaults_str}",
"6. Include detailed description and acceptance criteria based on your analysis",
Expand Down
Loading