Skip to content

Apply docs style conventions to remaining sections (GROW-6119) - #646

Merged
rachaelrenk merged 1 commit into
mainfrom
factory/grow-6119-docs-style-pass
Aug 27, 2026
Merged

Apply docs style conventions to remaining sections (GROW-6119)#646
rachaelrenk merged 1 commit into
mainfrom
factory/grow-6119-docs-style-pass

Conversation

@warp-agent-staging

@warp-agent-staging warp-agent-staging Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

Summary

Follow-up to GROW-6086 / PR #595: apply the docs repo's key-chord and link/tone style conventions (AGENTS.md) to the sections PR #595 does not touch.

Related issues

GROW-6119 — Apply docs style conventions to the rest of the docs (non-terminal)

Important scope finding

The ticket's premise was that PR #595 covers 56 files scoped to terminal/ plus "the pages that shared the same violations," leaving the rest of the non-terminal sections open for this ticket. In practice, PR #595's Commit 5 ("repo-wide key-chord notation sweep") already normalized key-chord notation on nearly every non-terminal page that had a violation (verified against PR #595's actual file list via gh pr view 595 --json files).

Auditable methodology (two separate patterns, run from src/content/docs, excluding terminal/ and changelog/):

  1. Hyphen/no-space chords (e.g. CMD-P, CTRL-SHIFT-X):
    grep -rEl '(CMD|CTRL|ALT|SHIFT|OPT|META)[-+][A-Z0-9]+' src/content/docs --include=*.mdx | grep -v /terminal/ | grep -v /changelog/
    13 files. Cross-referencing against PR docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595's file list: 12 already fixed on docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595, 1 not on docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595 (enterprise/support-and-resources/troubleshooting-login.mdx, fixed in this PR). This is the pattern/count the review pass independently re-ran and confirmed.
  2. Space-separated + chords (e.g. CMD + P, CTRL + SHIFT + X), which pattern 1 does not catch:
    grep -rEl '(CMD|CTRL|ALT|SHIFT|OPT|META) *\+ *[A-Za-z0-9]+' src/content/docs --include=*.mdx | grep -v /terminal/ | grep -v /changelog/
    10 files (7 not caught by pattern 1). Cross-referencing against docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595: 9 already fixed on docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595, 1 not on docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595 — the same troubleshooting-login.mdx.

Union of both patterns: 20 distinct files, 19 already fixed identically on PR #595's unmerged branch, 1 genuine non-duplicate issue (confirmed both by diffing my fixes against origin/factory/grow-6086-terminal-docs-factual-style and by comm -12/comm -23 against gh pr view 595 --json files). I reverted my duplicate edits to the 19 already-covered files to keep this PR file-disjoint from PR #595, per the ticket's hard constraint. The remaining docs sections listed in the ticket (enterprise/, reference/, platform/, guides/) had zero violations outside what PR #595 already covers, under either pattern.

Net result: only one file in the ticket's stated scope had a genuine, non-duplicate issue.

Dependency risk: all of this PR's context depends on PR #595 actually merging. If PR #595 is closed instead of merged, the 19 files this PR intentionally left untouched (12 under pattern 1, 9 under pattern 2, minus the 1 file overlapping both = 19 net) will remain unnormalized on main, and someone will need to either reopen that work here or restore it from #595's branch.

Changes

enterprise/support-and-resources/troubleshooting-login.mdx:

  • Normalized CTRL+SHIFT+V`Ctrl+Shift+V` (key-chord casing/separator convention).
  • Fixed a meta-opener sentence ("This page covers...") per the tone guide.
  • Replaced a generic "more info" link with descriptive anchor text.
  • Replaced a "click the here link" pattern with a direct description of the link.

I also checked the other listed scope items — bare-URL link text, "here"/"this page" link text — across the full remaining scope (enterprise/, reference/, platform/, guides/, plus untouched pages in support-and-community/, getting-started/, knowledge-and-collaboration/, agents/, code/) and found none outside the one instance fixed above.

Changelog decision

src/content/docs/changelog/*.mdx holds the bulk of the remaining ALL-CAPS chord hits (116, vs. 0 elsewhere in scope). Per the same decision GROW-6086 already made for this directory: left as a historical record, not normalized. changelog/ is a frozen release-notes archive; both style_lint.py and validate_ui_refs.py already exclude it by default (confirmed by reading style_lint.py's CHANGELOG_DIR exclusion), and rewriting historical entries to a style that didn't exist when they were written would misrepresent the record. This mirrors the precedent set in PR #595.

Validation

  • npm run typecheck — 0 errors, 0 warnings (7 pre-existing hints only, unrelated to this PR).
  • python3 .agents/skills/validate_ui_refs/validate_ui_refs.py --check-paths --check-commands --warp ../warp — 0 issues.
  • python3 .agents/skills/check_for_broken_links/check_links.py --internal-only — 0 broken links (3928 internal links checked across 379 files).
  • python3 .agents/skills/style_lint/style_lint.py --all — the one pre-existing meta-opener flag on the changed file is now resolved; no new issues introduced.
  • No file overlap with PR docs: fix terminal docs factual issues + keybinding/link style pass, reconcile with main, settle key-chord casing (GROW-6086) #595 (comm -12 against gh pr view 595 --json files returns empty for this branch's diff).

Follow-ups

Visual verification

The rendered enterprise/support-and-resources/troubleshooting-login.mdx page was checked locally (top-of-page H1/intro paragraph, and the "Browser doesn't open when signing in" section with the corrected link wording and the normalized Ctrl+Shift+V note callout). Renders cleanly with no layout or styling errors. Screenshots below.

Computer-use screenshots (2)

Top of the troubleshooting-login page showing the H1 "Troubleshooting login" title and the intro paragraph below it, rendered with full Warp docs styling (sidebar nav, top nav, right-side TOC).
Top of the troubleshooting-login page showing the H1 "Troubleshooting login" title and the intro paragraph below it, rendered with full Warp docs styling (sidebar nav, top nav, right-side TOC).

The "Browser doesn't open when signing in" section showing its numbered list (steps 1-4) and the note callout box below it mentioning the Ctrl+Shift+V paste shortcut.
The "Browser doesn't open when signing in" section showing its numbered list (steps 1-4) and the note callout box below it mentioning the Ctrl+Shift+V paste shortcut.

…troubleshooting-login

- Ctrl+Shift+V paste shortcut normalized to the docs key-chord convention
- Fixed a meta-opener sentence, a generic 'more info' link, and a 'click the here link' pattern per AGENTS.md
@cla-bot cla-bot Bot added the cla-signed label Aug 27, 2026
@vercel

vercel Bot commented Aug 27, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
docs Ready Ready Preview Aug 27, 2026 12:04am

Request Review

@warp-agent-staging warp-agent-staging Bot added the warpy-factory Opened by the Warp factory agents label Aug 27, 2026
@warp-agent-staging
warp-agent-staging Bot marked this pull request as ready for review August 27, 2026 00:02
@warp-for-oss

warp-for-oss Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

@warp-agent-staging[bot]

I'm starting a first review of this pull request.

You can view the conversation on Warp.

I completed the review and no human review was requested for this pull request.

Comment /warp-agent-review on this pull request to retrigger a review (up to 3 times on the same pull request).

Powered by Oz

@warp-for-oss warp-for-oss Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Overview

This PR applies the docs style conventions to enterprise/support-and-resources/troubleshooting-login.mdx by removing a meta-opener, improving descriptive link text, replacing a here link reference, and normalizing a keyboard shortcut. I did not find material spec drift, security concerns, broken-link risk, or docs style issues in the changed lines.

Concerns

  • None.

Pre-verdict audit

  • Comments: No code comments, MDX comments, or inline comments were added or changed.
  • Tests: No tests were added or changed; this is a docs-only style cleanup.

Verdict

Found: 0 critical, 0 important, 0 suggestions

Approve

Comment /warp-agent-review on this pull request to retrigger a review (up to 3 times on the same pull request).

Powered by Oz

@rachaelrenk
rachaelrenk merged commit 719c27a into main Aug 27, 2026
8 checks passed
@rachaelrenk
rachaelrenk deleted the factory/grow-6119-docs-style-pass branch August 27, 2026 20:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cla-signed warpy-factory Opened by the Warp factory agents

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant