cursorflow 1.3.2__tar.gz → 1.3.3__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.2 → cursorflow-1.3.3}/MANIFEST.in +2 -3
- {cursorflow-1.3.2 → cursorflow-1.3.3}/PKG-INFO +1 -1
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/install_cursorflow_rules.py +2 -2
- cursorflow-1.3.3/cursorflow/rules/__init__.py +18 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow.egg-info/SOURCES.txt +4 -3
- {cursorflow-1.3.2 → cursorflow-1.3.3}/pyproject.toml +1 -1
- {cursorflow-1.3.2 → cursorflow-1.3.3}/LICENSE +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/README.md +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/__init__.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/auto_updater.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/cli.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/agent.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/auth_handler.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/browser_controller.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/browser_engine.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/css_iterator.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/cursor_integration.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/cursorflow.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/error_correlator.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/event_correlator.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/file_change_monitor.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/log_collector.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/log_monitor.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/mockup_comparator.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/persistent_session.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/core/report_generator.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/log_sources/local_file.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/log_sources/ssh_remote.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3/cursorflow}/rules/cursorflow-installation.mdc +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3/cursorflow}/rules/cursorflow-usage.mdc +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/cursorflow/updater.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/docs/USER_MANUAL.md +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/examples/comprehensive_screenshot_example.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/examples/mockup_comparison_example.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/examples/opensas_example.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/examples/react_example.py +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/setup.cfg +0 -0
- {cursorflow-1.3.2 → cursorflow-1.3.3}/setup.py +0 -0
@@ -40,9 +40,8 @@ exclude __pycache__/*
|
|
40
40
|
recursive-exclude * __pycache__
|
41
41
|
recursive-exclude * *.py[co]
|
42
42
|
|
43
|
-
#
|
44
|
-
include rules
|
45
|
-
include rules/cursorflow-usage.mdc
|
43
|
+
# Include Cursor rules files explicitly
|
44
|
+
include cursorflow/rules/*.mdc
|
46
45
|
|
47
46
|
# Rules installation script is now in cursorflow/ package
|
48
47
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cursorflow
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.3
|
4
4
|
Summary: Complete page intelligence for AI-driven development - captures DOM, network, console, and performance data
|
5
5
|
Author-email: GeekWarrior Development <support@cursorflow.dev>
|
6
6
|
License-Expression: MIT
|
@@ -32,12 +32,12 @@ def install_cursorflow_rules(project_dir: str = "."):
|
|
32
32
|
# Find CursorFlow package location
|
33
33
|
try:
|
34
34
|
import cursorflow
|
35
|
-
package_dir = Path(cursorflow.__file__).parent
|
35
|
+
package_dir = Path(cursorflow.__file__).parent
|
36
36
|
rules_source_dir = package_dir / "rules"
|
37
37
|
except ImportError:
|
38
38
|
# Fallback: look for rules in current directory structure
|
39
39
|
current_dir = Path(__file__).parent
|
40
|
-
rules_source_dir = current_dir
|
40
|
+
rules_source_dir = current_dir / "rules" # Now rules are in cursorflow/rules/
|
41
41
|
|
42
42
|
if not rules_source_dir.exists():
|
43
43
|
print(f"❌ Could not find CursorFlow rules directory at: {rules_source_dir}")
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"""
|
2
|
+
CursorFlow Rules for Cursor AI Integration
|
3
|
+
|
4
|
+
This package contains the Cursor rules files that provide guidance
|
5
|
+
to Cursor AI on how to use CursorFlow effectively.
|
6
|
+
"""
|
7
|
+
|
8
|
+
import os
|
9
|
+
from pathlib import Path
|
10
|
+
|
11
|
+
def get_rules_directory():
|
12
|
+
"""Get the path to the rules directory"""
|
13
|
+
return Path(__file__).parent
|
14
|
+
|
15
|
+
def get_rule_files():
|
16
|
+
"""Get list of available rule files"""
|
17
|
+
rules_dir = get_rules_directory()
|
18
|
+
return list(rules_dir.glob("*.mdc"))
|
@@ -25,10 +25,11 @@ cursorflow/core/persistent_session.py
|
|
25
25
|
cursorflow/core/report_generator.py
|
26
26
|
cursorflow/log_sources/local_file.py
|
27
27
|
cursorflow/log_sources/ssh_remote.py
|
28
|
+
cursorflow/rules/__init__.py
|
29
|
+
cursorflow/rules/cursorflow-installation.mdc
|
30
|
+
cursorflow/rules/cursorflow-usage.mdc
|
28
31
|
docs/USER_MANUAL.md
|
29
32
|
examples/comprehensive_screenshot_example.py
|
30
33
|
examples/mockup_comparison_example.py
|
31
34
|
examples/opensas_example.py
|
32
|
-
examples/react_example.py
|
33
|
-
rules/cursorflow-installation.mdc
|
34
|
-
rules/cursorflow-usage.mdc
|
35
|
+
examples/react_example.py
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "cursorflow"
|
7
|
-
version = "1.3.
|
7
|
+
version = "1.3.3"
|
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 = "support@cursorflow.dev"}
|
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
|