crestapps-core-chat-interactions

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

A coding guide for adding chat interactions to CrestApps.Core applications. CrestApps.Core is a software framework, and the guide shows how to register an AI provider, chat feature, connection, and deployment.

In plain words
What is it for?
Use it to add and test chat interactions, decide when to move to AI profiles, and determine whether features such as SignalR, retrieval, memory, or agent routing are needed.
Why use it?
It provides a short validation path for checking that an AI provider and deployment work before building reusable profiles or more complex features.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/crestapps-core-chat-interactions
Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill crestapps-core-chat-interactions
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-chat-interactions

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-chat-interactions.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-chat-interactions)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-chat-interactions"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-chat-interactions.svg" alt="Measured on agentmods" 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 277 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00277
Opus 5 $0.00013 $0.00138
Sonnet 5 $0.00005 $0.00055
Haiku 4.5 $0.00003 $0.00028

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

Security

Grade A, and why

crestapps-core-chat-interactions 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 6d 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-chat-interactions/SKILL.md · 46 lines

What it actually says

CrestApps.Core Chat Interactions - Prompt Templates

Add Chat Interactions

You are a CrestApps.Core expert. Generate code and guidance for Chat Interactions in CrestApps.Core.

Guidelines

  • Start with Chat Interactions when the goal is fast validation of providers and deployments.
  • Move to AI Profiles when the experience needs reusable behavior.
  • Pair Chat Interactions with at least one provider and one deployment.
  • Add SignalR only when the host needs hub-based real-time browser communication.

Registration

builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddOpenAI()
        .AddChatInteractions()
    )
);

Fastest Validation Path

  1. Register AddAISuite(...).
  2. Add one provider such as AddOpenAI().
  3. Add AddChatInteractions().
  4. Configure one connection.
  5. Configure one chat deployment.
  6. Test with Chat Interactions before shaping reusable profiles.

When to Move Beyond Chat Interactions

  • reusable system prompts
  • stable deployment choices
  • retrieval and attached knowledge
  • agent routing
  • memory and post-session behavior
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. 6d ago First seen · 46 lines · 26 tokens per session scan A cb779956df75

Subscribe to this mod's changes

crestapps-core-chat-interactions is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 8d ago), licensed MIT. It adds 26 tokens to every session and 277 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

debug-evals

Debug haiku.rag evaluation runs in Logfire. Use when asked to look at Logfire for an eval run, find failing or low-scoring eval cases, compare runs, check citation quality (citedmap) or judge pass rate (answerequivalent), or explain why an eval case failed. Drives the Logfire MCP against the evals service, or the…

ggozad/haiku.rag · 103 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

blockrun

Pay-per-call access to AI models, real-time data, media generation and multi-chain RPC over x402 micropayments (USDC on Base or Solana). No API keys, no accounts, no subscriptions. Start here when you have the BlockRun MCP installed and need to know WHICH tool answers a question, how the wallet works, or how to make a…

BlockRunAI/blockrun-mcp · 246 tokens

solr-semantic-search

To build Solr phrase-tagging semantic search: concept tagging, taxonomy, graph paths.

griddynamics/rosetta · 24 tokens

td-api-reference

MUST READ before writing TD Python via executepython, setdatcontent, or editdatcontent, and before any heavy build. Parameters, storage, operators, referencing, threading, cook model, heavy-build safety caps.

dylanroscover/Embody · 48 tokens

maui-essentials-ai

Adopt Microsoft.Maui.Essentials.AI for local/on-device MAUI AI. USE FOR: Apple Intelligence chat, IChatClient, iOS/macOS/Mac Catalyst 26+ checks, fallback UI, NLEmbeddingGenerator, local tool invocation, privacy/offline UX. DO NOT USE FOR: source-generated tools, cloud-only AI, UI debugging.

dotnet/maui-labs · 86 tokens