diff --git a/polaris.shopify.com/content/tooling/index.md b/polaris.shopify.com/content/tooling/index.md
deleted file mode 100644
index 3a260a3cfe3..00000000000
--- a/polaris.shopify.com/content/tooling/index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: Tooling
-description: Extensions, plugins, and other tools to help build and maintain Polaris within the Admin.
-icon: ToolsMajor
-order: 9
----
diff --git a/polaris.shopify.com/content/tools/index.md b/polaris.shopify.com/content/tools/index.md
new file mode 100644
index 00000000000..67b75db39f7
--- /dev/null
+++ b/polaris.shopify.com/content/tools/index.md
@@ -0,0 +1,6 @@
+---
+title: Tools
+description: Extensions, plugins, and other tools to help you use Polaris to build Admin experiences.
+icon: ToolsMajor
+order: 9
+---
diff --git a/polaris.shopify.com/content/tools/polaris-for-vscode.md b/polaris.shopify.com/content/tools/polaris-for-vscode.md
new file mode 100644
index 00000000000..cdacb4820d8
--- /dev/null
+++ b/polaris.shopify.com/content/tools/polaris-for-vscode.md
@@ -0,0 +1,28 @@
+---
+title: Polaris for VS Code
+description: Official VS Code extension for building with the Shopify Polaris Design System
+icon: HintMajor
+---
+
+
+
+## Features
+
+### Design Token Autocomplete
+
+Get code autocomplete suggestions for the [Polaris Design Tokens](https://polaris.shopify.com/tokens/colors#navigation)
+
+- 🗄️ Automatically works for CSS and Sass files
+- 🔍 Preview design token values in autocomplete description
+- 🎨 Color previews for all `color` tokens
+- 🥇 Relevant code completions based on the current line of code
+
+## How to use
+
+Install the [Polaris for VS Code extension](https://marketplace.visualstudio.com/items?itemName=Shopify.polaris-for-vscode). Once enabled, the extension will automatically run in any CSS and Sass files.
+
+To trigger the token autocomplete feature:
+
+1. Open a CSS or Sass file from your project
+2. Start typing the CSS property you want to set, for example: `color:`
+3. Type the extension trigger characters: `--`. This will bring up the relevant autocomplete tokens associated with the CSS property typed.
diff --git a/polaris.shopify.com/content/tooling/stylelint-polaris.md b/polaris.shopify.com/content/tools/stylelint-polaris/index.md
similarity index 93%
rename from polaris.shopify.com/content/tooling/stylelint-polaris.md
rename to polaris.shopify.com/content/tools/stylelint-polaris/index.md
index 545e7f2db09..16826f2611e 100644
--- a/polaris.shopify.com/content/tooling/stylelint-polaris.md
+++ b/polaris.shopify.com/content/tools/stylelint-polaris/index.md
@@ -2,12 +2,19 @@
title: Stylelint Polaris
description: A configuration of Stylelint rules that promote adoption and track coverage of the Polaris design system in consuming apps.
icon: WandMajor
+collapseChildren: true
keywords:
- stylelint
- dev tools
+ - developer tools
- tools
+ - tooling
- development
- plugin
+ - rules
+ - linter
+ - linting
+ - css
---
## Installation
@@ -189,18 +196,6 @@ yarn run stylelint path/to/component.scss
## Rules
-[Conventions](#conventions) |
-[Colors](#colors) |
-[Motion](#motion) |
-[Typography](#typography) |
-[Shape](#shape) |
-[Spacing](#shape) |
-[Depth](#depth) |
-[Media queries](#media-queries) |
-[Z-index](#z-index) |
-[Layout](#layout) |
-[Legacy](#legacy)
-
### Conventions
#### conventions/custom-property-allowed-list
@@ -449,9 +444,17 @@ Disallows use of legacy mixin map data.
### Depth
+_{Insert why depth consistency impacts merchant [wayfinding, etc]}_
+
+Have you found that merchants benefit from {an additional layer of visual hierarchy that's not in the depth tokens? We'd love to learn more. You can jumpstart a contribution to Polaris in GitHub by:
+
+- Starting a [discussion](https://github.com/Shopify/polaris/discussions/6750) to collaborate with the community to find a solution
+- Submitting a [feature proposal issue](https://github.com/Shopify/polaris/issues/new?assignees=&labels=Feature+request&template=FEATURE_REQUEST.md) to share context on your suggestion
+- Drafting a [pull request](https://github.com/Shopify/polaris/pulls) with your proposed improvement or addition
+
#### depth/declaration-property-unit-disallowed-list
-Try to use the [Polaris depth tokens](https://polaris.shopify.com/tokens/z-index) before creating your own custom styles.
+Use the [Polaris depth tokens](https://polaris.shopify.com/tokens/z-index) instead of custom shadows.
```diff
// Don't
@@ -462,7 +465,7 @@ Try to use the [Polaris depth tokens](https://polaris.shopify.com/tokens/z-index
#### depth/function-disallowed-list
-Try to use the [Polaris depth tokens](https://polaris.shopify.com/tokens/z-index) before creating your own custom styles.
+Use the [Polaris depth tokens](https://polaris.shopify.com/tokens/z-index) instead of custom shadows.
```diff
// Don't
diff --git a/polaris.shopify.com/content/tools/stylelint-polaris/rules/depth-declaration-property-unit-disallowed-list.md b/polaris.shopify.com/content/tools/stylelint-polaris/rules/depth-declaration-property-unit-disallowed-list.md
new file mode 100644
index 00000000000..78bbfd50846
--- /dev/null
+++ b/polaris.shopify.com/content/tools/stylelint-polaris/rules/depth-declaration-property-unit-disallowed-list.md
@@ -0,0 +1,34 @@
+---
+title: depth/declaration-property-unit-disallowed-list
+description: Disallows box-shadow declarations with hard coded px, rem, or em units
+keywords:
+ - stylelint
+ - dev tools
+ - developer tools
+ - tools
+ - tooling
+ - development
+ - plugin
+ - rules
+ - depth
+ - shadows
+ - linter
+ - linting
+ - css
+---
+
+Use a [Polaris depth token](https://polaris.shopify.com/tokens/depth) instead of a custom box-shadow.
+
+```diff
+// Do
++ box-shadow: var(--p-shadow-card);
+
+// Don't
+- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
+```
+
+Have you found that merchants benefit from an additional layer of visual hierarchy that's not in the depth tokens? We'd love to learn more. You can jumpstart a contribution to Polaris in GitHub by:
+
+- Starting a [discussion](https://github.com/Shopify/polaris/discussions/6750) to collaborate with the community to find a solution
+- Submitting a [feature proposal issue](https://github.com/Shopify/polaris/issues/new?assignees=&labels=Feature+request&template=FEATURE_REQUEST.md) to share context on your suggestion
+- Drafting a [pull request](https://github.com/Shopify/polaris/pulls) with your proposed improvement or addition
diff --git a/polaris.shopify.com/pages/[...slug].tsx b/polaris.shopify.com/pages/[...slug].tsx
index 0eb4497d11f..3788924bdc0 100644
--- a/polaris.shopify.com/pages/[...slug].tsx
+++ b/polaris.shopify.com/pages/[...slug].tsx
@@ -77,7 +77,7 @@ const catchAllTemplateExcludeList = [
'/design',
'/content',
'/patterns',
- '/tooling',
+ '/tools',
'/tokens',
'/sandbox',
];
@@ -93,6 +93,8 @@ export const getStaticPaths: GetStaticPaths = async () => {
const globPath = [
path.resolve(process.cwd(), 'content/*.md'),
path.resolve(process.cwd(), 'content/**/*.md'),
+ path.resolve(process.cwd(), 'content/**/**/*.md'),
+ path.resolve(process.cwd(), 'content/**/**/**/*.md'),
];
const paths = globby
.sync(globPath)
diff --git a/polaris.shopify.com/pages/tooling.tsx b/polaris.shopify.com/pages/tools.tsx
similarity index 94%
rename from polaris.shopify.com/pages/tooling.tsx
rename to polaris.shopify.com/pages/tools.tsx
index 5d2942545bc..61bc37bd62a 100644
--- a/polaris.shopify.com/pages/tooling.tsx
+++ b/polaris.shopify.com/pages/tools.tsx
@@ -2,7 +2,7 @@ import FoundationsPage from '../src/components/FoundationsPage';
import {FoundationsProps} from '../src/components/FoundationsPage/FoundationsPage';
import {getStaticPropsForFoundations} from '../src/utils/foundations';
-const SECTION = 'tooling';
+const SECTION = 'tools';
const FoundationsCategory = (props: FoundationsProps) => (