diff --git a/docs/plans/2024-12-10-standalone-operation-pages-design.md b/docs/plans/2024-12-10-standalone-operation-pages-design.md
deleted file mode 100644
index 54d084ddc..000000000
--- a/docs/plans/2024-12-10-standalone-operation-pages-design.md
+++ /dev/null
@@ -1,181 +0,0 @@
-# Standalone API Operation Pages Design
-
-## Overview
-
-Create individual pages for each API operation with path-based URLs, rendered using RapiDoc Mini with existing tag-level OpenAPI specs.
-
-## Goals
-
-- **SEO/discoverability**: Each operation indexable with its own URL and metadata
-- **Deep linking**: Reliable bookmarkable/shareable URLs for specific operations
-- **Navigation UX**: Sidebar links navigate to actual pages (not hash fragments)
-- **Content customization**: Foundation for adding operation-specific guides and examples
-
-## URL Structure
-
-Path-based URLs with HTTP method as the final segment:
-
-| Operation | API Path | Page URL |
-| ------------------ | ----------------------------------- | ------------------------------------ |
-| PostV1Write | `POST /write` | `/api/write/post/` |
-| PostV2Write | `POST /api/v2/write` | `/api/v2/write/post/` |
-| PostWriteLP | `POST /api/v3/write_lp` | `/api/v3/write_lp/post/` |
-| GetV1ExecuteQuery | `GET /query` | `/api/query/get/` |
-| PostExecuteV1Query | `POST /query` | `/api/query/post/` |
-| GetExecuteQuerySQL | `GET /api/v3/query_sql` | `/api/v3/query_sql/get/` |
-| GetDatabases | `GET /api/v3/configure/database` | `/api/v3/configure/database/get/` |
-| DeleteDatabase | `DELETE /api/v3/configure/database` | `/api/v3/configure/database/delete/` |
-
-## Architecture
-
-### Existing Components (unchanged)
-
-- **Tag pages**: `/api/write-data/`, `/api/query-data/` etc. remain as landing pages
-- **Tag-level specs**: `static/openapi/influxdb-{product}/tags/tags/ref-{tag}.yaml` (\~30-50KB each)
-- **Sidebar structure**: Tag-based groups with operation summaries as link text
-
-### New Components
-
-1. **Operation page content files**: Generated at path-based locations
-2. **Operation page template**: Hugo layout using RapiDoc Mini
-3. **Updated sidebar links**: Point to path-based URLs instead of hash fragments
-
-## Content File Structure
-
-Generated operation pages at `content/influxdb3/{product}/api/{path}/{method}/_index.md`:
-
-```yaml
----
-title: Write line protocol (v1-compatible)
-description: Write data using InfluxDB v1-compatible line protocol endpoint
-type: api-operation
-layout: operation
-# RapiDoc Mini configuration
-specFile: /openapi/influxdb-influxdb3_core/tags/tags/ref-write-data.yaml
-matchPaths: post /write
-# Operation metadata
-operationId: PostV1Write
-method: POST
-apiPath: /write
-tag: Write data
-compatVersion: v1
-# Links
-related:
- - /influxdb3/core/write-data/http-api/compatibility-apis/
----
-```
-
-## Hugo Template
-
-New layout `layouts/api-operation/operation.html`:
-
-```html
-{{ define "main" }}
-{{ .Title }}
-
-
{{ . | markdownify }}
{{ end }} -{{ .code }}
-