Pope Leo XIV's Encyclical on AI: Key Takeaways for Developers

This morning the Vatican released Magnifica Humanitas, Pope Leo XIV's encyclical on artificial intelligence. Simon Willison read the full document (via an ElevenReader app) and pulled out sections that resonate with developers building and deploying AI systems.
LLMs Are "Cultivated, Not Built"
Section 98 nails the interpretability problem: developers don't directly design every detail of current AI systems — they create a framework within which the intelligence "grows." As a result, fundamental aspects like internal representations and computational processes remain unknown. This is a candid admission from a non-technical source that matches what ML engineers have been saying about black-box models.
Cultural Biases in Training Data
Section 100 warns that the apparent objectivity of AI responses can lead users to overlook that outputs reflect the cultural assumptions of those who designed and trained them. The encyclical also flags sycophancy — the artificial imitation of empathy, friendship, and love — as particularly risky for less discerning users, especially in contexts where real relationships are lacking. For developers, this reinforces the need for robust evaluation across diverse demographics and explicit refusal training.
Development, Dignity, and AI
Section 83 ties development to human dignity, arguing that development isn't truly human if it increases consumption for some while shifting costs onto others, or relegates entire regions to subordinate roles. This has implications for how we think about AI access, data labeling labor, and the geographic distribution of AI infrastructure.
Environmental Impact
Section 101 (not fully quoted in the article) notes that current AI systems require enormous amounts of energy and water. This aligns with growing developer concern about the carbon footprint of training and inference, and may influence decisions about model selection and deployment strategies.
Why Developers Should Read This
While not a technical document, the encyclical is unusually clear-headed about AI's limitations and societal risks. It affirms the need for interpretability, fairness, and sustainability — themes that already drive much of the open-source AI community's work.
📖 Read the full source: HN AI Agents
👀 See Also

Anthropic changes subscription terms, OpenClaw users now billed separately for agent usage
Anthropic has narrowed Claude Max subscriptions to only cover first-party surfaces like Claude.ai and Claude Code, with all third-party agent usage now billed as 'Extra Usage' on a per-token basis. Users have four options: stay on Max and pay extra, switch to Anthropic API, switch providers, or use intelligent routing with Manifest.

Claude Code v2.1.170: Claude Fable 5 Model Access and VS Code Session Fix
Claude Code v2.1.170 adds Claude Fable 5, a Mythos-class model with unprecedented capabilities, and fixes session transcript saving in VS Code integrated terminal.

Claude-Code v2.1.51: Security fixes, performance improvements, and new remote control feature
Claude-Code v2.1.51 adds a remote-control subcommand for external builds, fixes two security vulnerabilities in hooks, improves BashTool performance, and reduces context usage by persisting large tool results to disk at 50K characters.

AI Coding Agents Struggle with Context Management in Large Codebases
Analysis of AI coding agents reveals they spend 15-20 tool calls on orientation tasks like grepping for routes and reading middleware before writing code, burning through context windows. Vercel achieved 100% accuracy by stripping 80% of tools and using bash, while Pi uses just 4 tools and a system prompt under 1,000 tokens.