cursorflow 1.3.4__tar.gz → 1.3.6__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-1.3.4 → cursorflow-1.3.6}/PKG-INFO +2 -2
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/browser_controller.py +4 -4
- {cursorflow-1.3.4 → cursorflow-1.3.6}/pyproject.toml +2 -2
- {cursorflow-1.3.4 → cursorflow-1.3.6}/LICENSE +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/MANIFEST.in +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/README.md +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/__init__.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/auto_updater.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/cli.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/agent.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/auth_handler.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/browser_engine.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/css_iterator.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/cursor_integration.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/cursorflow.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/error_correlator.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/event_correlator.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/file_change_monitor.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/log_collector.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/log_monitor.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/mockup_comparator.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/persistent_session.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/core/report_generator.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/install_cursorflow_rules.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/log_sources/local_file.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/log_sources/ssh_remote.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/rules/__init__.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/rules/cursorflow-installation.mdc +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/rules/cursorflow-usage.mdc +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow/updater.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/cursorflow.egg-info/SOURCES.txt +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/docs/USER_MANUAL.md +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/examples/comprehensive_screenshot_example.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/examples/mockup_comparison_example.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/examples/opensas_example.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/examples/react_example.py +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/setup.cfg +0 -0
- {cursorflow-1.3.4 → cursorflow-1.3.6}/setup.py +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cursorflow
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.6
|
4
4
|
Summary: Complete page intelligence for AI-driven development - captures DOM, network, console, and performance data
|
5
|
-
Author-email: GeekWarrior Development <
|
5
|
+
Author-email: GeekWarrior Development <rbush@cooltheory.com>
|
6
6
|
License-Expression: MIT
|
7
7
|
Project-URL: Homepage, https://github.com/haley-marketing-group/cursorflow
|
8
8
|
Project-URL: Documentation, https://cursorflow.readthedocs.io
|
@@ -48,7 +48,7 @@ class BrowserController:
|
|
48
48
|
self.logger = logging.getLogger(__name__)
|
49
49
|
|
50
50
|
# Ensure artifacts directory exists
|
51
|
-
Path("artifacts/screenshots").mkdir(parents=True, exist_ok=True)
|
51
|
+
Path(".cursorflow/artifacts/screenshots").mkdir(parents=True, exist_ok=True)
|
52
52
|
|
53
53
|
async def initialize(self):
|
54
54
|
"""Initialize browser with universal settings"""
|
@@ -75,7 +75,7 @@ class BrowserController:
|
|
75
75
|
context_config = {
|
76
76
|
"viewport": viewport,
|
77
77
|
"ignore_https_errors": True,
|
78
|
-
"record_video_dir": "artifacts/videos" if self.config.get("record_video") else None
|
78
|
+
"record_video_dir": ".cursorflow/artifacts/videos" if self.config.get("record_video") else None
|
79
79
|
}
|
80
80
|
|
81
81
|
self.context = await self.browser.new_context(**context_config)
|
@@ -317,7 +317,7 @@ class BrowserController:
|
|
317
317
|
"""Take screenshot with comprehensive page analysis - universal"""
|
318
318
|
try:
|
319
319
|
timestamp = int(time.time())
|
320
|
-
screenshot_filename = f"artifacts/screenshots/{name}_{timestamp}.png"
|
320
|
+
screenshot_filename = f".cursorflow/artifacts/screenshots/{name}_{timestamp}.png"
|
321
321
|
|
322
322
|
# Take the visual screenshot
|
323
323
|
await self.page.screenshot(
|
@@ -338,7 +338,7 @@ class BrowserController:
|
|
338
338
|
comprehensive_data = await self._capture_comprehensive_page_analysis()
|
339
339
|
|
340
340
|
# Save comprehensive data alongside screenshot
|
341
|
-
data_filename = f"artifacts/screenshots/{name}_{timestamp}_comprehensive_data.json"
|
341
|
+
data_filename = f".cursorflow/artifacts/screenshots/{name}_{timestamp}_comprehensive_data.json"
|
342
342
|
import json
|
343
343
|
with open(data_filename, 'w') as f:
|
344
344
|
json.dump(comprehensive_data, f, indent=2, default=str)
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "cursorflow"
|
7
|
-
version = "1.3.
|
7
|
+
version = "1.3.6"
|
8
8
|
description = "Complete page intelligence for AI-driven development - captures DOM, network, console, and performance data"
|
9
9
|
authors = [
|
10
|
-
{name = "GeekWarrior Development", email = "
|
10
|
+
{name = "GeekWarrior Development", email = "rbush@cooltheory.com"}
|
11
11
|
]
|
12
12
|
readme = "README.md"
|
13
13
|
license = "MIT"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|