├── .gitignore ├── README.md ├── docs ├── .vitepress │ └── config.mts ├── assets │ └── imgs │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 2641737539778_.pic.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.png │ │ └── 7.jpg ├── index.md ├── quick-start.md └── zh │ ├── index.md │ └── quick-start.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/assets/imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/1.jpg -------------------------------------------------------------------------------- /docs/assets/imgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/2.jpg -------------------------------------------------------------------------------- /docs/assets/imgs/2641737539778_.pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/2641737539778_.pic.jpg -------------------------------------------------------------------------------- /docs/assets/imgs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/3.jpg -------------------------------------------------------------------------------- /docs/assets/imgs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/4.jpg -------------------------------------------------------------------------------- /docs/assets/imgs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/5.jpg -------------------------------------------------------------------------------- /docs/assets/imgs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/6.png -------------------------------------------------------------------------------- /docs/assets/imgs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/assets/imgs/7.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/zh/index.md -------------------------------------------------------------------------------- /docs/zh/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/docs/zh/quick-start.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengazhen/cursor-auto-free-doc/HEAD/package.json --------------------------------------------------------------------------------