一键导入
object-oriented
Convert files to object-oriented programming style with optional NLP instructions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert files to object-oriented programming style with optional NLP instructions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Ruthlessly tear apart code design — naming, abstractions, coupling, complexity, and everything else.
Generate Mermaid diagrams in the README to visualise architecture, flows, or relationships from the codebase.
Analyse test coverage gaps and report uncovered code before making changes.
Run tests, fix failures, and re-run until the suite passes.
Write and improve tests — reuse existing patterns, ensure consistency, and maintain quality.
Isolate a function or code block into a self-contained, runnable script for study and manual testing.
| name | object-oriented |
| description | Convert files to object-oriented programming style with optional NLP instructions. |
| argument-hint | <files> [instructions] |
| user-invocable | true |
| disable-model-invocation | true |
Convert the specified files to an object-oriented programming style, appropriate to the language of each file.
Files and instructions: $ARGUMENTS
The arguments are free-form and flexible. They may contain:
@file.ts, file.py, main.go, utils.go, script.sh handler.rbParse the arguments to identify which files to convert and what additional instructions apply. When additional instructions reference related files (e.g. imports, dependents), follow those instructions to identify and convert those files as well.
/object-oriented@service.ts @handler.ts — convert these two files/object-orientedutils.py, helpers.py — comma-separated, no @ prefix/object-oriented@app.go and also convert the files it imports — convert with extended scope/object-oriented@processor.rb focus only on the data transformation methods — convert with targeted instructions