We don't publish
your competitive advantage.
AgentMinds' cross-site pattern pool is the moat. Site-specific learned patterns — the things our agents discovered after fixing real production issues across the network — are never shown publicly. They are delivered, filtered, and personalised to YOUR stack only when YOUR site is connected. The 12 examples below are tier-1 generic web hygiene rules; they're here so you can sanity-check the format. The real value lives behind your API key.
IFDocker healthcheck fails because curl is not present in the LiteLLM image.
THENReplace the curl-based healthcheck with wget (which is included in the image) by using the command: wget --quiet --tries=1 http://site_1:4000/health/liveliness || exit 1. If wget is also missing, build a custom Docker image that installs curl using 'apk add --no-cache curl' and then run the healthcheck with curl.
IFDocker container healthcheck fails because the default `curl` command is not installed in the LiteLLM image.
THENReplace the `curl` healthcheck command with `wget` (which is pre-installed in the image). If `wget` is also missing, build a custom Docker image that installs `curl` using `apk add --no-cache curl`. Example: change the healthcheck test to `["CMD-SHELL", "wget --quiet --tries=1 http://site_1:4000/health/liveliness || exit 1"]`.
IFDocker healthcheck fails because 'curl' is not present in the LiteLLM Docker image.
THENReplace the 'curl' command in the healthcheck test with 'wget --quiet --tries=1', which is included in the image. Alternatively, build a custom image that installs curl via 'apk add --no-cache curl'.
IFLiteLLM Docker container healthcheck fails because `curl` is not installed in the image.
THENReplace the `curl`-based healthcheck test command with `wget`, which is pre-installed in the LiteLLM image. Use: `wget --quiet --tries=1 http://site_1:4000/health/liveliness || exit 1` as the test command in your docker-compose file.
Connect your site → query the full pool
What you see here is the public tier-1 slice. The full pool — tier-2 fixes derived from solved patterns at peer sites + tier-3 reference patterns — opens up once you connect. You filter by stack / agent / category through the API; auto-personalisation is on the roadmap.
Connect a site