Skip to content

Commit 4ba27c9

Browse files
committed
add model to frontmatter
1 parent 99d109b commit 4ba27c9

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.augment/commands/bug-fix.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
22
description: Generate a structured bug fix approach
33
argument-hint: [bug-description]
4+
model: gpt5
45
---
56

67
Help me fix this bug: $ARGUMENTS
78

89
Please provide:
10+
911
1. Root cause analysis
1012
2. Step-by-step fix approach
1113
3. Testing strategy
1214
4. Prevention measures for similar issues
13-

.augment/commands/code-review.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
description: Perform a comprehensive code review
33
argument-hint: [file-path]
4+
model: gpt5
45
---
56

67
Please perform a comprehensive code review of the specified file or current changes, focusing on:
@@ -12,4 +13,3 @@ Please perform a comprehensive code review of the specified file or current chan
1213
5. Documentation: Check if code is properly documented
1314

1415
$ARGUMENTS
15-

.augment/commands/documentation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: Generate comprehensive documentation
33
argument-hint: [file-or-component]
4+
model: gpt5
45
---
56

67
Generate documentation for: $ARGUMENTS
78

89
Include:
10+
911
1. Overview and purpose
1012
2. API reference with parameters and return values
1113
3. Usage examples with code snippets
@@ -14,4 +16,3 @@ Include:
1416
6. Dependencies and requirements
1517

1618
Format as clear, structured markdown.
17-

.augment/commands/performance-optimization.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: Analyze and optimize code performance
33
argument-hint: [file-path]
4+
model: gpt5
45
---
56

67
Analyze the performance of: $ARGUMENTS
78

89
Please examine:
10+
911
1. Algorithm complexity and efficiency
1012
2. Memory usage patterns
1113
3. Database queries and optimization opportunities
@@ -14,4 +16,3 @@ Please examine:
1416
6. Rendering performance (for frontend code)
1517

1618
Suggest specific optimizations with expected impact.
17-

.augment/commands/security-review.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: Perform security analysis on code
33
argument-hint: [file-path]
4+
model: gpt5
45
---
56

67
Perform a security review of: $ARGUMENTS
78

89
Focus on:
10+
911
1. Input validation and sanitization
1012
2. Authentication and authorization checks
1113
3. Data exposure and privacy concerns
@@ -14,4 +16,3 @@ Focus on:
1416
6. Dependencies with known vulnerabilities
1517

1618
Provide specific recommendations for any issues found.
17-

.augment/commands/tests.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
description: Generate comprehensive test cases
33
argument-hint: [file-or-module]
4+
model: gpt5
45
---
56

67
Generate test cases for: $ARGUMENTS
78

89
Create tests covering:
10+
911
1. Happy path scenarios
1012
2. Edge cases and boundary conditions
1113
3. Error handling and exceptions
@@ -14,4 +16,3 @@ Create tests covering:
1416
6. Security edge cases
1517

1618
Use appropriate testing framework conventions and include setup/teardown as needed.
17-

0 commit comments

Comments
 (0)