Add ramekin skill for agents inside the container
Sparse, self-improving skill covering Dockerfile customization.
The extension handles basics in the system prompt; this skill
provides deeper reference that grows as agents hit real issues.
Assisted-by: Claude Opus 4.6 via pi
diff --git a/skills/ramekin/SKILL.md b/skills/ramekin/SKILL.md
new file mode 100644
index 0000000..e85150a
--- /dev/null
+++ b/skills/ramekin/SKILL.md
@@ -0,0 +1,23 @@
+---
+name: ramekin
+description: Use when customizing the ramekin container image with a .ramekin/Dockerfile
+---
+
+# Ramekin container environment
+
+## Customizing the image
+
+Create `.ramekin/Dockerfile` in the workspace. It builds on top of
+`ramekin-agent`:
+
+```dockerfile
+FROM ramekin-agent
+RUN apt-get update && apt-get install -y --no-install-recommends \
+ postgresql-client && rm -rf /var/lib/apt/lists/*
+```
+
+The image is rebuilt on every `ramekin run`.
+
+---
+
+*This is a self-improving skill — see the `self-improving-skills` skill.*