You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(cli): enhance /init command to create custom slash command (#7888)
* feat(cli): enhance /init command to create custom slash command
Update the /init slash command prompt to also create a custom "review"
slash command file at .continue/rules/review.md with invokable frontmatter
and review-focused instructions.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
* fix: address feedback
---------
Co-authored-by: Claude <[email protected]>
return`Please analyze this repository and create a comprehensive AGENTS.md file. Use your available tools to understand the project structure, read important files like README.md, package.json, requirements.txt, and other configuration files to understand the technology stack and setup.
return`Please analyze this repository and create a comprehensive AGENTS.md file, along with a custom slash command. Use your available tools to understand the project structure, read important files like README.md, package.json, requirements.txt, and other configuration files to understand the technology stack and setup.
7
9
8
10
Create an AGENTS.md file with the following structure:
9
11
@@ -30,7 +32,23 @@ Create an AGENTS.md file with the following structure:
30
32
- Development environment setup
31
33
- Lint and format commands
32
34
33
-
Please create the AGENTS.md file using the Write tool after analyzing the repository. Focus on providing actionable information that would help both AI agents and human developers understand and work effectively with this codebase. Keep the file concise but informational.`;
35
+
Additionally, create a slash command file at ${relativeRuleFilepath} with the following structure:
36
+
37
+
\`\`\`md
38
+
---
39
+
invokable: true
40
+
---
41
+
42
+
Review this code for potential issues, including:
43
+
44
+
<insert custom things to look for based on the repository details you find>
45
+
46
+
Provide specific, actionable feedback for improvements.
47
+
\`\`\`
48
+
49
+
This slash command will be invokable using /review and will provide instructions for code review tasks common to this repository.
50
+
51
+
Please create both the AGENTS.md file and the .continue/rules/review.md file using the Write tool after analyzing the repository. Focus on providing actionable information that would help both AI agents and human developers understand and work effectively with this codebase. Keep the files concise but informational.`;
0 commit comments