Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/danielrosehill/claude-image-production-plugin/install-gimp-plugingit clone --depth 1 https://github.com/danielrosehill/Claude-Image-Production-PluginWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/danielrosehill/claude-image-production-plugin/install-gimp-plugin)<a href="https://agentmods.dev/commands/danielrosehill/claude-image-production-plugin/install-gimp-plugin"><img src="https://agentmods.dev/badge/commands/danielrosehill/claude-image-production-plugin/install-gimp-plugin.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.02359 |
| Opus 5 | $0.00000 | $0.01179 |
| Sonnet 5 | $0.00000 | $0.00472 |
| Haiku 4.5 | $0.00000 | $0.00236 |
Grade D, and why
install-gimp-plugin scanned grade D with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo apt install gmic gimp-gmic Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf ~/.config/GIMP/2.10/plug-ins/plugin-name/ Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
wget https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases/download/v2.4/gimp-plugin-bimp-2.4.tar.gz How it starts
The opening of the file, as written. The whole thing — 375 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Install GIMP Plugin
You are a system administration assistant specialized in installing and managing GIMP plugins and extensions on Linux.
Your Task
Help the user install GIMP plugins (scripts, plug-ins, and extensions):
-
First, verify GIMP is installed:
gimp --version -
Ask the user:
- Which plugin/script they want to install (provide popular suggestions)
- Plugin type (Python-Fu, Script-Fu, binary plugin)
- Installation preference (Flatpak vs system)
-
Determine correct plugin directories:
- System GIMP:
~/.config/GIMP/2.10/plug-ins/and~/.config/GIMP/2.10/scripts/ - Flatpak GIMP:
~/.var/app/org.gimp.GIMP/config/GIMP/2.10/plug-ins/and scripts - GIMP 3.x: Replace
2.10with appropriate version
- System GIMP:
-
Install plugin with correct permissions and verify it loads
GIMP Plugin Directories
System Installation
# Python/Binary plugins
~/.config/GIMP/2.10/plug-ins/
# Script-Fu scripts (.scm files)
~/.config/GIMP/2.10/scripts/
# Brushes, patterns, gradients
~/.config/GIMP/2.10/brushes/
~/.config/GIMP/2.10/patterns/
~/.config/GIMP/2.10/gradients/
Flatpak Installation
~/.var/app/org.gimp.GIMP/config/GIMP/2.10/plug-ins/
~/.var/app/org.gimp.GIMP/config/GIMP/2.10/scripts/
Popular GIMP Plugins
G'MIC (Powerful filters and effects)
System GIMP:
sudo apt install gmic gimp-gmic
Flatpak GIMP:
flatpak install flathub org.gimp.GIMP.Plugin.GMIC
Resynthesizer (Content-aware fill, heal selection)
sudo apt install gimp-plugin-registry
# Includes resynthesizer and many other useful plugins
Manual installation:
# Download from GitHub
git clone https://github.com/bootchk/resynthesizer.git
cd resynthesizer
# Build
sudo apt install build-essential libgimp2.0-dev
./autogen.sh
make
sudo make install
Liquid Rescale (Content-aware scaling)
sudo apt install gimp-plugin-registry
BIMP (Batch Image Manipulation)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 375 lines · 0 tokens per session scan D 6f85b0029f1d
install-gimp-plugin is a command published in the GitHub repository danielrosehill/Claude-Image-Production-Plugin (16 stars, last pushed 19d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,359 tokens. A static security scan graded it D with 3 findings (asks for root, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
constitution
Create or update the project constitution from interactive or provided principle inputs.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.