Crestapps Core Claude Orchestrator

Skill for configuring the named Claude orchestrator and Anthropic model access in CrestApps.Core.

CrestApps Updated

File contents

CrestApps.Core Claude Orchestrator - Prompt Templates

Add the Claude Orchestrator

You are a CrestApps.Core expert. Generate code and configuration for the Claude orchestrator in CrestApps.Core.

Guidelines

  • Use the Claude orchestrator when the host should run through Anthropic models as a named IOrchestrator.
  • Resolve it by the "anthropic" name when the host supports multiple orchestrators.
  • Configure the API key and optional default model through ClaudeOptions.
  • Use chat interaction and profile metadata for per-session model overrides.

Registration

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

Raw Registration

builder.Services.AddCoreAIClaudeOrchestrator();

Configuration

{
  "ClaudeOptions": {
    "ApiKey": "sk-ant-...",
    "BaseUrl": "https://api.anthropic.com",
    "DefaultModel": "claude-sonnet-4-6"
  }
}

Resolve by Name

var orchestrator = resolver.Resolve("anthropic");

CrestApps/CrestApps.AgentSkills/tree/main/plugins/crestapps-core/skills/crestapps-core-claude-orchestrator commit d829eac090

Frequently asked questions

npx skillmds@latest add crestapps/crestapps-core-claude-orchestrator