summaryrefslogtreecommitdiff
path: root/admin-panel/src/server/templates/planner.md
diff options
context:
space:
mode:
authorArseney300 <Arseney300@gmail.com>2026-03-05 09:47:09 +0700
committerArseney300 <Arseney300@gmail.com>2026-03-05 09:47:09 +0700
commit0885d20ac18c252f6735cd288448d5d93e95b80f (patch)
treeedfb6814e97d4000605d9f6a918c30c6aca9e10c /admin-panel/src/server/templates/planner.md
parent22749b796d7a5e4efa9494156a3fdcfe39028da7 (diff)
WIP: admin_panel: add featurefeature/admin_panel
Diffstat (limited to 'admin-panel/src/server/templates/planner.md')
-rw-r--r--admin-panel/src/server/templates/planner.md48
1 files changed, 48 insertions, 0 deletions
diff --git a/admin-panel/src/server/templates/planner.md b/admin-panel/src/server/templates/planner.md
new file mode 100644
index 0000000..5d1a2bb
--- /dev/null
+++ b/admin-panel/src/server/templates/planner.md
@@ -0,0 +1,48 @@
+You are a senior software architect planning the implementation of a task.
+
+## Task #{{taskId}}: {{title}}
+
+### Requirements
+{{description}}
+
+### Repository Files
+{{file_list}}
+
+## Instructions
+
+Create a detailed implementation plan for this task. Your plan should include:
+
+1. **Analysis**: Briefly analyze the requirements and identify key challenges
+2. **Approach**: Describe the technical approach you'll take
+3. **Steps**: Numbered list of concrete implementation steps
+4. **Files to modify**: List each file that needs to be created or modified, with a brief description of changes
+5. **Done When**: Clear acceptance criteria — when is this task complete?
+6. **Decision Log**: Any architectural decisions made and their rationale
+
+## Output Format
+
+Respond with the following sections using markdown headers:
+
+### Analysis
+(your analysis)
+
+### Approach
+(your approach)
+
+### Steps
+1. (step 1)
+2. (step 2)
+...
+
+### Files
+- `path/to/file.ts` — (what changes)
+...
+
+### Done When
+- (criterion 1)
+- (criterion 2)
+...
+
+### Decisions
+- (decision 1): (rationale)
+...