Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
crestapps avatar

Crestapps Core Ollama

  • 8 installs
  • 13 repo stars
  • Updated August 3, 2026
  • crestapps/crestapps.agentskills

Configure Ollama integration for CrestApps .NET agent orchestration.

About

CrestApps.AgentSkills Ollama skill enables local LLM integration for .NET agents via Ollama. Provides agent-readable APIs for model management.

  • Ollama integration for local LLMs
  • Model orchestration for agents

Crestapps Core Ollama by the numbers

  • 8 all-time installs (skills.sh)
  • Ranked #12,321 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/crestapps/crestapps.agentskills --skill crestapps-core-ollama

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs8
repo stars13
Last updatedAugust 3, 2026
Repositorycrestapps/crestapps.agentskills

What it does

Configure Ollama integration for CrestApps .NET agent orchestration.

Files

SKILL.mdMarkdownGitHub ↗

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"
        }
      ]
    }
  }
}

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.