Skip to content

Modified the Build and extend section#223

Merged
sriramveeraghanta merged 7 commits intomasterfrom
fix-dead-links-build-and-extend
Feb 27, 2026
Merged

Modified the Build and extend section#223
sriramveeraghanta merged 7 commits intomasterfrom
fix-dead-links-build-and-extend

Conversation

@danciaclara
Copy link
Collaborator

@danciaclara danciaclara commented Feb 27, 2026

Summary by CodeRabbit

  • Documentation
    • Renamed top-level dev-tools nav to "Build on and extend Plane".
    • Added an Agents submenu (Building an agent, Best practices, Signals & content payload).
    • Updated Build Plane App to include an Overview link and adjusted its sub-items.
    • Simplified MCP Server entry (includes Claude Code) and moved Webhooks within dev-tools for better discoverability.
  • Style
    • Minor navigation styling formatting adjustment.
  • Chores
    • Added redirect so Build Plane App URL points to its Overview.

@vercel
Copy link

vercel bot commented Feb 27, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
developer-docs Ready Ready Preview, Comment Feb 27, 2026 3:02pm

Request Review

@coderabbitai
Copy link

coderabbitai bot commented Feb 27, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between d1c3d79 and 539edd3.

📒 Files selected for processing (2)
  • docs/.vitepress/config.mts
  • docs/.vitepress/theme/style.css
✅ Files skipped from review due to trivial changes (1)
  • docs/.vitepress/theme/style.css

📝 Walkthrough

Walkthrough

Renames the dev-tools nav title, adds an Agents submenu, reorganizes Build Plane App (adds Overview and adjusts children), repurposes a block as MCP Server with a single child, reorders/reintroduces Webhooks, and adds a Vercel redirect from /dev-tools/build-plane-app to /dev-tools/build-plane-app/overview.

Changes

Cohort / File(s) Summary
Documentation Navigation Config
docs/.vitepress/config.mts
Updated dev-tools nav: changed title text, added an Agents submenu (Building an agent, Best practices, Signals and content payload); moved/added overview under Build Plane App and removed the inline Overview; repurposed an MCP block to MCP Server with For Claude Code; reintroduced Webhooks later in order.
Hosting Redirects
vercel.json
Added a redirect: "/dev-tools/build-plane-app""/dev-tools/build-plane-app/overview" in the redirects array. No other redirect changes.
CSS formatting
docs/.vitepress/theme/style.css
Minor formatting change only: moved opening brace of a selector to a new line; no semantic/style changes.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Poem

🐇 I hopped through menus, tidy and bright,
Pushed Overview gently into sight,
Agents lined up, Webhooks found their place,
A redirect points the wandering trace,
Little hops — the docs now hum with grace.

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately reflects the main changes in the pull request, which involve restructuring the Build and extend section of the documentation navigation with updates to subsections, reordering of items, and new redirect mappings.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
  • 📝 Generate docstrings (stacked PR)
  • 📝 Generate docstrings (commit on current branch)
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix-dead-links-build-and-extend

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@vercel.json`:
- Around line 85-86: The redirect only matches the trailing-slash variant
(source "/dev-tools/build-plane-app/") and will leave
"/dev-tools/build-plane-app" unhandled; either add equivalent redirect entries
for the non-trailing-slash variants (e.g., add a source
"/dev-tools/build-plane-app" pointing to "/dev-tools/build-plane-app/overview"
and likewise add "/api-reference/byoa/build-plane-app" to mirror
"/api-reference/byoa/build-plane-app/"), or set the top-level "trailingSlash":
false in vercel.json to normalize requests; update the redirect rules that
reference "/dev-tools/build-plane-app/" and
"/api-reference/byoa/build-plane-app" accordingly.

ℹ️ Review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between c104c97 and 56e9e7d.

📒 Files selected for processing (1)
  • vercel.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
vercel.json (1)

85-86: Avoid a redirect hop from the legacy BYOA URL.

With the new redirect at lines 85-86, "/api-reference/byoa/build-plane-app" (line 5) now resolves via two redirects (... -> /dev-tools/build-plane-app -> .../overview). Point the legacy BYOA redirect directly to the overview route to avoid the extra round trip.

Suggested patch
     {
       "source": "/api-reference/byoa/build-plane-app",
-      "destination": "/dev-tools/build-plane-app"
+      "destination": "/dev-tools/build-plane-app/overview"
     },
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@vercel.json` around lines 85 - 86, Update the legacy BYOA redirect so it
points directly to the overview route instead of the intermediate path: change
the redirect whose source is "/api-reference/byoa/build-plane-app" to have
destination "/dev-tools/build-plane-app/overview" (replacing the current
destination "/dev-tools/build-plane-app") so the request no longer incurs a
second redirect through "/dev-tools/build-plane-app".
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@vercel.json`:
- Around line 85-86: Update the legacy BYOA redirect so it points directly to
the overview route instead of the intermediate path: change the redirect whose
source is "/api-reference/byoa/build-plane-app" to have destination
"/dev-tools/build-plane-app/overview" (replacing the current destination
"/dev-tools/build-plane-app") so the request no longer incurs a second redirect
through "/dev-tools/build-plane-app".

ℹ️ Review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 56e9e7d and d1c3d79.

📒 Files selected for processing (2)
  • docs/.vitepress/config.mts
  • vercel.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/.vitepress/config.mts

@sriramveeraghanta sriramveeraghanta merged commit 7633762 into master Feb 27, 2026
4 checks passed
@sriramveeraghanta sriramveeraghanta deleted the fix-dead-links-build-and-extend branch February 27, 2026 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants