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

# Core Concepts: What is a Strategy?

> Understand how Triggers and Rules produce alerts.

A Strategy is the logic that tells MemePerfect what to watch and what to ignore. It is the core unit of automation in the product.

Every Strategy is built from two parts: **Triggers** and **Rules**.

`Trigger (when to evaluate) + Rules (what must be true) = Alert`

<Frame caption="A Strategy moves from Trigger to Rules before an alert is sent.">
  <img src="https://mintcdn.com/memeperfect/nNfY3ywgkiJ-x3qa/images/strategy-flow.png?fit=max&auto=format&n=nNfY3ywgkiJ-x3qa&q=85&s=d54271598051b67f6b0991ea16d56c9b" alt="Funnel from Triggers to Rules to Alert" width="1075" height="219" data-path="images/strategy-flow.png" />
</Frame>

## Trigger

A **Trigger** tells the system when to start evaluating a token.

Examples:

* A new token is created.
* A tracked author mentions a token.
* A followed developer launches a token.

## Rules

**Rules** tell the system what must be true once evaluation starts. They check security, market data, social presence, and AI-based signals.

If the token meets your configured conditions, the Strategy sends an alert.

## Why this matters

Most strategy problems come from one of two places:

* the wrong **Trigger**, which means evaluation starts at the wrong moment
* the wrong **Rules**, which means the filter is too loose or too strict

<CardGroup cols={2}>
  <Card title="Triggers vs. Rules" icon="bolt" href="/core-concepts/triggers-vs-rules">
    Learn the difference between the two parts of a Strategy.
  </Card>

  <Card title="Rules" icon="list-check" href="/feature-guides/strategy-editor-deep-dive">
    Learn how Rules are organized and evaluated.
  </Card>
</CardGroup>

<Tip>
  Keep this model in mind while reading the rest of the docs. Almost every feature builds on it.
</Tip>
