一键导入
verify
Verify code quality, catch bugs, and validate implementation against codebase patterns. Use for testing, linting, type-checking, and manual review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verify code quality, catch bugs, and validate implementation against codebase patterns. Use for testing, linting, type-checking, and manual review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a new public API method to the Refold SDK with types, JSDoc, and endpoint mapping. Use when adding new SDK functionality.
Review a pull request for code quality, patterns consistency, and potential issues. Use when asked to review a PR by number or URL.
Code style and formatting conventions for this codebase. Reference this when writing or reviewing code to ensure consistency.
| name | verify |
| description | Verify code quality, catch bugs, and validate implementation against codebase patterns. Use for testing, linting, type-checking, and manual review. |
| metadata | {"author":"iamtraction","version":"1.0.0","argument-hint":"<file-path-or-feature>"} |
Perform comprehensive verification of code changes.
The user provides a file path, feature name, or asks to verify recent changes. If no argument, verify all uncommitted changes.
Run these checks and report results:
npm run build # TypeScript compilation → refold.js + refold.d.ts
any types that should be properly typed@deprecated JSDocVerify the code follows SDK conventions:
fetch API onlyRefold class@param, @returns tagsCheck for common issues:
res.status >= 400 not checked after fetchsetInterval properly cleaned up with clearIntervalwindow.open result checked for null (popup blocked)this.token attached to all requeststhis.baseUrl, no hardcoded URLsgetApp() overload still works for both single and all apps## Verification Report
### Build: PASS/FAIL
Details...
### Type Safety: X issues found
- [file:line] Description
### SDK Design: X issues found
- [file:line] Description
### Runtime Safety: X issues found
- [file:line] Description
### Backward Compatibility: X issues found
- [file:line] Description
### Overall: PASS / NEEDS FIXES
Summary and recommended actions.
npm run build — don't skip compilation checkrefold.js and refold.d.ts are generated correctly