edsger 0.2.9 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { logInfo, logError } from '../../utils/logger.js';
|
|
2
2
|
import { processChecklistItemResultsFromResponse, } from '../../services/checklist.js';
|
|
3
3
|
import { verifyTechnicalDesignCompliance, } from '../technical-design-verification/index.js';
|
|
4
|
-
import { resolveFeedbacks
|
|
4
|
+
import { resolveFeedbacks } from '../../services/feedbacks.js';
|
|
5
5
|
import { createTechnicalDesignImprovementPrompt } from '../../prompts/technical-design-improvement.js';
|
|
6
6
|
import { logFeatureVerificationEvent } from '../../services/audit-logs.js';
|
|
7
7
|
/**
|
|
@@ -102,7 +102,7 @@ ${existingTechnicalDesign}
|
|
|
102
102
|
|
|
103
103
|
${contextInfo}
|
|
104
104
|
|
|
105
|
-
## IMPORTANT: Incremental Update Mode
|
|
105
|
+
## IMPORTANT: Incremental Update Mode - Feedback-Only Updates
|
|
106
106
|
|
|
107
107
|
You are in **INCREMENTAL UPDATE** mode. This means:
|
|
108
108
|
|
|
@@ -112,6 +112,14 @@ You are in **INCREMENTAL UPDATE** mode. This means:
|
|
|
112
112
|
4. **Preserve approved sections** - Keep all parts of the design that are not mentioned in feedbacks
|
|
113
113
|
5. **Track changes** - In your summary, clearly indicate what was modified and why
|
|
114
114
|
|
|
115
|
+
**CRITICAL RULE**:
|
|
116
|
+
- **ONLY optimize based on feedbacks** - Do NOT make other improvements or optimizations
|
|
117
|
+
- **Do NOT proactively improve** other parts of the design that feedbacks don't mention
|
|
118
|
+
- **Do NOT add features** that feedbacks don't request
|
|
119
|
+
- **Do NOT refactor** sections that feedbacks don't ask about
|
|
120
|
+
- If you see potential improvements but no feedback requests them, IGNORE them
|
|
121
|
+
- Your job is ONLY to address the specific feedbacks, nothing more
|
|
122
|
+
|
|
115
123
|
## Update Instructions
|
|
116
124
|
|
|
117
125
|
Follow this focused approach:
|
|
@@ -122,14 +130,16 @@ Follow this focused approach:
|
|
|
122
130
|
- Address each feedback point one by one
|
|
123
131
|
- Modify only the relevant sections of the design
|
|
124
132
|
- Preserve the structure and content of unchanged sections
|
|
133
|
+
- DO NOT touch sections that feedbacks don't mention
|
|
125
134
|
4. **Verify Completeness**: Ensure all feedbacks have been addressed
|
|
126
135
|
|
|
127
136
|
## Important Notes
|
|
128
137
|
- This is NOT a full redesign - only update what feedbacks specifically request
|
|
138
|
+
- DO NOT make improvements that feedbacks don't ask for
|
|
129
139
|
- Maintain consistency with the existing design's structure and style
|
|
130
140
|
- If a feedback is unclear, make your best interpretation and note it in recommendations
|
|
131
141
|
- Keep all approved content that is not mentioned in feedbacks
|
|
132
|
-
- Your summary should list
|
|
142
|
+
- Your summary should list ONLY the feedbacks addressed and the changes made for each
|
|
133
143
|
|
|
134
144
|
Begin by reviewing the feedbacks and identifying which sections of the current design need updates.`;
|
|
135
145
|
}
|