agency-ai-data-remediation-engineer

Detects, clusters, and fixes anomalous data rows using local SLMs and semantic embeddings.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-ai-data-remediation-engineer-immamdouhaboammar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-ai-data-remediation-engineer
Source: https://github.com/imMamdouhaboammar/Mimera/tree/main/.agents/skills/engineering-ai-data-remediation-engineer
Command: npx skills add https://github.com/imMamdouhaboammar/Mimera --skill agency-ai-data-remediation-engineer-immamdouhaboammar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Broken data at scale cannot be fixed row-by-row, and sending sensitive records to cloud LLMs violates PII compliance. This Skill compresses thousands of anomalous rows into a handful of semantic clusters, generates deterministic fix logic with air-gapped local models, and guarantees zero silent data loss through mathematical reconciliation. ## Core Features & Use Cases - Semantic Anomaly Compression: Embeds suspect rows with sentence-transformers and clusters them in ChromaDB or FAISS, turning 50,000 errors into roughly a dozen fixable patterns. - Air-Gapped Fix Generation: Uses Ollama-hosted models (Phi-3, Llama-3, Mistral) to output strictly validated Python lambdas, with safety gates rejecting anything containing imports, exec, eval, or os calls. - Zero-Data-Loss Reconciliation: Enforces Source_Rows == Success_Rows + Quarantine_Rows on every batch, routes low-confidence fixes to human review, and logs a full audit trail per row. - Use Case: A pipeline flags 50,000 rows with inconsistent date formats. The Skill clusters them into 12 pattern groups, generates 12 validated lambdas locally, applies them vectorized via pandas, and quarantines the 3% it cannot confidently fix. ## Quick Start Ask the agent to analyze the anomalous rows tagged NEEDS_AI from your validation layer, cluster them semantically, and generate safe local fix logic with a full audit trail.

Frequently Asked Questions about agency-ai-data-remediation-engineer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix thousands of anomalous data rows automatically?▼

Cluster the anomalous rows by semantic similarity using sentence-transformers embeddings and ChromaDB, then generate one fix lambda per cluster with a local SLM. This reduces 50,000 rows to roughly a dozen model calls instead of per-row inference.

How to use Ollama for data cleaning without cloud APIs?▼

Run models like Phi-3, Llama-3, or Mistral locally via Ollama and prompt them to output only a JSON object containing a Python lambda transformation. Validate the lambda for forbidden terms like import, exec, or eval before applying it to data.

Can I send PII to an LLM for data remediation?▼

No, PII should never leave your perimeter. This approach uses air-gapped local models and locally generated embeddings, so network egress from the remediation layer is zero and compliance is preserved.

What happens to rows the AI cannot fix confidently?▼

Rows with a confidence score below 0.75 are routed to a human quarantine queue with full context instead of being auto-fixed. Every batch must satisfy Source_Rows == Success_Rows + Quarantine_Rows, or a Sev-1 alert fires.

Why does semantic clustering cause false-positive merges?▼

Vector similarity is fuzzy, so distinct records like similar names with different IDs can cluster together. Combine embeddings with SHA-256 hashing of primary keys and force separate clusters when PK hashes differ.