> ## Documentation Index
> Fetch the complete documentation index at: https://player-zero-drop-coordinator-docs-updates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to PlayerZero

> Use PlayerZero to monitor, diagnose, and resolve software issues before they reach your users.

export const DefectResolution = ({boldText, followUpText, icon}) => <div className="card-container">
    <div className="landing-card card-tertiary">
      <div className="card-content">
        <div className="card-header">
          <div className="card-text">
            <span className="card-title">{boldText}</span>
            <span className="card-description">{followUpText}</span>
          </div>
        </div>
        
        <div className="card-footer">
          {icon === 'lightning' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <path d="M13 10V3L4 14H11V21L20 10H13Z" stroke="white" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
            </svg>}
          
          {icon === 'square' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <rect x="3" y="3" width="18" height="18" rx="2" stroke="white" strokeWidth="2" />
            </svg>}

          {icon === 'circle' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
    <circle cx="12" cy="12" r="9" stroke="white" strokeWidth="2" />
  </svg>}        </div>
      </div>
    </div>
  </div>;

export const DeployPlayerZero = ({boldText, followUpText, icon, href}) => <div className="card-container">
    <a href={href} className="card-link" style={{
  textDecoration: 'none'
}}>
    <div className="landing-card card-secondary">
      <div className="card-content">
        <div className="card-header">
          <div className="card-text">
            <span className="card-title">{boldText}</span>
            <span className="card-description">{followUpText}</span>
          </div>
        </div>
        
        <div className="card-footer">
          {icon === 'lightning' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <path d="M13 10V3L4 14H11V21L20 10H13Z" stroke="white" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
            </svg>}
          
          {icon === 'square' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <rect x="3" y="3" width="18" height="18" rx="2" stroke="white" strokeWidth="2" />
            </svg>}
        </div>
      </div>
    </div>
    </a>
  </div>;

export const HowPlayerZeroWorks = ({boldText, followUpText, icon, href}) => <div className="card-container">
    <a href={href} className="card-link" style={{
  textDecoration: 'none'
}}>
      <div className="landing-card card-primary">
        <div className="card-content">
          <div className="card-header">
            <div className="card-text">
              <span className="card-title">{boldText}</span>
              <span className="card-description">{followUpText}</span>
            </div>
          </div>
          
          <div className="card-footer">
            {icon === 'lightning' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M13 10V3L4 14H11V21L20 10H13Z" stroke="white" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
              </svg>}
            
            {icon === 'square' && <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <rect x="3" y="3" width="18" height="18" rx="2" stroke="white" strokeWidth="2" />
              </svg>}
          </div>
        </div>
      </div>
    </a>
  </div>;

PlayerZero opens into a channel: a shared workspace where threads work together toward a single objective, coordinated as a team. Start here to learn how the pieces fit.

<CardGroup cols={2}>
  <HowPlayerZeroWorks boldText="How PlayerZero Works" followUpText="The technical components components behind PlayerZero" icon="lightning" href={'/how-playerzero-works'} />

  <DeployPlayerZero boldText="Deploy PlayerZero" followUpText="Deploy PlayerZero in 5 minutes with our quickstart guide" icon="square" href={'/deploy-playerzero'} />
</CardGroup>

## Use Cases

<div className="usecase-cards">
  <CardGroup cols={3}>
    <Card title="Agentic Debugging" icon="bug" href={'/use-cases/agentic-debugging'}>
      Find and fix issues before they impact customers.
    </Card>

    <Card title="System Knowledge" icon="brain-circuit" href={'/use-cases/system-knowledge'}>
      Your system’s living memory — never stale, always accessible.
    </Card>

    <Card title="Code Simulations" icon="code" href={'/use-cases/code-simulations'}>
      Predict the impact of changes before they ship.
    </Card>
  </CardGroup>
</div>
