Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/content/docs/ai/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Each step below maps to **one guide**: install and connect (single walkthrough),

Ensure you have the following prerequisites installed on your computer before installing ProofKit.
- FileMaker Pro (client for Mac or Windows)
- MCP-compatible coding agent (e.g. [Cursor](https://cursor.com), [Claude](https://claude.ai), [Codex](https://chatgpt.com/codex/), etc.)
- MCP-compatible coding agent (e.g. [Cursor](https://cursor.com), [Claude Desktop](https://claude.com/download), [Codex](https://chatgpt.com/codex/), etc.)
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the Claude Desktop download URL is accessible

# Check if the URL returns a successful response
echo "Checking https://claude.com/download..."
curl -I -L -s -o /dev/null -w "HTTP Status: %{http_code}\nFinal URL: %{url_effective}\n" https://claude.com/download

# Also check the old URL for comparison
echo -e "\nChecking old URL https://claude.ai for reference..."
curl -I -L -s -o /dev/null -w "HTTP Status: %{http_code}\nFinal URL: %{url_effective}\n" https://claude.ai

Repository: proofsh/proofkit

Length of output: 256


🌐 Web query:

Claude Desktop official download page URL

💡 Result:

Claude Desktop official download page URL: https://claude.ai/download [1] This is the official Anthropic-hosted “Download Claude” page that provides platform download links (macOS, Windows, ChromeOS) for the Claude desktop app. [1]

Citations:


Correct the Claude Desktop download URL to the official source.

The Claude Desktop download link should point to https://claude.ai/download, not https://claude.com/download. According to Anthropic's official documentation, https://claude.ai/download is the authorized page providing platform-specific download links. Update line 16 to use the correct URL:

- MCP-compatible coding agent (e.g. [Cursor](https://cursor.com), [Claude Desktop](https://claude.ai/download), [Codex](https://chatgpt.com/codex/), etc.)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/docs/content/docs/ai/getting-started.mdx` at line 16, Update the
Markdown list entry for "MCP-compatible coding agent" by changing the "Claude
Desktop" link target from https://claude.com/download to the official
https://claude.ai/download (i.e., replace the URL in the "[Claude Desktop](...)"
link within the "MCP-compatible coding agent (e.g. ...)" list item).

- [Node.js](https://nodejs.org/en/download/) (a supported LTS release, such as 22.x, 24.x, or 26.x)
- [pnpm](https://pnpm.io/) (version 11 is recommended; it is currently the most secure package manager option)
- Git (source control tool for managing the web code your agent will produce)
Expand Down
Loading