From drawbridge
Crafts a target-tuned image-gen prompt from a short brief, copies it to clipboard, opens the target web UI. Use when the user invokes /draw.
How this skill is triggered — by the user, by Claude, or both
Slash command
/drawbridge:drawThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Converted from Claude Code command `/draw`.
Converted from Claude Code command
/draw. Review and adapt: hooks and MCP tool IDs may need manual mapping for Codex.
Parse $ARGUMENTS:
-t <target> — optional target override. One of gemini, chatgpt, grok, midjourney.If no brief is given, stop and report: Usage: /draw [-t target] <brief>.
source plugins/drawbridge/scripts/lib.sh
echo "default_target=$(db_default_target)"
echo "translate=$(db_translate_enabled)"
If user passed -t, use that value. Otherwise use db_default_target. Validate against the allowed set; if invalid, stop and report.
Invoke the prompt-crafting skill (it ships with this plugin). Pass the brief, the target, and the translate flag. The skill returns ONLY the final prompt — no labels, no quoting.
If translate flag is true and the brief is non-English, the skill produces an English prompt.
PROMPT=$(cat <<'PROMPT_EOF'
<final prompt here>
PROMPT_EOF
)
TARGET="<resolved target>"
BRIEF="<original brief>"
source plugins/drawbridge/scripts/lib.sh
printf "%s" "$PROMPT" | db_copy_clipboard
db_history_append "$TARGET" "$BRIEF" "$PROMPT"
db_open_url "$(db_target_url "$TARGET")"
Format:
target: <target>
prompt copied to clipboard, opening <url>
next: Cmd+V in the page, generate, copy the image, paste where you need it.
Show the prompt itself in a fenced block beneath, so the user can audit / copy manually if pbcopy fails.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub ivanlutsenko/awac-ai-agent-plugins --plugin drawbridge