├── .cursor └── rules ├── .gitignore ├── LICENSE ├── PROJECT_PROGRESS.md ├── QUICKSTART.md ├── README.md ├── README.zh.md ├── learning_notes ├── daily │ └── 2025-03-12.json ├── reviews │ └── review_20250312.json ├── stats.json └── topics │ ├── python │ └── 2025-03-12-0002.json │ └── test │ └── 2025-03-12-0001.json ├── learning_paths ├── current_path.json └── paths.json ├── pdm.lock ├── project_management ├── .task_count ├── actuals │ ├── decisions │ │ └── .gitkeep │ ├── reports │ │ ├── daily │ │ │ └── .gitkeep │ │ └── weekly │ │ │ └── .gitkeep │ └── tasks │ │ └── TASK-001_开发命令系统核心功能.md ├── control │ ├── MAIN_CONTROL.md │ └── REQUIREMENTS.md ├── scripts │ └── create_task.sh └── templates │ ├── daily_report_template.md │ ├── decision_template.md │ ├── main_control_template.md │ ├── project_progress_template.md │ ├── risk_template.md │ ├── task_template.md │ └── weekly_report_template.md ├── pyproject.toml ├── requirements.txt ├── scripts ├── create_report.sh ├── generate_timestamp.py ├── hooks │ └── pre-commit ├── init_project.sh ├── simple_timestamp.sh ├── timestamp.sh └── update_progress.sh ├── setup.py └── src └── cursormind ├── __init__.py ├── __main__.py ├── cli.py ├── config ├── __init__.py └── settings.py ├── core ├── __init__.py ├── achievement.py ├── code_review.py ├── command_handler.py ├── cursor_framework.py ├── learning_path.py ├── note_manager.py └── project_manager.py └── utils ├── __init__.py ├── helpers.py └── note_manager.py /.cursor/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/.cursor/rules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJECT_PROGRESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/PROJECT_PROGRESS.md -------------------------------------------------------------------------------- /QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/QUICKSTART.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/README.zh.md -------------------------------------------------------------------------------- /learning_notes/daily/2025-03-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_notes/daily/2025-03-12.json -------------------------------------------------------------------------------- /learning_notes/reviews/review_20250312.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_notes/reviews/review_20250312.json -------------------------------------------------------------------------------- /learning_notes/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_notes/stats.json -------------------------------------------------------------------------------- /learning_notes/topics/python/2025-03-12-0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_notes/topics/python/2025-03-12-0002.json -------------------------------------------------------------------------------- /learning_notes/topics/test/2025-03-12-0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_notes/topics/test/2025-03-12-0001.json -------------------------------------------------------------------------------- /learning_paths/current_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_paths/current_path.json -------------------------------------------------------------------------------- /learning_paths/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/learning_paths/paths.json -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/pdm.lock -------------------------------------------------------------------------------- /project_management/.task_count: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /project_management/actuals/decisions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_management/actuals/reports/daily/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_management/actuals/reports/weekly/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_management/actuals/tasks/TASK-001_开发命令系统核心功能.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/actuals/tasks/TASK-001_开发命令系统核心功能.md -------------------------------------------------------------------------------- /project_management/control/MAIN_CONTROL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/control/MAIN_CONTROL.md -------------------------------------------------------------------------------- /project_management/control/REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/control/REQUIREMENTS.md -------------------------------------------------------------------------------- /project_management/scripts/create_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/scripts/create_task.sh -------------------------------------------------------------------------------- /project_management/templates/daily_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/daily_report_template.md -------------------------------------------------------------------------------- /project_management/templates/decision_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/decision_template.md -------------------------------------------------------------------------------- /project_management/templates/main_control_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/main_control_template.md -------------------------------------------------------------------------------- /project_management/templates/project_progress_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/project_progress_template.md -------------------------------------------------------------------------------- /project_management/templates/risk_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/risk_template.md -------------------------------------------------------------------------------- /project_management/templates/task_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/task_template.md -------------------------------------------------------------------------------- /project_management/templates/weekly_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/project_management/templates/weekly_report_template.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/create_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/create_report.sh -------------------------------------------------------------------------------- /scripts/generate_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/generate_timestamp.py -------------------------------------------------------------------------------- /scripts/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/hooks/pre-commit -------------------------------------------------------------------------------- /scripts/init_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/init_project.sh -------------------------------------------------------------------------------- /scripts/simple_timestamp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/simple_timestamp.sh -------------------------------------------------------------------------------- /scripts/timestamp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/timestamp.sh -------------------------------------------------------------------------------- /scripts/update_progress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/scripts/update_progress.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/setup.py -------------------------------------------------------------------------------- /src/cursormind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/__init__.py -------------------------------------------------------------------------------- /src/cursormind/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/__main__.py -------------------------------------------------------------------------------- /src/cursormind/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/cli.py -------------------------------------------------------------------------------- /src/cursormind/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cursormind/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/config/settings.py -------------------------------------------------------------------------------- /src/cursormind/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cursormind/core/achievement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/achievement.py -------------------------------------------------------------------------------- /src/cursormind/core/code_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/code_review.py -------------------------------------------------------------------------------- /src/cursormind/core/command_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/command_handler.py -------------------------------------------------------------------------------- /src/cursormind/core/cursor_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/cursor_framework.py -------------------------------------------------------------------------------- /src/cursormind/core/learning_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/learning_path.py -------------------------------------------------------------------------------- /src/cursormind/core/note_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/note_manager.py -------------------------------------------------------------------------------- /src/cursormind/core/project_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/core/project_manager.py -------------------------------------------------------------------------------- /src/cursormind/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cursormind/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/utils/helpers.py -------------------------------------------------------------------------------- /src/cursormind/utils/note_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yagami1997/CursorMind/HEAD/src/cursormind/utils/note_manager.py --------------------------------------------------------------------------------