mycontext-cli 1.0.83 → 1.0.84
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.
- package/README.md +20 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,7 +163,7 @@ $ mycontext build-strategy --recommend
|
|
|
163
163
|
💡 Reasoning:
|
|
164
164
|
Vertical slice approach recommended for balanced development with quick user value
|
|
165
165
|
|
|
166
|
-
💾 Saved to: /path/to/project/.mycontext/build-strategy-recommendations-
|
|
166
|
+
💾 Saved to: /path/to/project/.mycontext/build-strategy-recommendations-2025-09-23.json
|
|
167
167
|
```
|
|
168
168
|
|
|
169
169
|
### Strategy Data Management
|
|
@@ -185,27 +185,27 @@ mycontext build-strategy --load comparison
|
|
|
185
185
|
|
|
186
186
|
```
|
|
187
187
|
.mycontext/
|
|
188
|
-
├── build-strategy-recommendations-
|
|
189
|
-
├── build-strategy-plan-
|
|
190
|
-
├── build-strategy-tasks-
|
|
191
|
-
└── build-strategy-comparison-
|
|
188
|
+
├── build-strategy-recommendations-2025-09-23.json
|
|
189
|
+
├── build-strategy-plan-2025-09-23.json
|
|
190
|
+
├── build-strategy-tasks-2025-09-23.json
|
|
191
|
+
└── build-strategy-comparison-2025-09-23.json
|
|
192
192
|
```
|
|
193
193
|
|
|
194
|
-
**
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
194
|
+
**File Format:**
|
|
195
|
+
|
|
196
|
+
Each saved strategy file contains:
|
|
197
|
+
|
|
198
|
+
```json
|
|
199
|
+
{
|
|
200
|
+
"type": "recommendations",
|
|
201
|
+
"generatedAt": "2025-09-23T11:05:52.000Z",
|
|
202
|
+
"projectPath": "/path/to/project",
|
|
203
|
+
"data": {
|
|
204
|
+
"recommended": [...],
|
|
205
|
+
"reasoning": "...",
|
|
206
|
+
"alternatives": [...]
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
209
|
```
|
|
210
210
|
|
|
211
211
|
## Configuration
|
package/package.json
CHANGED