Skip to main content
AI/MLCrestApps

crestapps-core-ollama

Skill for local Ollama integration in CrestApps.Core for development, privacy-sensitive workloads, and self-hosted models.

Stars
13
Source
CrestApps/CrestApps.AgentSkills
Updated
2026-05-29
Slug
CrestApps--CrestApps.AgentSkills--crestapps-core-ollama
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-ollama/SKILL.md -o .claude/skills/crestapps-core-ollama.md

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

CrestApps.Core Ollama - Prompt Templates

Add Ollama Support

You are a CrestApps.Core expert. Generate code and configuration for using local Ollama models with CrestApps.Core.

Guidelines

  • Use Ollama for local development, offline work, and privacy-sensitive scenarios.
  • Expect capability differences to be model-dependent.
  • Keep the local endpoint on the connection.
  • Keep the selected model name on the deployment.

Builder Registration

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

Raw Registration

builder.Services
    .AddCoreAIServices()
    .AddCoreAIOllama();

Configuration

{
  "CrestApps": {
    "AI": {
      "Connections": [
        {
          "Name": "local-ollama",
          "ClientName": "Ollama",
          "Endpoint": "http://localhost:11434"
        }
      ],
      "Deployments": [
        {
          "Name": "llama3.1",
          "ConnectionName": "local-ollama",
          "ModelName": "llama3.1",
          "Type": "Chat"
        }
      ]
    }
  }
}