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.
IFOpen WebUI Langfuse filter pipeline adds a chat_id field to the request body if missing, causing models like GPT-4o to fail or return errors.
THENModify the pipeline's inlet method to stop injecting chat_id into the request body. Store chat_id internally for tracing purposes without forwarding it to the model. Apply the patch from open-webui/pipelines#388 which removes the chat_id injection.
IFChroma.from_documents fails with ValueError: Expected EmbeddingFunction.__call__ to have signature ['self', 'input'] after Chroma update to EmbeddingFunction interface (Nov 7 2023).
THENUpdate the embedding class (e.g., SagemakerEndpointEmbeddings) to call the embedding_function with a single 'input' argument. In embed_query and embed_documents, prepare input via self.prepare_input and then call self.embedding_function(input). Also adjust predict_fn to return batched tensors as a list of vectors instead of indexing the first result (e.g., change 'sentence_embeddings[0].tolist()' to 'sentence_embeddings.tolist()' for batched requests).
IFWhen using langchain with openai>=1.0.0, calling OpenAI().predict() raises AttributeError: module 'openai' has no attribute 'Completion'
THENDowngrade openai to version 0.28.1 by running 'pip install openai==0.28.1'. This restores the old API structure that langchain depends on. Alternatively, wait for an updated langchain version that supports openai v1.0.0+.
IFSporadic 400 error from AWS Bedrock when using Claude Code v2.0.42 or newer: 'tools.3.custom.input_examples: Extra inputs are not permitted'.
THENDowngrade Claude Code to version 2.0.36, which does not send the unsupported `input_examples` field in tool definitions. Note that LiteLLM's `drop_params: true` configuration does not resolve this issue for nested fields within tool definitions.
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