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
✨ Improve autotask prompt clarity and agent references
Based on prompt engineer review:
- Convert numbered list to goal-focused prose
- Add explicit file paths for all agent references
- Use /load-cursor-rules slash command instead of @ notation
- Clarify "straightforward tasks" definition
- Improve terminology consistency (execute vs run)
These changes reduce ambiguity and ensure the executing LLM can
parse all references without inferring context.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .claude/commands/autotask.md
+8-16Lines changed: 8 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,22 +14,14 @@ Execute a complete development task autonomously from description to PR-ready st
14
14
15
15
## What This Command Does
16
16
17
-
Takes your task description and autonomously:
18
-
19
-
1. Analyzes complexity and creates structured prompt if needed
20
-
2. Sets up isolated git worktree environment
21
-
3. Implements the solution using intelligent agent orchestration
22
-
4. Adaptive validation & review based on complexity
23
-
5. Creates PR with proper commit messages
24
-
6. Handles bot feedback autonomously
25
-
7. Delivers PR ready for your review
17
+
Takes your task description and autonomously delivers a pull request ready for your review. The command analyzes task complexity, sets up an isolated worktree environment, implements the solution using appropriate agents, performs adaptive validation scaled to risk level, and handles bot feedback intelligently.
26
18
27
19
You only need to provide the task description and review the final PR.
28
20
29
21
## Execution Flow
30
22
31
23
<task-preparation>
32
-
Ensure you have clear, unambiguous requirements before starting implementation. If the task description is unclear or has multiple valid interpretations, clarify requirements with the user before proceeding. For straightforward tasks, proceed directly to implementation.
24
+
Ensure you have clear, unambiguous requirements before starting implementation. If the task description is unclear or has multiple valid interpretations, clarify requirements with the user before proceeding. For tasks with clear requirements and single valid interpretation, proceed directly to implementation.
33
25
</task-preparation>
34
26
35
27
<worktree-setup>
@@ -39,14 +31,14 @@ Create a fully functional, isolated development environment in .gitworktrees/ wh
39
31
<autonomous-execution>
40
32
Implement the solution following project patterns and standards. Build a plan for which agents or approaches to use based on the task type. Available specialized agents:
Create your execution plan, then implement the solution. Use @commands/load-cursor-rules.md to load relevant project standards for the task. Run agents in parallel when possible, sequentially when they depend on each other.
41
+
Create your execution plan, then implement the solution. Use /load-cursor-rules to load relevant project standards for the task. Execute agents in parallel when possible, sequentially when they depend on each other.
0 commit comments