Skip to content

Commit 5f89bd0

Browse files
blafourcadeclaude
andcommitted
fix(commands): separate VCS and ticketing abstractions
VCS (GitHub/GitLab/Bitbucket) and ticketing (Jira/Linear/GitHub Issues) are distinct concepts. Commands now reference the right abstraction: - Issue/ticket commands use "ticketing tool" from memory - PR/MR commands use VCS tool from memory Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent bf50a79 commit 5f89bd0

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

commands/03_plan/plan.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: plan
33
description: Generate technical implementation plans from requirements
4-
argument-hint: requirements (VCS issue URL or raw text)
4+
argument-hint: requirements (ticket URL or raw text)
55
model: opus
66
---
77

@@ -40,9 +40,9 @@ $ARGUMENTS
4040

4141
### Step 1: Parse Input
4242

43-
1. Detect input type (VCS issue URL vs raw text)
43+
1. Detect input type (ticket URL vs raw text)
4444
2. Extract requirements from input:
45-
- For VCS issue: fetch and parse issue content
45+
- For ticket URL: fetch and parse ticket content
4646
- For raw text: clean and structure the requirements
4747
3. Normalize text (handle vocal dictation issues)
4848
4. Print user journey simplified in ASCII diagram for better understanding and validation

commands/10_maintenance/new_issue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: new_issue
3-
description: Create issues in the configured VCS/ticketing tool
3+
description: Create issues in the configured ticketing tool
44
argument-hint: "Describe the problem you want to create an issue for"
55
model: sonnet
66
---
@@ -9,7 +9,7 @@ model: sonnet
99

1010
## Goal
1111

12-
Create an issue based on the problem: `$ARGUMENTS`
12+
Create a ticket based on the problem: `$ARGUMENTS`
1313

1414
## Context
1515

@@ -27,7 +27,7 @@ Create an issue based on the problem: `$ARGUMENTS`
2727

2828
## Rules
2929

30-
- From project memory identify the VCS/ticketing tool (GitHub, GitLab, Jira, etc.) and CLI or MCP to use.
30+
- From project memory identify the ticketing tool (Jira, Linear, GitHub Issues, etc.) and CLI or MCP to use.
3131
- Use CLI first, MCP as fallback.
3232
- Be thorough and concise in the issue description, focus on clarity, small sentences.
3333
- Visit the provided repo url and examine the repository's structure, existing issues, and documentation.

commands/10_maintenance/reproduce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Fix bug systematically using test-driven approach, from issue creation to pull r
2121

2222
## Steps
2323

24-
1. Create issue in configured VCS/ticketing tool with short descriptive title
24+
1. Create ticket in configured ticketing tool with short descriptive title
2525
2. Create fix branch
2626
3. Reproduce issue and understand root cause
2727
4. Write failing test demonstrating bug

0 commit comments

Comments
 (0)