원클릭으로
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