crestapps-core-yessql-stores

crestapps-core-yessql-stores is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 26 tokens per session (1,323 once invoked), scanned A, original, MIT.

A configuration skill for using YesSql as the data-storage backend in CrestApps.Core. YesSql is a .NET document database layer that stores application data in collections.

In plain words
What is it for?
Use it to register YesSql, configure collections, add document, data-source, or AI-memory stores, and commit changes from web requests or background tasks.
Why use it?
It distinguishes between creating the YesSql store and selecting feature-specific stores, helping prevent missing registrations or uncommitted changes.

Skill for Claude CodeCodex

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

Good fit Use it to register YesSql, configure collections, add document, data-source, or AI-memory stores, and commit changes from web requests or background tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores
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 crestapps-core-yessql-stores
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 crestapps-core-yessql-stores

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for crestapps-core-yessql-stores

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-yessql-stores.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,323 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 pass 7 Sept 2026
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.00026 $0.01323
Opus 5 $0.00013 $0.00661
Sonnet 5 $0.00005 $0.00265
Haiku 4.5 $0.00003 $0.00132

Measured 9d ago against content hash 4527109f2b3a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

crestapps-core-yessql-stores 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 9d 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-core/skills/crestapps-core-yessql-stores/SKILL.md · 66 lines

How it starts

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

CrestApps.Core YesSql Stores - Prompt Templates

Configure YesSql Persistence

You are a CrestApps.Core expert. Generate accurate YesSql persistence guidance using CrestApps.Core.Data.YesSql.

Rules

  • Register AddYesSqlDataStore(...) on the root CrestAppsCoreBuilder. It calls AddCoreYesSqlDataStore(...), creates the singleton IStore, initializes configured collections, registers IIndexProvider instances, creates scoped ISession, and registers YesSqlStoreCommitter.
  • AddYesSqlStores() only selects stores for a feature. It does not create the IStore; without AddYesSqlDataStore(...), YesSql stores cannot resolve their session.
  • YesSqlStoreCommitter flushes the request-scoped ISession through IStoreCommitter.CommitAsync(). Add AddCrestAppsStoreCommitterFilter() to MVC, StoreCommitterEndpointFilter to Minimal API groups, or commit explicitly in a background scope.
  • Configure collections with YesSqlStoreOptions: DefaultCollectionName, AICollectionName (default "AI"), AIMemoryCollectionName (default "AIMemory"), and AIDocsCollectionName (default "AIDocs").
builder.Services.AddControllersWithViews()
    .AddCrestAppsStoreCommitterFilter();

builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddYesSqlStores()
        .AddChatInteractions(chat => chat.AddYesSqlStores())
        .AddDocumentProcessing(documents => documents.AddYesSqlStores())
        .AddAIMemory(memory => memory.AddYesSqlStores())
    )
    .AddIndexingServices(indexing => indexing.AddYesSqlStores())
    .AddYesSqlDataStore(configuration => configuration
        .UseSqLite("Data Source=App_Data/crestapps.db;Cache=Shared"))
);

Per-Feature Registration

Use the matching builder extension only for enabled features:

Builder Store registration
CrestAppsAISuiteBuilder .AddYesSqlStores()
CrestAppsChatInteractionsBuilder .AddYesSqlStores()
CrestAppsDocumentProcessingBuilder .AddYesSqlStores()
CrestAppsAIMemoryBuilder .AddYesSqlStores()
CrestAppsIndexingBuilder .AddYesSqlStores()
CrestAppsA2AClientBuilder .AddYesSqlStores()
CrestAppsMcpClientBuilder or CrestAppsMcpServerBuilder .AddYesSqlStores()
CrestAppsAIToolInstancesBuilder .AddYesSqlStores()

Read the full file on GitHub · 66 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. 9d ago First seen · 66 lines · 26 tokens per session scan A 4527109f2b3a

Subscribe to this mod's changes

crestapps-core-yessql-stores is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 11d ago), licensed MIT. It adds 26 tokens to every session and 1,323 once invoked, about $0.0001 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

amazon aurora dsql

Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.

awslabs/mcp · 46 tokens

dv-query

Bulk reads, multi-page iteration, and analytics over Dataverse data. Use when the user wants to read, list, filter, aggregate, group, join, or analyze records — including pandas DataFrame workflows and notebook exploration.

microsoft/Dataverse-skills · 48 tokens

solr-schema

To design and audit Solr schemas: field types, analyzers, docValues, solrconfig.

griddynamics/rosetta · 25 tokens

dv-connect

One-step setup for a Dataverse environment — installs tools, authenticates, registers the MCP server, and writes .env. Use when starting a new project, switching environments, fixing authentication, or troubleshooting an MCP connection that won't come up.

microsoft/Dataverse-skills · 51 tokens

odoo-data-quality-gate

Audit an Odoo database's data quality with evidence before trusting AI answers, importing, or migrating — duplicates, missing required values, orphaned references, format anomalies — and drive remediation through odoo-mcp's gated write workflow. Use when the user asks to "check data quality", "clean up data", "prepare…

erpipe-org/mcp-odoo · 85 tokens

sqlsugar

Use when doing multi-database ORM operations in .NET — SQL Server, MySQL, PostgreSQL, SQLite, Oracle with fluent API, code-first, and LINQ. SqlSugar: high-performance .NET ORM supporting 10+ databases.

znlgis/opengis-skills · 53 tokens