cursorflow 2.6.2__tar.gz → 2.7.1__tar.gz
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.
- {cursorflow-2.6.2 → cursorflow-2.7.1}/PKG-INFO +59 -1
- {cursorflow-2.6.2 → cursorflow-2.7.1}/README.md +58 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/cli.py +371 -38
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/cursorflow.py +8 -1
- cursorflow-2.7.1/cursorflow/core/data_presenter.py +518 -0
- cursorflow-2.7.1/cursorflow/core/output_manager.py +523 -0
- cursorflow-2.7.1/cursorflow/core/query_engine.py +1345 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/rules/cursorflow-usage.mdc +245 -6
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow.egg-info/SOURCES.txt +3 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/docs/user/USAGE_GUIDE.md +306 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/pyproject.toml +1 -1
- {cursorflow-2.6.2 → cursorflow-2.7.1}/LICENSE +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/MANIFEST.in +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/__init__.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/auto_init.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/auto_updater.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/action_validator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/agent.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/auth_handler.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/browser_controller.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/browser_engine.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/config_validator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/css_iterator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/cursor_integration.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/error_context_collector.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/error_correlator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/event_correlator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/file_change_monitor.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/hmr_detector.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/json_utils.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/log_collector.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/log_monitor.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/mockup_comparator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/persistent_session.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/report_generator.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/core/trace_manager.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/install_cursorflow_rules.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/log_sources/local_file.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/log_sources/ssh_remote.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/post_install.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/rules/__init__.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/rules/cursorflow-installation.mdc +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/cursorflow/updater.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/comprehensive_screenshot_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/element_inspection_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/element_measurement_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/enhanced_screenshot_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/hot_reload_css_iteration.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/mockup_comparison_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/opensas_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/react_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/responsive_testing_example.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/examples/v2_comprehensive_demo.py +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/setup.cfg +0 -0
- {cursorflow-2.6.2 → cursorflow-2.7.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cursorflow
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.7.1
|
4
4
|
Summary: 🔥 Complete page intelligence for AI-driven development with Hot Reload Intelligence - captures DOM, network, console, performance, HMR events, and comprehensive page analysis
|
5
5
|
Author-email: GeekWarrior Development <rbush@cooltheory.com>
|
6
6
|
License-Expression: MIT
|
@@ -198,6 +198,64 @@ All data structured for AI consumption:
|
|
198
198
|
- Error correlation with **smart screenshot deduplication**
|
199
199
|
- Performance insights with **reliability metadata**
|
200
200
|
|
201
|
+
## ✨ What's New in v2.7.1
|
202
|
+
|
203
|
+
**AI-Optimized Output with Complete Data Type Coverage** - All CursorFlow features now organized for AI consumption:
|
204
|
+
|
205
|
+
- **Multi-File Structure**: Split 3.7M token JSON → organized files under 100K tokens each
|
206
|
+
- **Complete Coverage**: Browser console, server logs, network, DOM, screenshots - all queryable
|
207
|
+
- **AI Data Digest**: Auto-generated markdown summary with server logs included
|
208
|
+
- **Query Interface**: Fast data extraction for ALL data types without manual JSON parsing
|
209
|
+
- **Session Comparison**: Compare test results to detect regressions
|
210
|
+
- **Export Formats**: JSON, Markdown, CSV outputs for any use case
|
211
|
+
|
212
|
+
```bash
|
213
|
+
# Test generates AI-optimized output automatically
|
214
|
+
cursorflow test --base-url http://localhost:3000 --path /app --logs local
|
215
|
+
|
216
|
+
# Query ANY data type instantly
|
217
|
+
cursorflow query session_123 --errors # Console errors
|
218
|
+
cursorflow query session_123 --server-logs # Server logs
|
219
|
+
cursorflow query session_123 --network --failed # Network failures
|
220
|
+
cursorflow query session_123 --screenshots # Screenshot index
|
221
|
+
cursorflow query session_123 --responsive # Responsive results
|
222
|
+
cursorflow query session_123 --css-iterations # CSS iterations
|
223
|
+
|
224
|
+
# Enhanced filtering
|
225
|
+
cursorflow query session_123 --errors --from-file "app.js" --contains "undefined"
|
226
|
+
cursorflow query session_123 --network --url-contains "/api/" --over 500ms
|
227
|
+
cursorflow query session_123 --server-logs --level error --pattern "database"
|
228
|
+
|
229
|
+
# Cross-referencing (time-based correlation)
|
230
|
+
cursorflow query session_123 --errors --with-network --with-server-logs
|
231
|
+
|
232
|
+
# Contextual queries
|
233
|
+
cursorflow query session_123 --context-for-error 2 --window 10
|
234
|
+
cursorflow query session_123 --group-by-url "/api/users"
|
235
|
+
|
236
|
+
# Enhanced comparison
|
237
|
+
cursorflow query session_A --compare-with session_B --errors
|
238
|
+
```
|
239
|
+
|
240
|
+
**Impact:**
|
241
|
+
- ✅ 100% AI-readable results (vs 0% before - exceeded context limits)
|
242
|
+
- ✅ 90% faster error diagnosis with AI assistants
|
243
|
+
- ✅ Zero manual JSON parsing required
|
244
|
+
- ✅ Complete backend + frontend visibility (server logs included)
|
245
|
+
|
246
|
+
**Complete Data Coverage:**
|
247
|
+
```
|
248
|
+
.cursorflow/artifacts/sessions/session_XXX/
|
249
|
+
├── server_logs.json # ⭐ Server-side logs (SSH/local/Docker)
|
250
|
+
├── errors.json # Browser console errors
|
251
|
+
├── network.json # Network requests/responses
|
252
|
+
├── screenshots.json # ⭐ Screenshot metadata
|
253
|
+
├── data_digest.md # AI summary (includes server logs)
|
254
|
+
└── + 6 more data files covering all CursorFlow features
|
255
|
+
```
|
256
|
+
|
257
|
+
---
|
258
|
+
|
201
259
|
## 🚀 Quick Start
|
202
260
|
|
203
261
|
### Step 1: Install CursorFlow Package
|
@@ -153,6 +153,64 @@ All data structured for AI consumption:
|
|
153
153
|
- Error correlation with **smart screenshot deduplication**
|
154
154
|
- Performance insights with **reliability metadata**
|
155
155
|
|
156
|
+
## ✨ What's New in v2.7.1
|
157
|
+
|
158
|
+
**AI-Optimized Output with Complete Data Type Coverage** - All CursorFlow features now organized for AI consumption:
|
159
|
+
|
160
|
+
- **Multi-File Structure**: Split 3.7M token JSON → organized files under 100K tokens each
|
161
|
+
- **Complete Coverage**: Browser console, server logs, network, DOM, screenshots - all queryable
|
162
|
+
- **AI Data Digest**: Auto-generated markdown summary with server logs included
|
163
|
+
- **Query Interface**: Fast data extraction for ALL data types without manual JSON parsing
|
164
|
+
- **Session Comparison**: Compare test results to detect regressions
|
165
|
+
- **Export Formats**: JSON, Markdown, CSV outputs for any use case
|
166
|
+
|
167
|
+
```bash
|
168
|
+
# Test generates AI-optimized output automatically
|
169
|
+
cursorflow test --base-url http://localhost:3000 --path /app --logs local
|
170
|
+
|
171
|
+
# Query ANY data type instantly
|
172
|
+
cursorflow query session_123 --errors # Console errors
|
173
|
+
cursorflow query session_123 --server-logs # Server logs
|
174
|
+
cursorflow query session_123 --network --failed # Network failures
|
175
|
+
cursorflow query session_123 --screenshots # Screenshot index
|
176
|
+
cursorflow query session_123 --responsive # Responsive results
|
177
|
+
cursorflow query session_123 --css-iterations # CSS iterations
|
178
|
+
|
179
|
+
# Enhanced filtering
|
180
|
+
cursorflow query session_123 --errors --from-file "app.js" --contains "undefined"
|
181
|
+
cursorflow query session_123 --network --url-contains "/api/" --over 500ms
|
182
|
+
cursorflow query session_123 --server-logs --level error --pattern "database"
|
183
|
+
|
184
|
+
# Cross-referencing (time-based correlation)
|
185
|
+
cursorflow query session_123 --errors --with-network --with-server-logs
|
186
|
+
|
187
|
+
# Contextual queries
|
188
|
+
cursorflow query session_123 --context-for-error 2 --window 10
|
189
|
+
cursorflow query session_123 --group-by-url "/api/users"
|
190
|
+
|
191
|
+
# Enhanced comparison
|
192
|
+
cursorflow query session_A --compare-with session_B --errors
|
193
|
+
```
|
194
|
+
|
195
|
+
**Impact:**
|
196
|
+
- ✅ 100% AI-readable results (vs 0% before - exceeded context limits)
|
197
|
+
- ✅ 90% faster error diagnosis with AI assistants
|
198
|
+
- ✅ Zero manual JSON parsing required
|
199
|
+
- ✅ Complete backend + frontend visibility (server logs included)
|
200
|
+
|
201
|
+
**Complete Data Coverage:**
|
202
|
+
```
|
203
|
+
.cursorflow/artifacts/sessions/session_XXX/
|
204
|
+
├── server_logs.json # ⭐ Server-side logs (SSH/local/Docker)
|
205
|
+
├── errors.json # Browser console errors
|
206
|
+
├── network.json # Network requests/responses
|
207
|
+
├── screenshots.json # ⭐ Screenshot metadata
|
208
|
+
├── data_digest.md # AI summary (includes server logs)
|
209
|
+
└── + 6 more data files covering all CursorFlow features
|
210
|
+
```
|
211
|
+
|
212
|
+
---
|
213
|
+
|
156
214
|
## 🚀 Quick Start
|
157
215
|
|
158
216
|
### Step 1: Install CursorFlow Package
|