cursorflow 1.3.4__py3-none-any.whl → 1.3.6__py3-none-any.whl

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.
@@ -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)
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cursorflow
3
- Version: 1.3.4
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 <support@cursorflow.dev>
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
@@ -5,7 +5,7 @@ cursorflow/install_cursorflow_rules.py,sha256=ny4c-S1O-V2sITunZO2kk6sCf1yec42UJO
5
5
  cursorflow/updater.py,sha256=pvbSZgg6hgWZBE5AAUPppS5Yzv0yNMp2X_CL2GALg_w,18783
6
6
  cursorflow/core/agent.py,sha256=f3lecgEzDRDdGTVccAtorpLGfNJJ49bbsQAmgr0vNGg,10136
7
7
  cursorflow/core/auth_handler.py,sha256=oRafO6ZdxoHryBIvHsrNV8TECed4GXpJsdEiH0KdPPk,17149
8
- cursorflow/core/browser_controller.py,sha256=IfwIdItpaMNnDyUBx-qYjdobfQyvuDv6JPPeouAzc8E,57148
8
+ cursorflow/core/browser_controller.py,sha256=eHYdWGTWSlssFjTdhq-msPLwg_LMtGF7om2wQZBaJ4A,57196
9
9
  cursorflow/core/browser_engine.py,sha256=Glq8U_bXRkO2Yal0nku7Z2wKwOftY4So2XN4oy56WLo,13732
10
10
  cursorflow/core/css_iterator.py,sha256=whLCIwbHZEWaH1HCbmqhNX5zrh_fL-r3hsxKjYsukcE,16478
11
11
  cursorflow/core/cursor_integration.py,sha256=MAeHjXYeqzaXnhskqkTDB-n5ixIHqapGe93X0lLKhws,67501
@@ -23,9 +23,9 @@ cursorflow/log_sources/ssh_remote.py,sha256=cWH-0ulDilh5kSih8BEzDlY0xU0KASDoq9rP
23
23
  cursorflow/rules/__init__.py,sha256=gPcA-IkhXj03sl7cvZV0wwo7CtEkcyuKs4y0F5oQbqE,458
24
24
  cursorflow/rules/cursorflow-installation.mdc,sha256=Nnu7PuP5nGD6hGAV_x2SX5Y2_uPz3oNA5XUjNJBFC1M,6985
25
25
  cursorflow/rules/cursorflow-usage.mdc,sha256=Zv0TWuo7S3iJHq8R6oBaHRI3V6h-T81pdb7vi-b8NoU,14157
26
- cursorflow-1.3.4.dist-info/licenses/LICENSE,sha256=e4QbjAsj3bW-xgQOvQelr8sGLYDoqc48k6cKgCr_pBU,1080
27
- cursorflow-1.3.4.dist-info/METADATA,sha256=DuexbzHqCAUfGjntjTSvO0tmxsrxLtHh4zqHl4EpDm0,7659
28
- cursorflow-1.3.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
29
- cursorflow-1.3.4.dist-info/entry_points.txt,sha256=-Ed_n4Uff7wClEtWS-Py6xmQabecB9f0QAOjX0w7ljA,51
30
- cursorflow-1.3.4.dist-info/top_level.txt,sha256=t1UZwRyZP4u-ng2CEcNHmk_ZT4ibQxoihB2IjTF7ovc,11
31
- cursorflow-1.3.4.dist-info/RECORD,,
26
+ cursorflow-1.3.6.dist-info/licenses/LICENSE,sha256=e4QbjAsj3bW-xgQOvQelr8sGLYDoqc48k6cKgCr_pBU,1080
27
+ cursorflow-1.3.6.dist-info/METADATA,sha256=2T_rJo1JFYQ_j-wFL3_oQxIG8NX_UrUxbMiyrOaF20I,7657
28
+ cursorflow-1.3.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
29
+ cursorflow-1.3.6.dist-info/entry_points.txt,sha256=-Ed_n4Uff7wClEtWS-Py6xmQabecB9f0QAOjX0w7ljA,51
30
+ cursorflow-1.3.6.dist-info/top_level.txt,sha256=t1UZwRyZP4u-ng2CEcNHmk_ZT4ibQxoihB2IjTF7ovc,11
31
+ cursorflow-1.3.6.dist-info/RECORD,,