Add rule/config files for Cursor, Cline, Codex, Gemini, Continue, and OpenCode editors pointing them to project conventions, UBS usage, and AGENTS.md. Add a Claude Code on-file-write hook that runs UBS on supported source files after every save. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
373 B
JSON
17 lines
373 B
JSON
{
|
|
"customCommands": [
|
|
{
|
|
"name": "scan-bugs",
|
|
"description": "Run Ultimate Bug Scanner on current project",
|
|
"prompt": "Run 'ubs --fail-on-warning .' and fix any critical issues found before proceeding"
|
|
}
|
|
],
|
|
"slashCommands": [
|
|
{
|
|
"name": "quality",
|
|
"description": "Check code quality with UBS",
|
|
"run": "ubs ."
|
|
}
|
|
]
|
|
}
|