80-line Python script uses Claude to auto-generate internal link suggestions, cuts linking time from 2 hours to 8 minutes

A Reddit user on r/ClaudeAI shared a practical 80-line Python script that automates internal link suggestions for articles. The author was manually reading through old posts, copy-pasting anchors — a process taking about 2 hours per piece. After getting fed up, they spent an afternoon writing a script that feeds Claude an article draft plus a sitemap dump, and the model returns a list of relevant internal link targets with suggested anchor text.
The core workflow is simple: the script takes the current article draft and a sitemap (likely a list of site URLs and titles), sends both to Claude via API, and asks for link suggestions. The author notes that the anchor text Claude generates is often better than what they wrote manually — catching semantic relationships they'd miss when in 'just get this done' mode.
Key details from the post:
- Script is not a SaaS or product — just a local utility (~80 lines of Python).
- Reduces linking time from 2 hours to 8 minutes per article (93% reduction).
- The author offers to share the core prompt logic on request.
- Claude's anchor text picks up semantic relationships that manual linking misses.
This script targets content creators, SEO-focused writers, or anyone managing a site with many articles where internal linking is manual and time-consuming. It's a lightweight automation using Claude's understanding of content relationships.
📖 Read the full source: r/ClaudeAI
👀 See Also

Universal CLAUDE.md reduces Claude output tokens by 63% in benchmarks
A developer created a universal CLAUDE.md file that reduces Claude's output tokens by 63% across five benchmark tests while maintaining technical accuracy. The file addresses common Claude behaviors like verbose responses, unnecessary formatting, and unsolicited suggestions.

agentcontract v0.0.1: A Portable JSON Permission Layer for AI Coding Agents
agentcontract v0.0.1 introduces a portable JSON permission layer for AI agents, with a local browser UI for editing, validating, and dry-running tool calls.

TUI Studio: Visual Terminal UI Design Tool in Alpha
TUI Studio is a Figma-like visual editor for designing terminal user interfaces with drag-and-drop components, real-time ANSI preview, and planned export to six frameworks including Ink, BubbleTea, and Textual. Currently in alpha with non-functional exports, it's available for macOS, Windows, and Docker.

AI-Setup CLI Tool Automatically Generates AI Configuration Files for Local LLM Stacks
AI-Setup is a CLI tool that scans codebases and automatically generates AI configuration files like .cursorrules and claude.md. It detects your stack to eliminate manual rule writing for each new project.