orchardcore-ai-documents

orchardcore-ai-documents is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 125 tokens per session (3,119 once invoked), scanned A, original, MIT.

A document-processing feature for Orchard Core that uploads files, extracts their text, splits it into smaller sections, creates vector representations, and searches those vectors for AI conversations. Retrieval-Augmented Generation (RAG) means finding relevant stored content before generating an answer.

In plain words
What is it for?
Use it to build document upload and storage flows, index supported files with Azure AI Search or Elasticsearch, and retrieve relevant content for AI responses.
Why use it?
It lets an AI chat use information from uploaded PDFs, Office files, and plain text instead of relying only on its general training. CSV and XLSX files use a separate tabular workflow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build document upload and storage flows, index supported files with Azure AI Search or Elasticsearch, and retrieve relevant content for AI responses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-ai-documents
Install

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.

Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-ai-documents
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for orchardcore-ai-documents

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-documents.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,119 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 263
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00125 $0.03119
Opus 5 $0.00063 $0.01559
Sonnet 5 $0.00025 $0.00624
Haiku 4.5 $0.00013 $0.00312

Measured 8d ago against content hash 5dc0b640a754, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

orchardcore-ai-documents scanned grade A with 0 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/crestapps-orchardcore/skills/orchardcore-ai-documents/SKILL.md · 327 lines

How it starts

The opening of the file, as written. The whole thing — 327 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orchard Core AI Documents - Prompt Templates

Configure AI Documents

You are an Orchard Core expert. Generate code, configuration, and recipes for adding document processing, storage, indexing, and Retrieval-Augmented Generation (RAG) capabilities to an Orchard Core application using CrestApps AI Documents modules.

Guidelines

  • The AI Documents modules provide document upload, text extraction, chunking, vector indexing, and RAG search for AI conversations.
  • The base feature CrestApps.OrchardCore.AI.Documents is EnabledByDependencyOnly and is activated automatically when you enable one of the higher-level features.
  • Embeddable documents follow the pipeline Upload → Extract Text → Chunk → Embed → Index → Vector Search.
  • Tabular documents (.csv and .xlsx) use a tabular workspace and tabular tools instead of embedding and vector indexing.
  • An embedding deployment (e.g., text-embedding-3-small) is required only for the embeddable document indexing path.
  • Each indexing backend (Azure AI Search or Elasticsearch) registers a keyed IVectorSearchService implementation.
  • Install all CrestApps NuGet packages in the web/startup project.
  • Always secure connection strings and API keys using user secrets or environment variables.

Feature IDs

Feature ID Module Description
CrestApps.OrchardCore.AI.Documents AI Documents Foundation for document processing, text extraction, and RAG (enabled by dependency only)
CrestApps.OrchardCore.AI.Documents.ChatInteractions AI Documents Document upload and RAG for AI Chat Interactions
CrestApps.OrchardCore.AI.Documents.Profiles AI Documents Document upload and RAG for AI Profiles
CrestApps.OrchardCore.AI.Documents.ChatSessions AI Documents Document upload and RAG for AI Chat Sessions and Widgets
CrestApps.OrchardCore.AI.Documents.Azure AI Documents - Azure Blob Storage Stores uploaded documents in Azure Blob Storage
CrestApps.OrchardCore.AI.Documents.AzureAI AI Documents - Azure AI Search Indexes document chunks in Azure AI Search
CrestApps.OrchardCore.AI.Documents.Elasticsearch AI Documents - Elasticsearch Indexes document chunks in Elasticsearch
CrestApps.OrchardCore.AI.Documents.Pdf AI Documents (PDF) Adds PDF file support
CrestApps.OrchardCore.AI.Documents.OpenXml AI Documents (OpenXml) Adds OpenXml file support (docx, xlsx, pptx)

Read the full file on GitHub · 327 lines

Changes

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.

  1. 8d ago First seen · 327 lines · 125 tokens per session scan A 5dc0b640a754

Subscribe to this mod's changes

orchardcore-ai-documents is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 10d ago), licensed MIT. It adds 125 tokens to every session and 3,119 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

hybrid-rag

Use when creating, updating, or querying a local Hybrid RAG database from PRISMA JSON metadata or PDF documents in a folder. Triggered by prisma-review (after Fase 4) or educational-pilot-design (to query evidence). Hybrid RAG combines dense vector search (sentence-transformers) and sparse retrieval — native FTS via…

giovannifrontera/academic-research-prisma-wiki-rag · 96 tokens

markitdown

Convert heterogeneous documents and selected URIs to Markdown with Microsoft MarkItDown for text analysis, search, and LLM/RAG ingestion. Covers safe local conversion, streams, Office/PDF/data formats, batch workflows, plugins, vision OCR, Azure extraction, and the official MCP server.

K-Dense-AI/scientific-agent-skills · 61 tokens

azure-ai

Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.

microsoft/skills · 76 tokens

kb-retriever

A retrieval and question-answering assistant for a local folder of documents, including Markdown, text, PDFs, and spreadsheets.

ConardLi/garden-skills · 105 tokens

microsoft-extensions-ai

Build provider-agnostic .NET AI integrations with Microsoft.Extensions.AI, IChatClient, embeddings, middleware, structured output, vector search, and evaluation. USE FOR: building or reviewing .NET code that uses Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, IChatClient, IEmbeddingGenerator…

managedcode/dotnet-skills · 128 tokens

managedcode-markitdown

Use ManagedCode.MarkItDown when a .NET application needs deterministic document-to-Markdown conversion for ingestion, indexing, summarization, or content-processing workflows. USE FOR: ManagedCode.MarkItDown integration; document ingestion flows; Office or rich-text conversion to Markdown; indexing and summarization…

managedcode/dotnet-skills · 113 tokens