From 5be096b13f6b851421484d06081eb17707dcc510 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 20:56:21 +0000 Subject: [PATCH] Initial upload: Local LLM Prompt Manager CLI tool --- prompts/explain-code.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 prompts/explain-code.yaml diff --git a/prompts/explain-code.yaml b/prompts/explain-code.yaml new file mode 100644 index 0000000..b038e8b --- /dev/null +++ b/prompts/explain-code.yaml @@ -0,0 +1,25 @@ +name: explain-code +description: Explain code in simple terms +tags: [documentation, beginner, code-review] +variables: + - name: code + description: The code snippet to explain + required: true + - name: level + description: Explanation level (beginner, intermediate, advanced) + required: false + default: beginner +template: | + Please explain the following code in {{ level }} terms: + + ``` + {{ code }} + ``` + + Focus on: + 1. What the code does + 2. How it works + 3. Any potential issues + +provider: ollama +model: llama3.2