Basic Pricing

Copilot

Recommended

Copilot in the coding environment.

$ 10 USD$ 20per month / $100 per year

What's included

  • Everything in Copilot Business plus:
  • Chat in IDE and Mobile
  • CLI assistance
  • Code completions

Copilot Business

Recommended

Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub Enterprise Cloud.

$ 39 USD$ 49per user / month

What's included

  • Everything in Copilot Business plus:
  • Chat in IDE and Mobile
  • CLI assistance
  • Code completions
 <PrimerBrandPricing Plans="@DefaultPlans" />

Center-Aligned Pricing

Copilot

Recommended

Copilot in the coding environment.

$ 10 USD$ 20per month / $100 per year

What's included

  • Everything in Copilot Business plus:
  • Chat in IDE and Mobile
  • CLI assistance
  • Code completions

Copilot Business

Recommended

Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub Enterprise Cloud.

$ 39 USD$ 49per user / month

What's included

  • Everything in Copilot Business plus:
  • Chat in IDE and Mobile
  • CLI assistance
  • Code completions
<PrimerBrandPricing Plans="@CenterAlignedPlans" />

Single Pricing Option

Copilot Individual

Code completions, Chat, and more for indie developers and freelancers.

$ 10 USDper month / $100 per year

<PrimerBrandPricing Plans="@SinglePlan" />

PrimerBrandPricing Options

Parameters for each pricing plan

NameDescriptionDefault ValueCSS Class
Title
Title of the pricing plan
""
PricingOptions__heading
Label
Optional label (e.g. 'Recommended')
null
PricingOptions__label
Description
Plan description
""
PricingOptions__description
Price
Main price value
""
PricingOptions__price-value
OriginalPrice
Strikethrough original price
null
PricingOptions__price-original
PriceSuffix
Trailing price text (e.g. per month)
""
PricingOptions__price-trailing-text
CurrencySymbol
Currency symbol (e.g. $)
"$"
PricingOptions__currency-symbol
CurrencyCode
Currency code (e.g. USD)
"USD"
PricingOptions__currency-code
FeatureTitle
Title above feature list
"What's included"
PricingOptions__feature-title
PrimaryActionLabel
Text for main CTA button
null
Button--primary
SecondaryActionLabel
Text for secondary CTA button
null
Button--secondary
Features
List of features in the plan
[]
PricingOptions__feature-list
AlignCenter
Center-align card content
false
PricingOptions__item--align-center
private List<PricingPlan> DefaultPlans = new()
{
    new PricingPlan
    {
        Title = "Copilot",
        Label = "Recommended",
        Description = "Copilot in the coding environment.",
        Price = "10",
        OriginalPrice = "20",
        PriceSuffix = "per month / $100 per year",
        CurrencySymbol = "$",
        CurrencyCode = "USD",
        FeatureTitle = "What's included",
        PrimaryActionLabel = "Buy now",
        SecondaryActionLabel = "Contact sales",
        Features = new()
        {
            "Everything in Copilot Business plus:",
            "Chat in IDE and Mobile",
            "CLI assistance",
            "Code completions"
        }
    },
    new PricingPlan
    {
        Title = "Copilot Business",
        Label = "Recommended",
        Description = "Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub Enterprise Cloud.",
        Price = "39",
        OriginalPrice = "49",
        PriceSuffix = "per user / month",
        CurrencySymbol = "$",
        CurrencyCode = "USD",
        FeatureTitle = "What's included",
        PrimaryActionLabel = "Join waitlist",
        Features = new()
        {
            "Everything in Copilot Business plus:",
            "Chat in IDE and Mobile",
            "CLI assistance",
            "Code completions"
        }
    }
};

private List<PricingPlan> CenterAlignedPlans => DefaultPlans.Select(p => new PricingPlan
    {
        Title = p.Title,
        Label = p.Label,
        Description = p.Description,
        Price = p.Price,
        OriginalPrice = p.OriginalPrice,
        PriceSuffix = p.PriceSuffix,
        CurrencySymbol = p.CurrencySymbol,
        CurrencyCode = p.CurrencyCode,
        FeatureTitle = p.FeatureTitle,
        PrimaryActionLabel = p.PrimaryActionLabel,
        SecondaryActionLabel = p.SecondaryActionLabel,
        Features = p.Features,
        AlignCenter = true
    }).ToList();

private List<PricingPlan> SinglePlan = new()
{
    new PricingPlan
    {
        Title = "Copilot Individual",
        Description = "Code completions, Chat, and more for indie developers and freelancers.",
        Price = "10",
        PriceSuffix = "per month / $100 per year",
        CurrencySymbol = "$",
        CurrencyCode = "USD",
        PrimaryActionLabel = "Buy now",
        SecondaryActionLabel = "Contact sales"
    }
};