ワンクリックで
style
Code style and formatting conventions for this codebase. Reference this when writing or reviewing code to ensure consistency.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Code style and formatting conventions for this codebase. Reference this when writing or reviewing code to ensure consistency.
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.
Verify code quality, catch bugs, and validate implementation against codebase patterns. Use for testing, linting, type-checking, and manual review.
| name | style |
| description | Code style and formatting conventions for this codebase. Reference this when writing or reviewing code to ensure consistency. |
| metadata | {"author":"iamtraction","version":"1.0.0","user-invocable":false} |
These conventions apply to all code written in this codebase. Follow them when creating, modifying, or reviewing code.
if (...) {), closing brace on its own line{ key: value }, not {key: value}getApp, executeWorkflow, configIdI prefix — Application, Config, ExecutionAuthType.OAuth2, AuthStatus.Activeis, has, can, should — isConnected, hasTokenany — use unknown when the type is genuinely unknown, then narrowinterface for object shapes, type for unions, intersections, and utility types! — prefer optional chaining (?.) and nullish coalescing (??)fetch API.Refold class. Keep it that way.@deprecated JSDoc tag — never remove them without a major version bump@param and @returns tags. This generates the TypeDoc documentation.Refold classprivate keyword — private oauth(...), private keybased(...)async/await, never raw .then() chains in new coderes.status >= 400 && res.status < 600, parse JSON, throw it