원클릭으로
drawbridge-draw-config
View or change drawbridge defaults (target, translate flag). Use when the user invokes /draw-config.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
View or change drawbridge defaults (target, translate flag). Use when the user invokes /draw-config.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
One-shot conversion of a Claude Code plugin to Codex format. Use when asked to convert, port, or add Codex support for a plugin in this repository.
One-shot conversion of a Codex plugin to Claude Code format. Use when asked to convert a Codex plugin to Claude Code, add CC support for a Codex plugin, or reverse-port a plugin from Codex.
Continuous maintenance workflow for plugins that target both Claude Code and Codex. Use when a plugin's commands, skills, or agents have changed and the Codex target needs updating.
Manually sync the editor theme to the current macOS appearance (light/dark). Use when the user switched macOS appearance and wants Claude Code and/or Codex themes refreshed now, or asks to fix/resync the theme. Light → gruvbox-light, dark → sunset-drive.
Install the plugin-cross-port pre-commit hook into any git repository. Use when the user invokes /install-hook.
Generates platform-specific social media descriptions for video clips. Creates copy for YouTube Shorts, Instagram Reels, and TikTok.
SOC 직업 분류 기준
| name | drawbridge-draw-config |
| description | View or change drawbridge defaults (target, translate flag). Use when the user invokes /draw-config. |
| version | 0.1.0 |
Converted from Claude Code command
/draw-config. Review and adapt: hooks and MCP tool IDs may need manual mapping for Codex.
Settings live in YAML frontmatter of ~/.claude/drawbridge.local.md (project-local override: <cwd>/.claude/drawbridge.local.md).
show (default if no args)source plugins/drawbridge/scripts/lib.sh
echo "config_path: $(db_config_path)"
echo "default_target: $(db_default_target)"
echo "translate_to_english: $(db_translate_enabled)"
If config file does not exist, say so explicitly and offer to create one with defaults (gemini, true) via AskUserQuestion.
set <key> <value>Allowed keys: default_target, translate_to_english.
For default_target, validate against gemini | chatgpt | grok | midjourney.
For translate_to_english, accept true | false.
If the user-global config does not exist yet, create it. Use the Write tool with this template:
---
default_target: gemini
translate_to_english: true
---
# drawbridge — user settings
Then patch the requested key. Read existing file, replace the line in frontmatter, write back.
After change, echo the updated values via the show flow.
If $ARGUMENTS is empty, ask the user via AskUserQuestion:
show, change default_target, change translate_to_englishFor change paths, ask the new value via a follow-up AskUserQuestion with constrained options.