From 1e753281356ff6dd3c799e9fc7f5a6b159578446 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 17 Feb 2026 08:43:33 +0200 Subject: Update content for html --- ...eta-slash-commands-for-prompts-and-context.html | 126 ++++++++++++++++---- gemfeed/atom.xml | 132 +++++++++++++++++---- gemfeed/index.html | 2 +- index.html | 2 +- 4 files changed, 215 insertions(+), 47 deletions(-) diff --git a/gemfeed/2026-02-14-meta-slash-commands-for-prompts-and-context.html b/gemfeed/2026-02-14-meta-slash-commands-for-prompts-and-context.html index b9aa949d..8b6c03d4 100644 --- a/gemfeed/2026-02-14-meta-slash-commands-for-prompts-and-context.html +++ b/gemfeed/2026-02-14-meta-slash-commands-for-prompts-and-context.html @@ -2,7 +2,7 @@ -Meta slash-commands to manage prompts and context for coding agents +Meta slash-commands to manage prompts, skills, and context for coding agents @@ -11,11 +11,13 @@

Home | Markdown | Gemini

-

Meta slash-commands to manage prompts and context for coding agents


+

Meta slash-commands to manage prompts, skills, and context for coding agents



-Published at 2026-02-14T13:44:45+02:00
+Published at 2026-02-14T13:44:45+02:00, last updated Tue 17 Feb 14:00:00 EET 2026

-I work on many small, repeatable tasks. Instead of retyping the same instructions every time, I want to turn successful prompts into reusable slash-commands and keep background knowledge in loadable context files. This post describes a set of *meta* slash-commands: commands that create, update, and delete other commands and context files. They live as markdown in a dotfiles repo and work with any coding agent that supports slash-commands—Claude Code CLI, Cursor Agent, OpenCode, Ampcode, and others.
+I work on many small, repeatable tasks. Instead of retyping the same instructions every time, I want to turn successful prompts into reusable slash-commands and keep background knowledge in loadable context files. This post describes a set of *meta* slash-commands: commands that create, update, and delete other commands, context files, and skills. They live as markdown in a dotfiles repo and work with any coding agent that supports slash-commands—Claude Code CLI, Cursor Agent, OpenCode, Ampcode, and others.
+
+Updated Tue 17 Feb: Added section about skill management commands and the differences between commands and skills

     ┌─────────────────────────────────────────────────────────────┐
@@ -27,32 +29,33 @@
     │   Context loaded: api-guidelines.md                         │
     │   Ready. Ask me to implement something.                     │
     │                                                             │
-    │   → /create-command review-pr                               │
+    │   → /create-skill docker-compose                            │
     │                                                             │
-    │   Analyzing "review-pr"...                                  │
-    │   Generated: description + prompt. Save to commands/ ? [Y]  │
+    │   Analyzing "docker-compose"...                              │
+    │   Generated: SKILL.md with frontmatter + instructions.      │
+    │   Save to skills/docker-compose/ ? [Y]                      │
     │                                                             │
-    │   ✓ Saved. Use /review-pr anytime.                          │
+    │   ✓ Saved. Use /docker-compose anytime.                     │
     │                                                             │
     └─────────────────────────────────────────────────────────────┘
                           │
-                          │  slash-commands
+                          │  slash-commands & skills
                           ▼
     ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌──────────┐
-    │ /load-   │  │ /create- │  │ /update- │  │ /review-  │
-    │ context  │  │ command  │  │ command  │  │ pr        │
+    │ /load-   │  │ /create- │  │ /create- │  │ /docker-  │
+    │ context  │  │ command  │  │ skill    │  │ compose   │
     └──────────┘  └──────────┘  └──────────┘  └──────────┘
          │              │              │              │
          └──────────────┴──────────────┴──────────────┘
                               │
                     coding agent executes
-                    your prompt library	
+                    your prompt library
 

Table of Contents