diff --git a/src/connections/destinations/catalog/index-all.md b/src/connections/destinations/catalog/index-all.md
new file mode 100644
index 0000000000..258f1e7a67
--- /dev/null
+++ b/src/connections/destinations/catalog/index-all.md
@@ -0,0 +1,10 @@
+---
+title: Destination list
+---
+
+
+The following destinations are available:
+
+{% for destination in site.data.catalog.destinations.items %}
+- **[{{ destination.display_name }}](/docs/{{ destination.url }})**{% if destination.status == "PUBLIC_BETA" %} (beta) {% endif %}
+{% endfor %}
diff --git a/src/connections/destinations/catalog/index.md b/src/connections/destinations/catalog/index.md
index e92276b4a9..21bc1a8876 100644
--- a/src/connections/destinations/catalog/index.md
+++ b/src/connections/destinations/catalog/index.md
@@ -5,6 +5,10 @@ layout: catalog
menu_icon: "read-more"
---
+> info "Want a simpler list?"
+> Check out the [list of _all_ destinations](index-all/).
+
+
{% assign categories = site.data.catalog.destination_categories.items | sort:"display_name" %}
diff --git a/src/connections/destinations/xyzzy.md b/src/connections/destinations/xyzzy.md
deleted file mode 100644
index 8c7144b02e..0000000000
--- a/src/connections/destinations/xyzzy.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-title: You may be eaten by a grue
-hidden: true
----
-
-- [Destinations Connection Modes comparison](cmodes-compare/)
-- [Destinations Methods comparisons](methods-compare/)
-- [Destinations by category comparisons](category-compare/)
-
-- [Sources by category comparison](/docs/connections/sources/sources-compare/)
diff --git a/src/utils/destination-betas.md b/src/utils/destination-betas.md
new file mode 100644
index 0000000000..f19998a00d
--- /dev/null
+++ b/src/utils/destination-betas.md
@@ -0,0 +1,18 @@
+---
+title: Destination Beta finder
+hidden: true
+---
+
+
+
+ Destinations in beta |
+
+
+{% for destination in site.data.catalog.destinations.items %}
+{% if destination.status == "PUBLIC_BETA" %}
+
+ [{{ destination.display_name }}](/docs/{{ destination.url }}) |
+
+ {% endif %}
+{% endfor %}
+
diff --git a/src/utils/find-betas.md b/src/utils/find-betas.md
deleted file mode 100644
index a9c830cb17..0000000000
--- a/src/utils/find-betas.md
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: Beta finder
-hidden: true
----
-
-
-
- Destinations in beta |
-
-
-{% for destination in site.data.catalog.destinations.items %}
-{% if destination.status == "PUBLIC_BETA" %}
-
- [{{ destination.display_name }}](/docs/{{ destination.url }}) |
-
- {% endif %}
-{% endfor %}
-
-
-
-
-
- Destination display name |
- Mismatch? |
- Name |
- Slug |
-
-
-{% for destination in site.data.catalog.destinations.items %}
-
- [{{ destination.display_name }}](/docs/{{ destination.url }}) |
- {% assign slugified_name = destination.name| split: "/" | last %} {% unless slugified_name contains destination.slug %}❗️{%endunless%} |
- {{slugified_name}} |
- {{ destination.slug }} |
-
-{% endfor %}
-
diff --git a/src/utils/index.md b/src/utils/index.md
index 6a5ec99b20..c3d394f447 100644
--- a/src/utils/index.md
+++ b/src/utils/index.md
@@ -1,30 +1,32 @@
---
title: Docs build utilities
hidden: true
+redirect_from: '/connections/destinations/xyzzy/'
---
-This page lists some useful other pages for answering docs-related questions. This page is hidden (not indexed or searchable) but not secret.
+This page lists some useful pages for answering docs-related questions. This page is hidden (not indexed or searchable) but is not secret.
-### How do use that cool format?!
-
-View the [Formatting Guide](/docs/utils/formatguide/) to see some of the neat stuff we can do with the docs.
+## Info about Integrations
+### Destinations
-### Why doesn't this integration page have any programmatic content?
+- [Alphabetical raw list of destinations](/docs/connections/destinations/catalog/index-all/)
+- [Destinations Connection Modes comparison](/docs/connections/destinations/cmodes-compare/)
+- [Destinations Methods comparisons](/docs/connections/destinations/methods-compare/)
+- [Destinations by category comparisons](/docs/connections/destinations/category-compare/)
+- [Destinations in beta](/docs/utils/beta-destinations/)
-The liquid scripts run based on finding a match between the page path and the key in the `_data/catalog` files. Due to renames, these can fall out of date. Check out the [Find Mismatches page](/docs/utils/find-mismatches/) for a list of possible "problem child" destinations.
+### Sources
+- [Sources by category comparison](/docs/connections/sources/sources-compare/)
-### Which integrations are in beta?
-We have a [list of destinations in beta here](/docs/utils/find-betas/).
+## Info about the docs builds
+### How do I use that cool format?!
-### What other cool stuff is out there?
+View the [Formatting Guide](/docs/utils/formatguide/) to see some of the neat stuff we can do with the docs.
-From XYZZY, you can see a these other cool and useful pages:
-- [Destinations Connection Modes comparison](/docs/connections/destinations/cmodes-compare/)
-- [Destinations Methods comparisons](/docs/connections/destinations/methods-compare/)
-- [Destinations by category comparisons](/docs/connections/destinations/category-compare/)
+### Why doesn't this integration page have any programmatic content?
-- [Sources by category comparison](/docs/connections/sources/sources-compare/)
+The liquid scripts run based on finding a match between the page path and the key in the `_data/catalog` files. Due to renames, these can fall out of date. Check out the [Find Mismatches page](/docs/utils/find-mismatches/) for a list of possible "problem child" destinations.