cursorflow 1.3.5__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.
Files changed (38) hide show
  1. {cursorflow-1.3.5 → cursorflow-1.3.6}/PKG-INFO +1 -1
  2. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/browser_controller.py +4 -4
  3. {cursorflow-1.3.5 → cursorflow-1.3.6}/pyproject.toml +1 -1
  4. {cursorflow-1.3.5 → cursorflow-1.3.6}/LICENSE +0 -0
  5. {cursorflow-1.3.5 → cursorflow-1.3.6}/MANIFEST.in +0 -0
  6. {cursorflow-1.3.5 → cursorflow-1.3.6}/README.md +0 -0
  7. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/__init__.py +0 -0
  8. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/auto_updater.py +0 -0
  9. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/cli.py +0 -0
  10. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/agent.py +0 -0
  11. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/auth_handler.py +0 -0
  12. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/browser_engine.py +0 -0
  13. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/css_iterator.py +0 -0
  14. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/cursor_integration.py +0 -0
  15. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/cursorflow.py +0 -0
  16. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/error_correlator.py +0 -0
  17. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/event_correlator.py +0 -0
  18. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/file_change_monitor.py +0 -0
  19. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/log_collector.py +0 -0
  20. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/log_monitor.py +0 -0
  21. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/mockup_comparator.py +0 -0
  22. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/persistent_session.py +0 -0
  23. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/core/report_generator.py +0 -0
  24. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/install_cursorflow_rules.py +0 -0
  25. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/log_sources/local_file.py +0 -0
  26. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/log_sources/ssh_remote.py +0 -0
  27. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/rules/__init__.py +0 -0
  28. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/rules/cursorflow-installation.mdc +0 -0
  29. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/rules/cursorflow-usage.mdc +0 -0
  30. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow/updater.py +0 -0
  31. {cursorflow-1.3.5 → cursorflow-1.3.6}/cursorflow.egg-info/SOURCES.txt +0 -0
  32. {cursorflow-1.3.5 → cursorflow-1.3.6}/docs/USER_MANUAL.md +0 -0
  33. {cursorflow-1.3.5 → cursorflow-1.3.6}/examples/comprehensive_screenshot_example.py +0 -0
  34. {cursorflow-1.3.5 → cursorflow-1.3.6}/examples/mockup_comparison_example.py +0 -0
  35. {cursorflow-1.3.5 → cursorflow-1.3.6}/examples/opensas_example.py +0 -0
  36. {cursorflow-1.3.5 → cursorflow-1.3.6}/examples/react_example.py +0 -0
  37. {cursorflow-1.3.5 → cursorflow-1.3.6}/setup.cfg +0 -0
  38. {cursorflow-1.3.5 → cursorflow-1.3.6}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cursorflow
3
- Version: 1.3.5
3
+ Version: 1.3.6
4
4
  Summary: Complete page intelligence for AI-driven development - captures DOM, network, console, and performance data
5
5
  Author-email: GeekWarrior Development <rbush@cooltheory.com>
6
6
  License-Expression: MIT
@@ -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,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cursorflow"
7
- version = "1.3.5"
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
10
  {name = "GeekWarrior Development", email = "rbush@cooltheory.com"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes