cursorflow 2.0.3__py3-none-any.whl → 2.0.4__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 +1 -1
- cursorflow/cli.py +7 -2
- cursorflow/install_cursorflow_rules.py +4 -4
- {cursorflow-2.0.3.dist-info → cursorflow-2.0.4.dist-info}/METADATA +1 -1
- {cursorflow-2.0.3.dist-info → cursorflow-2.0.4.dist-info}/RECORD +9 -9
- {cursorflow-2.0.3.dist-info → cursorflow-2.0.4.dist-info}/WHEEL +0 -0
- {cursorflow-2.0.3.dist-info → cursorflow-2.0.4.dist-info}/entry_points.txt +0 -0
- {cursorflow-2.0.3.dist-info → cursorflow-2.0.4.dist-info}/licenses/LICENSE +0 -0
- {cursorflow-2.0.3.dist-info → cursorflow-2.0.4.dist-info}/top_level.txt +0 -0
cursorflow/__init__.py
CHANGED
cursorflow/cli.py
CHANGED
@@ -128,10 +128,15 @@ def test(base_url, path, actions, output, logs, config, verbose, headless, timeo
|
|
128
128
|
|
129
129
|
# Save results to file for Cursor analysis
|
130
130
|
if not output:
|
131
|
-
# Auto-generate meaningful filename
|
131
|
+
# Auto-generate meaningful filename in .cursorflow/artifacts/
|
132
132
|
session_id = results.get('session_id', 'unknown')
|
133
133
|
path_part = path.replace('/', '_') if path else 'root'
|
134
|
-
|
134
|
+
|
135
|
+
# Ensure .cursorflow/artifacts directory exists
|
136
|
+
artifacts_dir = Path('.cursorflow/artifacts')
|
137
|
+
artifacts_dir.mkdir(parents=True, exist_ok=True)
|
138
|
+
|
139
|
+
output = artifacts_dir / f"cursorflow_{path_part}_{session_id}.json"
|
135
140
|
|
136
141
|
with open(output, 'w') as f:
|
137
142
|
json.dump(results, f, indent=2, default=str)
|
@@ -125,9 +125,9 @@ def create_config_template(project_path: Path, force: bool = False):
|
|
125
125
|
# Get current version
|
126
126
|
try:
|
127
127
|
import cursorflow
|
128
|
-
current_version = getattr(cursorflow, '__version__', '2.0.
|
128
|
+
current_version = getattr(cursorflow, '__version__', '2.0.4')
|
129
129
|
except ImportError:
|
130
|
-
current_version = '2.0.
|
130
|
+
current_version = '2.0.4'
|
131
131
|
|
132
132
|
if config_path.exists():
|
133
133
|
if not force:
|
@@ -302,9 +302,9 @@ def setup_update_checking(project_path: Path):
|
|
302
302
|
# Create initial version tracking
|
303
303
|
try:
|
304
304
|
import cursorflow
|
305
|
-
current_version = getattr(cursorflow, '__version__', '2.0.
|
305
|
+
current_version = getattr(cursorflow, '__version__', '2.0.4')
|
306
306
|
except ImportError:
|
307
|
-
current_version = '2.0.
|
307
|
+
current_version = '2.0.4'
|
308
308
|
|
309
309
|
version_info = {
|
310
310
|
"installed_version": current_version,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cursorflow
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.4
|
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
|
@@ -1,7 +1,7 @@
|
|
1
|
-
cursorflow/__init__.py,sha256=
|
1
|
+
cursorflow/__init__.py,sha256=lP0RXTBbo-BTIT7w4GezlQzHasC46QXTOwDW1BUZqMg,2476
|
2
2
|
cursorflow/auto_updater.py,sha256=oQ12TIMZ6Cm3HF-x9iRWFtvOLkRh-JWPqitS69-4roE,7851
|
3
|
-
cursorflow/cli.py,sha256=
|
4
|
-
cursorflow/install_cursorflow_rules.py,sha256=
|
3
|
+
cursorflow/cli.py,sha256=KD2yzVQvfoKqGgAQYp3TtWjRCuxH1EOtD-uA8ameDZ0,25388
|
4
|
+
cursorflow/install_cursorflow_rules.py,sha256=2HE7PQgSDPz2BLWBhdxRXTHtk8YHLITjq5GWbKD7EZs,11792
|
5
5
|
cursorflow/updater.py,sha256=rAST7STjw-SgKxn_jsQJWOoyEMia-MQVxpKMwzPRnOA,19573
|
6
6
|
cursorflow/core/agent.py,sha256=f3lecgEzDRDdGTVccAtorpLGfNJJ49bbsQAmgr0vNGg,10136
|
7
7
|
cursorflow/core/auth_handler.py,sha256=oRafO6ZdxoHryBIvHsrNV8TECed4GXpJsdEiH0KdPPk,17149
|
@@ -26,9 +26,9 @@ cursorflow/log_sources/ssh_remote.py,sha256=zSnX8mpa5G86UDWEm3_FqYwo1PjBW67C1LPk
|
|
26
26
|
cursorflow/rules/__init__.py,sha256=gPcA-IkhXj03sl7cvZV0wwo7CtEkcyuKs4y0F5oQbqE,458
|
27
27
|
cursorflow/rules/cursorflow-installation.mdc,sha256=PZN4hHpy2_g3EzD8BxZYhXF9A6YCvtMGaD3uOA7UVSs,9511
|
28
28
|
cursorflow/rules/cursorflow-usage.mdc,sha256=SAsJRmml8W1zE_jArZnRtygO9RmggjEzxGA6hxBJ-H4,18924
|
29
|
-
cursorflow-2.0.
|
30
|
-
cursorflow-2.0.
|
31
|
-
cursorflow-2.0.
|
32
|
-
cursorflow-2.0.
|
33
|
-
cursorflow-2.0.
|
34
|
-
cursorflow-2.0.
|
29
|
+
cursorflow-2.0.4.dist-info/licenses/LICENSE,sha256=e4QbjAsj3bW-xgQOvQelr8sGLYDoqc48k6cKgCr_pBU,1080
|
30
|
+
cursorflow-2.0.4.dist-info/METADATA,sha256=PcY-kjD3pWWiGFR1HweY3RHs9_pHr9J63JMlzVdmJwA,10656
|
31
|
+
cursorflow-2.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
32
|
+
cursorflow-2.0.4.dist-info/entry_points.txt,sha256=-Ed_n4Uff7wClEtWS-Py6xmQabecB9f0QAOjX0w7ljA,51
|
33
|
+
cursorflow-2.0.4.dist-info/top_level.txt,sha256=t1UZwRyZP4u-ng2CEcNHmk_ZT4ibQxoihB2IjTF7ovc,11
|
34
|
+
cursorflow-2.0.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|