
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-ollamaAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8 |
|---|---|
| repo stars | ★ 13 |
| Last updated | August 3, 2026 |
| Repository | crestapps/crestapps.agentskills ↗ |
What it does
Configure Ollama integration for CrestApps .NET agent orchestration.
Files
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
AI & Agent Buildingagents