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.
npx agentmods add skills/crestapps/crestapps.agentskills/crestapps-core-foundationsnpx skills add CrestApps/CrestApps.AgentSkills --skill crestapps-core-foundationsgit clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkillsWrote 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.
[](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-foundations)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-foundations"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-foundations.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00024 | $0.00773 |
| Opus 5 | $0.00012 | $0.00387 |
| Sonnet 5 | $0.00005 | $0.00155 |
| Haiku 4.5 | $0.00002 | $0.00077 |
Grade A, and why
crestapps-core-foundations 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CrestApps.Core Foundations - Prompt Templates
Build on Core Abstractions
You are a CrestApps.Core expert. Prefer framework contracts over provider-specific implementations.
builder.Services.AddCrestAppsCore(crestApps => crestApps
.AddAISuite(ai => ai.AddOpenAI())
);
AddCrestAppsCore(...) creates the root CrestAppsCoreBuilder. AddIndexingServices(...) creates CrestAppsIndexingBuilder. Feature packages add their own builders beneath this root; keep application hosts at the top, core abstractions and infrastructure underneath, then AI features, providers, search backends, and storage implementations.
Catalogs and Lifecycle
- Use
IReadCatalog<T>for reads andICatalog<T>for CRUD. - Use
INamedCatalog<T>,ISourceCatalog<T>, orINamedSourceCatalog<T>only when the model supports name and/or source lookup. - Use
ICatalogManager<T>,INamedCatalogManager<T>,ISourceCatalogManager<T>, orINamedSourceCatalogManager<T>to apply lifecycle handling around a catalog. - Register
ICatalogEntryHandler<T>implementations for initializing, initialized, loaded, validating, validated, creating, created, updating, updated, deleting, and deleted events.
CatalogManagerBase<T> performs the handler pipeline. CatalogManager<T>, NamedCatalogManager<T>, SourceCatalogManager<T>, and NamedSourceCatalogManager<T> supply the matching lookup model. AddCatalogManagers() registers these manager families.
Use INamedCatalogSource<T>, INamedSourceCatalogSource<T>, IWritableNamedCatalogSource<T>, and IWritableNamedSourceCatalogSource<T> for multi-source bindings. WritableCatalogBindingSource<T> and WritableNamedCatalogBindingSource<T> are the built-in writable adapters.
OData Filters and Commit Boundaries
AddCoreServices() registers scoped IODataValidator as ODataFilterValidator. Use IsValidFilter(filter) before passing a user-provided filter to an IODataFilterTranslator. The validator is deliberately basic syntax validation; the selected backend performs full query validation.
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.
- 5d ago First seen · 49 lines · 24 tokens per session scan A a6f6de7ea5b0
crestapps-core-foundations is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 7d ago), licensed MIT. It adds 24 tokens to every session and 773 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.
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.
testing
Run and troubleshoot tests for DBHub, including unit tests, integration tests with Testcontainers, and database-specific tests. Use when asked to run tests, fix test failures, debug integration tests, troubleshoot Docker/database container issues, or add new tests. Also use when verifying code changes work correctly…
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.
solr-semantic-search
To build Solr phrase-tagging semantic search: concept tagging, taxonomy, graph paths.
solr-schema
To design and audit Solr schemas: field types, analyzers, docValues, solrconfig.
npgsqlrest
Build and modify REST APIs with NpgsqlRest — exposing PostgreSQL as HTTP endpoints from two sources (database functions/procedures/tables/views, and plain .sql files), driven by SQL comment annotations (no C# needed). Use when working in an NpgsqlRest project: writing or changing endpoint SQL (functions or .sql…