• Stars
    star
    691
  • Rank 65,435 (Top 2 %)
  • Language
  • License
    MIT License
  • Created almost 2 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🤖️ChatGPT提问工程师 -- 开发指南

🤖️ChatGPT 提问工程师 -- 开发指南

关于本指南

由于 🤖️ChatGPT 的回答是开放性和发散的,但对于具体的开发任务,更多是需要针对性的回答。为了提高 ChatGPT提问工程师 在与 🤖️ChatGPT 合作编程中的效率,而创建了这份文档来收集和整理常用的 命令/问题(后面文中 命令 默认代指 命令/问题

该指南旨在帮助 ChatGPT提问工程师 提高提问效率,欢迎 PR 👏👏👏 补充更多好问法。

注意:本文档仅针对 ChatGPT提问工程师 开发工作的场景。使用 🤖️ChatGPT 应该是开放性的,与 🤖️ChatGPT 进行无限可能的思维碰撞才能给人类带来颠覆性的应用 🌟

📃 文档使用说明

  • 命令稳定性:强 中 弱

    • 由于 🤖️ChatGPT 的回答是发散的,命令稳定性代表符合期望的程度(主观性很大)。
    • 默认值:强
    • 尝试 10 次
      • > 8次符合期望
      • > 5次符合期望
      • > 2次符合期望
  • 明确处理的内容

    • 例子 1 :一般来说通过换行即可

      优化代码
      
      const hello = "🤖️ChatGPT";
      
    • 例子 2 :有时候 🤖️ChatGPT 无法区分需要处理的内容是什么,可以加 「」{} 之类的把内容圈起来。

      优化文案
      
      「该指南旨在帮助 `ChatGPT提问工程师` 提高提问效率」
      
    • 例子 3 :实在不行也可以再加些描述,所有命令都可以按这个模式去处理。

      优化「」中的文案
      
      「该指南旨在帮助 `ChatGPT提问工程师` 提高提问效率」
      
  • 命令附加条件「重要概念」

    • 所有命令都是可以添加任意附加条件「或者说附加需求」。附加条件可以非常抽象,这也是 🤖️ChatGPT 和传统 API 调用最大的不同,也是最颠覆的地方 🚀

    • 例子:

      优化「」中的文案,扩充到 300 字
      
      「该指南旨在帮助 `ChatGPT提问工程师` 提高提问效率」
      
  • 上下文能力

    • 由于 🤖️ChatGPT 具备上下文理解能力,可以对 🤖️ChatGPT 的回答和之前的所有对话内容直接进行提问。需要控制不要在连续提问中迷失最初的需求目标。
  • 编程语言类型

    • 什么都支持
  • 人类语言类型

    • 目前发现在涉及代码的场景,使用英语效果更好

📃 命令/问题列表

提前设置对话要求


  • 设置回答问题的语言类型

    接下来的对话都用{中文/英文}回答我
    
    • 备注:由于涉及代码的提问用英语比中文效果更好,但你可以要求 🤖️ChatGPT 用中文回答
    • 例子
      接下来的对话都用中文回答我
      
  • 设置简写

    接下来的对话,如果我发送的内容是 {简写} ,我的意思是 {内容}
    
    • 用途:很多时候,我们会有一些常用的内容,比如「重新回答这一问题」,这时可以用该命令设置简写,以后只需要发送简写就可以了。
    • 例子
      接下来的对话,如果我发送的内容是 re ,我的意思是 重新回答这一问题
      

通用


  • 继续完成回答

    继续
    
    • 用途:🤖️ChatGPT 回答太长的内容时经常会中断,可用该命令要求完成回答

需求分析


  • 提取大段文案的中心思想

    中心思想
    

设计


  • 优化文案

    优化文案
    
  • 细化方案

    细化方案
    

编码


涉及代码的提问,使用英语的效果更好。但此时 🤖️ChatGPT 默认会以英语回答。
有两种方式让 🤖️ChatGPT 使用中文回答:
方法一:提前设置对话要求 接下来的对话都用中文回答我
方法二:加一句到问题最后 explain in Chinese

  • 编写代码

    用 {TS/JS/编程语言} 实现:{描述需要实现的功能}
    
    • 命令稳定性:弱(很大程度上取决于功能需求的描述)

    • 这个是最强大的能力,也是最不可控。应该能找到更可靠的套路,比如:按照下面的接口实现代码逻辑,需要继续探索。

    • 例子:

       用 TS 实现:Vue 的双向绑定,但不能引入 Vue
      
  • 正则表达式

    正则表达式:{描述需要实现的功能}
    
    • 例子:
      正则表达式:大于0的正整数
      
  • 评审代码

    Review code and explain in Chinese
    
  • 检查代码出错原因

    Check the cause of the code error and explain in Chinese
    
  • 重构/优化代码

    • 重构代码
      refactor the code
      
    • 重构代码,以 vimdiff 格式展示更改的内容,并解释更改的内容
      Refactor the code to present the changes in vimdiff format and explain the changes in Chinese
      
  • 生成接口文档

    Generate markdown API Chinese documentation
    
    • 命令稳定性:中
    • 备注:由于每次生成都不一样,其实不太好在开发迭代中维护,希望能摸索出更好的方式

测试


  • 添加单元测试

    Adding unit tests
    
  • 生成 Mock 数据

    Generate data in json format
    
    • 例子:

      Generate data in json format
      
      interface AComponent {
              id: string;
              name: string;
              bComponent: BComponent;
      }
      interface BComponent {
              id: string;
              name: string;
      }
      

📚 ChatGPT提问工程师 书籍推荐

《学会提问》

📚 其他相关文档

OpenAI 推出超神 ChatGPT 注册攻略来了
ChatGPT 常见问题解答【官方/非官方版】
GitHub Copilot Labs 【Copilot + ChatGPT】

More Repositories

1

spy-debugger

微信调试,各种WebView样式调试、手机浏览器的页面真机调试。便捷的远程调试手机页面、抓包工具,支持:HTTP/HTTPS,无需USB连接设备。
JavaScript
7,485
star
2

web-storage-cache

对localStorage 和sessionStorage 进行了扩展,添加了超时时间,序列化方法
JavaScript
640
star
3

https-mitm-proxy-handbook

基于Node.js的HTTPS MITM(中间人)代理的原理和实现
JavaScript
422
star
4

node-mitmproxy

node-mitmproxy is an extensible man-in-the-middle(MITM) proxy server for HTTP/HTTPS base on Node.js.
JavaScript
264
star
5

blog

吴常明's blog
JavaScript
52
star
6

react-interpreter

React 沙盒 📦,可理解为 React 版的 eval() 。该沙盒运行机制可使基于 React 实现的小程序框架「如 Taro3 等」拥有 🚀 热更新能力。
JavaScript
14
star
7

just-mock

Zero configuration, Dynamic local dev mock server
JavaScript
3
star
8

react-native-learning-demo

react native demo
JavaScript
2
star
9

wuchangming.github.io

Tell the Internet,I`m living in her.
CSS
2
star
10

apidispatcher

dispatcher
Java
2
star
11

mitm-provider

build mitm proxy in Node.js
JavaScript
1
star
12

key-move

1
star
13

editable-history

Make the browser history control in SPA more convenient.
TypeScript
1
star
14

o-move

1
star
15

switchable

Fast switcher for DEV environment
1
star
16

htmlstringify

Reverse workflow compare with `htmlparser2`
1
star
17

just-flow

manage business logic
1
star
18

taro-demo-pr-11589

JavaScript
1
star
19

mail-checker

Automatically exported from code.google.com/p/mail-checker
JavaScript
1
star
20

tmall-open-app-on-browser

天猫浏览器页面拉起app demo
JavaScript
1
star
21

github-repos-notification

A Chrome Extension to monitor your github Repositories about star count, fork count, etc.
HTML
1
star
22

git-stars-notification

git stars notification for chrome extentions
JavaScript
1
star
23

taro-mini-hot-update

JavaScript
1
star
24

code-something

1
star
25

babel-plugin-transform-omodule-variable

[deprecated] transform omodule-variable: __omodule_foldername, __omodule_childnames, __omodule_namespace
JavaScript
1
star