# `mix mob.plugins`
[🔗](https://github.com/genericjam/mob_dev/blob/master/lib/mix/tasks/mob.plugins.ex#L1)

Lists the Mob plugins this project depends on, with tier, hot-push status,
and whether each is activated.

    mix mob.plugins

A dependency is shown as a plugin if it ships a `priv/mob_plugin.exs`
manifest, or if it is named in `config :mob, :plugins` in `mob.exs`.
Tier-0 plugins (pure Elixir, no manifest) are indistinguishable from
ordinary libraries until activated, so they appear only once listed in
`config :mob, :plugins`.

Activation is two-step by design (see `MOB_PLUGINS.md`): adding a plugin to
`deps` makes it *installed*; adding it to `config :mob, :plugins` makes it
*activated* — only then are its contributions merged into the build.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
