Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add terry-li-hm/skills --skill "remote-llm"
Install specific skill from multi-skill repository
# Description
Craft prompts for Terry to run on local/work LLMs when code can't be shared directly. Use when Terry mentions proprietary code, work systems, or needs help with code he can't paste.
# SKILL.md
name: remote-llm
description: Craft prompts for Terry to run on local/work LLMs when code can't be shared directly. Use when Terry mentions proprietary code, work systems, or needs help with code he can't paste.
Remote LLM Workflow
Use this pattern when Terry needs help with code he can't share directly (e.g., proprietary bank code). Claude crafts prompts, Terry runs them on a local/work LLM (like Qwen3-32B at CITIC), and shares results back.
Workflow
- Discovery prompt β Find the relevant code
- Ask for file structure, class names, method signatures
-
Keep scope narrow to avoid overwhelming output
-
Terry runs locally β Pastes prompt + attaches files to work LLM
-
Interpret results β Understand what was found
-
Modification prompt β Make specific changes
- Reference exact locations from discovery
-
Keep changes incremental
-
Iterate β Repeat until task complete
Prompt Delivery
Create secret gists for easy copy-paste:
gh gist create -d "discovery prompt" -f "prompt.md" - <<'EOF'
[prompt content here]
EOF
Always secret gists. Never -p or --public. Delete after use.
Prompt Structure Tips
- Start with clear context: "You are helping modify [system/module]..."
- Be explicit about output format: "Return only the modified function"
- For discovery: "List all methods in [class] with their signatures"
- For modification: "In [file], find [function], change [X] to [Y]"
Model-Specific Notes
If Terry mentions which model, check vault for tips:
- Qwen3: See [[Qwen3 Prompting Best Practices]] β thinking mode, temperature settings
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.