cursorflow 2.2.7__py3-none-any.whl → 2.2.9__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.
cursorflow/__init__.py CHANGED
@@ -56,7 +56,7 @@ def _get_version():
56
56
  pass
57
57
 
58
58
  # Fallback version - should match pyproject.toml
59
- return "2.2.7"
59
+ return "2.2.8"
60
60
 
61
61
  __version__ = _get_version()
62
62
  __author__ = "GeekWarrior Development"
@@ -1363,7 +1363,7 @@ class BrowserController:
1363
1363
  animationData.animation_details.push({
1364
1364
  element_selector: element.tagName.toLowerCase() +
1365
1365
  (element.id ? '#' + element.id : '') +
1366
- (element.className ? '.' + element.className.split(' ').join('.') : ''),
1366
+ (element.className && typeof element.className === 'string' ? '.' + element.className.split(' ').join('.') : ''),
1367
1367
  animation_name: animationName,
1368
1368
  duration: computedStyle.animationDuration,
1369
1369
  delay: computedStyle.animationDelay,
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cursorflow
3
- Version: 2.2.7
3
+ Version: 2.2.9
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
7
7
  Project-URL: Homepage, https://github.com/haley-marketing-group/cursorflow
8
- Project-URL: Documentation, https://cursorflow.readthedocs.io
8
+ Project-URL: Documentation, https://cursorflow.dev
9
9
  Project-URL: Repository, https://github.com/haley-marketing-group/cursorflow
10
10
  Keywords: ui-testing,automation,cursor,ai,web-testing,css-iteration,hot-reload,hmr,element-intelligence,page-analysis,error-context
11
11
  Classifier: Development Status :: 5 - Production/Stable
@@ -397,14 +397,6 @@ cursorflow update
397
397
 
398
398
  ## 🧠 Why This Matters
399
399
 
400
- ### **For Job Board v4 Testing:**
401
- ✅ **Real API response times** from `/ajax_rq.smpl?fn=gjapi_typeahead`
402
- ✅ **Actual network failures** when they occur
403
- ✅ **Real browser console errors** from production code
404
- ✅ **Genuine performance metrics** under real load
405
-
406
- ❌ **With mocking:** You'd never know the typeahead is slow in production!
407
-
408
400
  ### **For Any Web Application:**
409
401
  - **Trust your test results** - they reflect actual behavior
410
402
  - **Find real performance bottlenecks** - no artificial speed boosts
@@ -427,9 +419,8 @@ cursorflow update
427
419
 
428
420
  ## 📖 Documentation
429
421
 
430
- - **[Complete User Manual](docs/USER_MANUAL.md)** - Full feature guide
431
- - **[Examples](examples/)** - Practical usage examples
432
- - **[API Reference](docs/api/)** - Complete Python API documentation
422
+ - **[Usage Guide](docs/user/USAGE_GUIDE.md)** - Complete usage documentation (included in pip install)
423
+ - **[Examples](examples/)** - Practical usage examples (included in pip install)
433
424
 
434
425
  ## 🎪 The CursorFlow Advantage
435
426
 
@@ -1,4 +1,4 @@
1
- cursorflow/__init__.py,sha256=ZyG-HGxRZGxkAQgc1w1PZGhiK3BqmlRWA2jsqnMF9do,2763
1
+ cursorflow/__init__.py,sha256=5G0Zm1HeS4oGx9S9E5GFRon5gduljQMlJhs1XEBUuE4,2763
2
2
  cursorflow/auto_init.py,sha256=dXQaXXiXe4wkUP-jd8fcJ5fYVt7ASdTb47b7SzXymOM,6122
3
3
  cursorflow/auto_updater.py,sha256=oQ12TIMZ6Cm3HF-x9iRWFtvOLkRh-JWPqitS69-4roE,7851
4
4
  cursorflow/cli.py,sha256=cRxhu48AwQfpO48qlU2B29Vi_jfUIXFe5bvi8LS8poA,50423
@@ -8,7 +8,7 @@ cursorflow/updater.py,sha256=SroSQHQi5cYyzcOK_bf-WzmQmE7yeOs8qo3r__j-Z6E,19583
8
8
  cursorflow/core/action_validator.py,sha256=SCk3w_62D1y0cCRDOajK8L44-abSj_KpnUBgR_yNVW4,6846
9
9
  cursorflow/core/agent.py,sha256=f3lecgEzDRDdGTVccAtorpLGfNJJ49bbsQAmgr0vNGg,10136
10
10
  cursorflow/core/auth_handler.py,sha256=oRafO6ZdxoHryBIvHsrNV8TECed4GXpJsdEiH0KdPPk,17149
11
- cursorflow/core/browser_controller.py,sha256=2b0lQ9JgjppDWfhteX0C-ty3h8yPqCeDnxbbXhzViMo,147382
11
+ cursorflow/core/browser_controller.py,sha256=mfJ5a6-996TC6Z2CHNxxQUQPPqPjPWAvL1njTONwqsA,147423
12
12
  cursorflow/core/browser_engine.py,sha256=7N9hPOyDrEhLWYgZW2981N9gKlHF6Lbp7D7h0zBzuz8,14851
13
13
  cursorflow/core/config_validator.py,sha256=HRtONSOmM0Xxt3-ok3xwnBADRiNnI0nNOMaS2OqOkDk,7286
14
14
  cursorflow/core/css_iterator.py,sha256=whLCIwbHZEWaH1HCbmqhNX5zrh_fL-r3hsxKjYsukcE,16478
@@ -30,9 +30,9 @@ cursorflow/log_sources/ssh_remote.py,sha256=_Kwh0bhRpKgq-0c98oaX2hN6h9cT-wCHlqY5
30
30
  cursorflow/rules/__init__.py,sha256=gPcA-IkhXj03sl7cvZV0wwo7CtEkcyuKs4y0F5oQbqE,458
31
31
  cursorflow/rules/cursorflow-installation.mdc,sha256=D55pzzDPAVVbE3gAtKPUGoT-2fvB-FI2l6yrTdzUIEo,10208
32
32
  cursorflow/rules/cursorflow-usage.mdc,sha256=JVj-Xgura1rIfHaR5W_GHy6mBVlYCgE922RtuRVEJvg,21383
33
- cursorflow-2.2.7.dist-info/licenses/LICENSE,sha256=e4QbjAsj3bW-xgQOvQelr8sGLYDoqc48k6cKgCr_pBU,1080
34
- cursorflow-2.2.7.dist-info/METADATA,sha256=avUnSgOUO26V6eJKean9vBbcpipaP3HH5H_s8kPFHjM,14538
35
- cursorflow-2.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
36
- cursorflow-2.2.7.dist-info/entry_points.txt,sha256=-Ed_n4Uff7wClEtWS-Py6xmQabecB9f0QAOjX0w7ljA,51
37
- cursorflow-2.2.7.dist-info/top_level.txt,sha256=t1UZwRyZP4u-ng2CEcNHmk_ZT4ibQxoihB2IjTF7ovc,11
38
- cursorflow-2.2.7.dist-info/RECORD,,
33
+ cursorflow-2.2.9.dist-info/licenses/LICENSE,sha256=e4QbjAsj3bW-xgQOvQelr8sGLYDoqc48k6cKgCr_pBU,1080
34
+ cursorflow-2.2.9.dist-info/METADATA,sha256=KqrosPHkiYF_w5liQVyPt1MlbEWgASl7yunVhdMSGAk,14165
35
+ cursorflow-2.2.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
36
+ cursorflow-2.2.9.dist-info/entry_points.txt,sha256=-Ed_n4Uff7wClEtWS-Py6xmQabecB9f0QAOjX0w7ljA,51
37
+ cursorflow-2.2.9.dist-info/top_level.txt,sha256=t1UZwRyZP4u-ng2CEcNHmk_ZT4ibQxoihB2IjTF7ovc,11
38
+ cursorflow-2.2.9.dist-info/RECORD,,