8套后端接口调试“在线工具生成型”Prompts:每条要求输出完整项目源码、文件树、运行/构建命令与QA清单,覆盖JWT解码、Webhook重放、API Mock、Header签名、JSON校验等场景。
在线 JWT Decoder + Inspector(只解析不生成图片)
粘贴 JWT 后解析 header/payload,展示过期时间、签名算法提示,并支持导出解析结果 JSON。
英文 Prompt:
You are a senior full-stack engineer. Build a production-ready online tool: "JWT Decoder + Inspector" (no backend required). Features: paste JWT, parse header/payload, validate structure, show exp/iat/nbf as local time + UTC, show warnings for missing claims, optional secret input to verify HS256 (client-side only), copy/download decoded JSON, localStorage autosave, dark/light theme. Tech: React + Type + Vite. Output: complete file tree, all source files, package.json, run/build commands, static deploy guide (Nginx/Cloudflare Pages), and a QA checklist with at least 10 test cases including invalid tokens.
中文释义: 生成一个可部署的 JWT 解码检查工具,强调错误提示、时区展示、复制导出与可复测用例。
在线 Webhook Replayer(重放/签名/重试策略工具)
把一次 webhook 请求的 headers/body 保存为“事件”,可按配置重放到目标 URL,并记录响应。
英文 Prompt:
Build an online tool: "Webhook Replayer". Inputs: target URL, method, headers editor, raw body, optional signature generator (HMAC SHA256) with selectable header name, retry policy (max retries, backoff), concurrency=1 safety lock, response log timeline, export/import events JSON. No server; everything runs in browser. Tech: Svelte + Type + Vite. Output: full code, run/build, deployment steps, plus a QA checklist and 8 sample event fixtures.
中文释义: 生成一个浏览器端 webhook 重放器:可签名、可重试、可导入导出,并有完整 QA 清单。
在线 API Mock Server Generator(本地启动)
根据一份 OpenAPI/JSON Schema 输入,生成可运行的本地 mock server 项目与示例数据。
英文 Prompt:
Create a prompt that generates a runnable mock server project from an OpenAPI 3.0 spec pasted by the user. The generated project must include: file tree, Node.js server code, routes, request validation, example fixtures, run s, and a test suite. Use Fastify + Type . Also generate a CLI command to start on a chosen port and a Dockerfile for deployment. Provide at least 6 integration test cases (curl commands) and a QA checklist.
中文释义: 生成一个能“直接跑起来”的 Mock Server 工程(含验证、示例数据、测试用例与部署说明)。
在线 Header 签名生成器(HMAC / RSA)
输入请求关键字段,生成签名值与签名头,并附带“签名字符串”可视化,方便排查对不齐的问题。
英文 Prompt:
Build "Request Signature Builder" tool. Features: choose algorithm (HMAC-SHA256, RSA-SHA256), canonical string builder (method + path + query + body hash + timestamp), key input, generate signature, output headers, show intermediate steps, copy buttons, and a "verify" panel to re-check signature. Tech: Next.js + Type , static export. Output full project code, commands, static deploy guide, and at least 10 test vectors.
中文释义: 生成一个可视化的请求签名构造器:能生成并复核签名,输出中间过程与测试向量。
在线 JSON Schema Validator + Formatter
粘贴 JSON 与 schema,在线校验并输出错误路径、行列信息与修复建议。
英文 Prompt:
Build an online "JSON Schema Validator". Inputs: JSON, JSON Schema. Features: validate, highlight errors with JSON pointer paths, show line/column, pretty format/minify, copy/download, sample schemas. Tech: Vanilla JS + Monaco editor (or lightweight editor). Output: full code, run/build, deploy instructions, and QA checklist with 12 cases including nested arrays and invalid types.
中文释义: 生成一个 JSON Schema 校验工具:强调错误定位(path/行列)、格式化与可复测样例。
在线 HTTP Log Sanitizer(脱敏/规范化)
把一段 HTTP 请求/响应日志脱敏(token/cookie/email/手机号等),并按规则输出可分享版本。
英文 Prompt:
Build "HTTP Log Sanitizer". Input: raw HTTP logs text. Features: detect and mask secrets (Authorization, Cookie, Set-Cookie, API keys), configurable rules, preserve structure, highlight what changed, export sanitized text, localStorage for rules. Tech: React + TS. Output full code + QA checklist + 15 sample logs.
中文释义: 生成日志脱敏工具:可配置规则、可追踪修改点、可导出分享版文本。
在线 Postman Collection Diff + Merge
对比两份 Postman collection,找出请求变化(URL/headers/body/tests),并可导出合并结果。
英文 Prompt:
Build "Postman Collection Diff & Merge". Inputs: two JSON files (paste or upload). Features: structural diff, per-request diff view, conflict resolution UI, export merged JSON, validation of schema. Tech: React + TS + Vite. Output full code, run/build, and QA checklist with 8 collections as fixtures.
中文释义: 生成一个集合对比合并工具:能定位到单个 request 的差异并导出合并结果。
在线 cURL to Code(fetch/axios/python)转换器
把一条 cURL 命令解析为结构化请求,并生成多语言调用代码,支持复制与参数编辑。
英文 Prompt:
Build "cURL to Code Converter". Parse curl commands (headers, method, data, form). Allow editing request fields and output code snippets for JS fetch, axios, Python requests, Go net/http. Provide copy buttons and sample commands. Tech: SolidJS + TS. Output full code + run/build + QA checklist with 20 curl examples including edge cases.
中文释义: 生成 cURL 转代码工具:解析准确、可编辑、可多语言输出,并附足量 edge case 测试。