├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .vitepress │ └── config.mts ├── changelog.md ├── cultural │ ├── article.md │ └── music.md ├── general │ ├── learn.md │ ├── office.md │ └── translation.md ├── guide │ ├── index.md │ ├── other.md │ ├── tactic-1.md │ ├── tactic-2.md │ ├── tactic-3.md │ ├── tactic-4.md │ ├── tactic-5.md │ └── tactic-6.md ├── index.md ├── it │ ├── design.md │ ├── operation.md │ ├── product.md │ └── technology.md ├── life │ ├── chat.md │ ├── helper.md │ └── travel.md └── medicine │ └── doctor.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/cultural/article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/cultural/article.md -------------------------------------------------------------------------------- /docs/cultural/music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/cultural/music.md -------------------------------------------------------------------------------- /docs/general/learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/general/learn.md -------------------------------------------------------------------------------- /docs/general/office.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/general/office.md -------------------------------------------------------------------------------- /docs/general/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/general/translation.md -------------------------------------------------------------------------------- /docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/index.md -------------------------------------------------------------------------------- /docs/guide/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/other.md -------------------------------------------------------------------------------- /docs/guide/tactic-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/tactic-1.md -------------------------------------------------------------------------------- /docs/guide/tactic-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/tactic-2.md -------------------------------------------------------------------------------- /docs/guide/tactic-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/tactic-3.md -------------------------------------------------------------------------------- /docs/guide/tactic-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/tactic-4.md -------------------------------------------------------------------------------- /docs/guide/tactic-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/tactic-5.md -------------------------------------------------------------------------------- /docs/guide/tactic-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/guide/tactic-6.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/it/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/it/design.md -------------------------------------------------------------------------------- /docs/it/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/it/operation.md -------------------------------------------------------------------------------- /docs/it/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/it/product.md -------------------------------------------------------------------------------- /docs/it/technology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/it/technology.md -------------------------------------------------------------------------------- /docs/life/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/life/chat.md -------------------------------------------------------------------------------- /docs/life/helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/life/helper.md -------------------------------------------------------------------------------- /docs/life/travel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/life/travel.md -------------------------------------------------------------------------------- /docs/medicine/doctor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/docs/medicine/doctor.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevantang/chatgpt-prompts/HEAD/package.json --------------------------------------------------------------------------------