AgentStack
SKILL verified MIT Self-run

Crestapps Core Copilot Orchestrator

skill-crestapps-crestapps-agentskills-crestapps-core-copilot-orchestrator · by CrestApps

Skill for GitHub Copilot orchestrator setup, GitHub OAuth mode, and BYOK mode in CrestApps.Core.

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-crestapps-crestapps-agentskills-crestapps-core-copilot-orchestrator

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Crestapps Core Copilot Orchestrator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

CrestApps.Core Copilot Orchestrator - Prompt Templates

Add the Copilot Orchestrator

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

Guidelines

  • Use the Copilot orchestrator when the host should run through the GitHub Copilot Extensions SDK.
  • Support the configured state explicitly with NotConfigured, GitHubOAuth, or ApiKey.
  • Use GitHub OAuth for per-user Copilot subscription access.
  • Use BYOK mode for a shared OpenAI-compatible endpoint.
  • Provide an ICopilotCredentialStore implementation when GitHub OAuth is enabled.

Registration

builder.Services
    .AddCoreAIServices()
    .AddCoreAIOrchestration()
    .AddCoreAICopilotOrchestrator();

Resolve by Name

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

BYOK Configuration

{
  "CopilotOptions": {
    "AuthenticationType": "ApiKey",
    "ProviderType": "openai",
    "BaseUrl": "https://api.openai.com/v1",
    "ApiKey": "sk-...",
    "DefaultModel": "gpt-4o",
    "WireApi": "completions"
  }
}

GitHub OAuth Configuration

{
  "CopilotOptions": {
    "AuthenticationType": "GitHubOAuth",
    "ClientId": "Iv1.abc123",
    "ClientSecret": "your-client-secret",
    "Scopes": ["user:email", "read:org"]
  }
}

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.