> ## Documentation Index
> Fetch the complete documentation index at: https://www.conductor.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Conductor's Alpha Hub

> See what Conductor is building next. Every feature in an active alpha program, what it does, and how to get access.

export const AlphaFeatureCard = ({href, title, summary, product, icon}) => {
  const productKey = product ? String(product).toLowerCase().replace(/[^a-z]/g, "") : "";
  return <div className="alpha-card not-prose">
      <a className="alpha-card__link" href={href} aria-label={title}>
        <div className="alpha-card__head">
          {icon ? <span className="alpha-card__icon" aria-hidden="true">
              <Icon icon={icon} size={20} />
            </span> : null}
          {product ? <span className="alpha-card__product" data-product={productKey}>
              {product}
            </span> : null}
        </div>

        <h3 className="alpha-card__title">{title}</h3>
        {summary ? <p className="alpha-card__summary">{summary}</p> : null}

        <span className="alpha-card__foot">
          <span className="alpha-card__cta">
            Learn more
            <span className="alpha-card__arrow" aria-hidden="true">
              →
            </span>
          </span>
        </span>
      </a>
    </div>;
};

<Warning>
  Alpha features are subject to change with little or no notice, and Conductor may
  decide not to continue developing or supporting them. Don't build a critical
  workflow on an alpha feature without talking to us first.
</Warning>

export const alphaFeatures = [{
  "href": "/platform/alpha-hub/ai-topic-map/",
  "title": "AI Topic Map",
  "summary": "Group your site's pages into semantic topic clusters, then see where you have content gaps and which existing pages are worth optimizing.",
  "product": "Creator",
  "icon": "map",
  "order": 10
}, {
  "href": "/platform/alpha-hub/recommendations/",
  "title": "Recommendations",
  "summary": "Turn the search, content, and technical data in your account into a prioritized to-do list of the highest-impact work.",
  "product": "Intelligence",
  "icon": "list-checks",
  "order": 20
}];

## Alpha Features

<div className="alpha-grid">
  {alphaFeatures.map((feature) => (
      <AlphaFeatureCard key={feature.href} {...feature} />
    ))}
</div>

## How the alpha program works

Alpha features are opt-in. Your organization can request access, and depending on a number of criteria—such as subscription plan, account configuration, and more—Conductor may give you access.

In exchange, we ask for feedback. Alpha programs are how we find out that a feature solves the wrong problem, or solves the right one in the wrong way.

<Note>
  Once a feature graduates from alpha it moves into beta, and then to general
  availability. Look for it in [What's new?](/docs/platform/release-notes/) when it ships.
</Note>

## Requesting access

Request access to features you are interested in testing using the form below.

<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSc3ITW0XDYp5Ig6XY6ANRv4tRHkM05chLXN5bMKdZvoI58ocQ/viewform?embedded=true" width="640" height="600" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
