AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Enrich

skill-sharpdeveye-maestro-enrich · by sharpdeveye

Use when the agent needs access to information beyond its training data — knowledge sources, RAG pipelines, or grounding data.

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-sharpdeveye-maestro-enrich

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sharpdeveye-maestro-enrich)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Enrich? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MANDATORY PREPARATION

Invoke /agent-workflow — it contains workflow principles, anti-patterns, and the Context Gathering Protocol. Follow the protocol before proceeding — if no workflow context exists yet, you MUST run /teach-maestro first. Consult the knowledge-systems reference in the agent-workflow skill for RAG architecture, chunking strategies, and retrieval patterns.


Add knowledge sources to ground the workflow in facts. Without grounding, agents hallucinate. With grounding, they cite sources.

Knowledge Source Assessment

Identify what knowledge the workflow needs:

| Knowledge Type | Source | Update Frequency | Access Pattern | |---------------|--------|-----------------|----------------| | Domain docs | Internal docs, specs | Monthly | Semantic search | | Code context | Codebase | Real-time | Code search | | User data | Database, CRM | Real-time | Structured query | | External data | APIs, web | Real-time | API call | | Historical | Logs, past interactions | Daily | Time-range query |

Add RAG Pipeline

For document-based knowledge (consult the knowledge-systems reference in the agent-workflow skill):

  1. Select documents: Identify the authoritative source documents
  2. Chunk strategy: Choose chunking based on document type (semantic > token-based)
  3. Embed: Use appropriate embedding model for the domain
  4. Index: Store in vector database with metadata
  5. Retrieve: Implement hybrid search (semantic + keyword)
  6. Inject: Add retrieved context to the prompt with source attribution

Add Structured Data

For database-backed knowledge:

  1. Define the query interface: Natural language → structured query
  2. Add guardrails: Read-only access, query complexity limits
  3. Format results: Transform raw data into context the model can use
  4. Attribute: Include data source and freshness in the context

Add Real-Time Data

For live information:

  1. Identify APIs: What external services provide the needed data
  2. Cache strategy: How often does the data change? Cache accordingly
  3. Fallback: What happens when the API is down?
  4. Attribution: Include data timestamp and source

Enrichment Checklist

  • [ ] Every knowledge source has attribution (source, date, confidence)
  • [ ] Retrieval quality tested independently of generation quality
  • [ ] Chunk sizes tested and optimized for the document types
  • [ ] Fallbacks exist for all external knowledge sources
  • [ ] Knowledge base has a refresh/update strategy
  • [ ] PII is handled appropriately in knowledge sources

Recommended Next Step

After enrichment, run /evaluate to test retrieval quality, or /iterate to set up continuous monitoring of knowledge freshness.

NEVER:

  • Index everything without curation (garbage in = garbage out)
  • Skip source attribution (hallucination without attribution is undetectable)
  • Build RAG without testing retrieval quality first
  • Use fixed chunk sizes for all document types
  • Assume embedding similarity equals relevance

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.