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.
Files changed (2) hide show
  1. package/README.md +20 -20
  2. 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-2024-01-15.json
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-2024-01-15.json
189
- ├── build-strategy-plan-2024-01-15.json
190
- ├── build-strategy-tasks-2024-01-15.json
191
- └── build-strategy-comparison-2024-01-15.json
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
- **TypeScript Integration:**
195
-
196
- ```typescript
197
- import { BuildStrategyManager } from "./buildStrategyManager";
198
-
199
- const manager = new BuildStrategyManager();
200
-
201
- // Load latest recommendations
202
- const recommendations = await manager.loadStrategyData("recommendations");
203
-
204
- // Load specific date
205
- const plan = await manager.loadStrategyData("plan", "2024-01-15");
206
-
207
- // List all available files
208
- const files = await manager.listStrategyFiles();
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mycontext-cli",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "MyContext CLI - AI-powered component generation with interactive build strategy planning, shadcn/ui and Next.js 15 integration",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {