├── .cursor └── rules │ ├── document.mdc │ ├── general.mdc │ ├── git.mdc │ └── python.mdc ├── .github └── workflows │ └── update-cursor-links.yml ├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── update_cursor_links.py └── version-history.json /.cursor/rules/document.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/.cursor/rules/document.mdc -------------------------------------------------------------------------------- /.cursor/rules/general.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/.cursor/rules/general.mdc -------------------------------------------------------------------------------- /.cursor/rules/git.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/.cursor/rules/git.mdc -------------------------------------------------------------------------------- /.cursor/rules/python.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/.cursor/rules/python.mdc -------------------------------------------------------------------------------- /.github/workflows/update-cursor-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/.github/workflows/update-cursor-links.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/pyproject.toml -------------------------------------------------------------------------------- /update_cursor_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/update_cursor_links.py -------------------------------------------------------------------------------- /version-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyeric0212/cursor-history-links/HEAD/version-history.json --------------------------------------------------------------------------------