diff --git a/README.md b/README.md index 2783e4a..20b0db6 100644 --- a/README.md +++ b/README.md @@ -211,6 +211,7 @@ Prompt Master includes specific profiles for 20+ tools. For anything not on the | **MiniMax (M2.7 / M2.5)** | Reasoning LLM | Temperature clamping, thinking tag control, structured output optimization | | **Claude Code** | Agentic AI | Stop conditions, file scope, checkpoint output | | **Cursor / Windsurf** | IDE AI | File path, function name, do-not-touch list, sequential prompt guidance | +| **Cline (formerly Claude Dev)** | Agentic IDE | File scope, approval gates, stop conditions, task breakdown | | **GitHub Copilot** | Autocomplete AI | Exact function contract as docstring | | **Antigravity** | Agentic IDE | Task-based prompting, Artifact verification, autonomy level | | **Bolt / v0 / Lovable** | Full-stack generator | Stack spec, version, what NOT to scaffold | diff --git a/SKILL.md b/SKILL.md index b5e2a5c..ab1e5e0 100644 --- a/SKILL.md +++ b/SKILL.md @@ -182,6 +182,18 @@ Identify the tool and route accordingly. Read full templates from [references/te --- +**Cline (formerly Claude Dev)** +- Agentic VS Code extension — autonomously edits files, runs terminal commands, uses browser tools +- Powered by Claude, GPT, or other LLMs — prompting style should match the underlying model +- Starting state + target state + file scope + stop conditions + approval gates +- Always specify which files to edit and which to leave untouched +- Add "Ask before running terminal commands" or "Ask before installing dependencies" to prevent unwanted actions +- Can read file contents, search codebases, and use browser automation — leverage these for context gathering +- For multi-step tasks: break into sequential prompts with clear checkpoints +- Cline shows a task list before executing — review it and adjust scope if needed + +--- + **GitHub Copilot** - Write the exact function signature, docstring, or comment immediately before invoking - Describe input types, return type, edge cases, and what the function must NOT do