Skip to main content
AI/MLCrestApps

crestapps-core-chat-interactions

Skill for Chat Interactions as the fastest validation surface for CrestApps.Core chat and profile setup.

Stars
13
Source
CrestApps/CrestApps.AgentSkills
Updated
2026-05-29
Slug
CrestApps--CrestApps.AgentSkills--crestapps-core-chat-interactions
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/CrestApps/CrestApps.AgentSkills/HEAD/plugins/crestapps-core/skills/crestapps-core-chat-interactions/SKILL.md -o .claude/skills/crestapps-core-chat-interactions.md

Drops the SKILL.md into .claude/skills/crestapps-core-chat-interactions.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

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