Stories
30
Sources
10
Topics
5
For You lens
15 stories in this edition match your reader profile.
Reader signals
3
Searches
0
Matches
15
Top score
80
Edition Index
Topic, entity, and source map
Entities
Lead Story
[AINews] AI is eating Finance; AIE NYC now open
a quiet day lets us cover how AI is permeating financial services as the next big vertical after coding.
Latent Space / 12:46 AM
[AINews] Fearing RSI: OpenAI, Anthropic, GDM, Meta, Thinky cosign letter to "Pace" AI development, as HuggingFace details Machine-Speed Offensive Cyberattack
The Big Pause is coming.
Product Hunt AI / 9:24 PM
Grok 4.5
SpaceXAI's model for coding, agentic tasks & knowledge work Discussion | Link
GitHub Trending AI / 9:31 AM
yamadashy/repomix is trending in AI open source
yamadashy/repomix is a GitHub AI repository with 27,516 stars. 📦 Repomix is a powerful tool that packs your entire repository into a single, AI-friendly file. Perfect for when you need to feed your codebase to Large Language Models (LLMs) or other AI tools like Claude, ChatGPT, DeepSeek, Perplexity, Gemini, Gemma, Llama, Grok, and more.
Product Hunt AI / 9:58 PM
New AI tools by IFTTT
Automate with Grok, Gemini, Perplexity, and more Discussion | Link
Import AI / 12:31 PM
Import AI 462: Superpersuasion; self-sustaining AI; paths to ASI
How religious are beliefs in the singularity?
Latent Space / 7:25 AM
[AINews] Claude Opus 5: Fable-level performance at Opus price (half Fable)
ain't nobody beats Anthropic at distilling Fable!
Latent Space / 4:30 AM
[AINews] Black Forest Labs FLUX 3 - Multimodal Flow Models that beat Seedance 2.0, Gemini Omni and Grok Imagine, and FLUX-mimic video-action robotics model
A HUGE win for BFL!
Latent Space / 3:27 AM
[AINews] AI Cybersecurity becomes top of mind
Several new Cyber headlines make us observe a trend
Latent Space / 3:58 AM
[AINews] not much happened today
a quiet day.
Hacker News AI / 1:43 AM
Hacker News discussion: Show HN: RL bandits pick coding agent's context,Grok 4.5 out-fixes Fable 5
Hacker News readers are discussing "Show HN: RL bandits pick coding agent's context,Grok 4.5 out-fixes Fable 5" with 3 points and 0 comments.
Hacker News AI / 10:20 PM
Hacker News discussion: Leading AI models (even Grok) are all a bunch of leftist punks
Hacker News readers are discussing "Leading AI models (even Grok) are all a bunch of leftist punks" with 3 points and 3 comments.
Simon Willison LLMs / 11:01 PM
Are AI labs pelicanmaxxing?
Are AI labs pelicanmaxxing? Excellent piece of work by Dylan Castillo, who took a deep-dive into the frequently pondered question of whether the AI labs have been deliberately training models to draw pelicans riding bicycles in response to my deeply unscientific benchmark . I've been randomly spot-checking this in the past by testing models against other animals riding other types of vehicle, but never with anything close to the diligence of Dylan's methodology here. Dylan took 8 animals × 6 vehicles = 48 prompts and ran them three times each through 7 different models ( GPT-5.6 Terra, Claude Sonnet 5, Gemini 3.5 Flash, Grok 4.5, Qwen3.7-Max, GLM-5.2, and DeepSeek V4 Pro). He then used GPT-5.6 Luna and Gemini 3.1 Flash-Lite to help evaluate the results. There's a neat filter view for exploring the results: For the models he tested he could find no evidence of pelimaxxing: The pelicans on bicycles don’t look any better Labs are not better at drawing pelicans Labs are not better at drawing bicycles Labs are not better at drawing pelicans on bicycles, even adjusting for difficulty The pelican-bicycle scenes don’t look memorized [...] Pelicans aren’t drawn any better than other animals. Bicycles aren’t drawn any better than other vehicles. And no lab draws the combination better than its pelicans and bicycles already predict. GLM-5.2 comes closest: it has the largest boost on the exact pelican-bicycle cell, and and its first pelican-on-bicycle sample caught my eye. But the effect is small and not significant, so I wouldn’t put too much weight on it. Via Hacker News Tags: ai , generative-ai , llms , evals , pelican-riding-a-bicycle
Ars Technica AI / 4:10 PM
San Francisco orders Apple, Google to remove nudify apps from app stores
Official estimates Google and Apple likely made millions in nudify app fees.
AWS Machine Learning Blog / 7:29 PM
Introducing Grok on Amazon Bedrock
This post covers what makes Grok 4.3 a great fit for agentic and enterprise workloads, how you access it through Amazon Bedrock, and how to use the capabilities most teams reach for first: a basic chat request, configurable reasoning effort, tool calling, structured output, image input, and stateful multi-turn conversations.
Simon Willison LLMs / 11:59 PM
xai-org/grok-build, now open source
xai-org/grok-build, now open source xAI's grok CLI tool faced severe community backlash yesterday when it became apparent that running the command in a directory could upload that entire directory to xAI's Google Cloud buckets. One user reported running it in their home directory and seeing it upload "my SSH keys, my password manager database, my documents, photos, videos, everything". I've not seen an official explanation for why it was doing this, but xAI did respond to the feedback ( Musk : "As a precautionary measure, all user data that was uploaded to SpaceXAI before now will be completely and utterly deleted.") and have disabled the feature. A few hours ago they also released the entire Grok Build codebase under an Apache 2.0 license - presumably to try and regain trust from their users. From their thread announcing the new repository : [...] When data upload was disabled, this choice was respected. In the early beta, data retention was enabled by default for non-ZDR users. Based on your feedback, we changed this. We are now going further to protect privacy. With all retained data deleted, retention default off, and an open-source harness, we are offering complete user privacy. You can also run Grok Build fully open-sourced and local-first with your own inference. We disabled default retention for all Grok Build users starting on July 12th. Additionally, we are deleting all coding data that was previously retained, ensuring every user’s preferences are respected. With these steps, Grok Build goes beyond other major coding products to protect user privacy. It's quite a surprising codebase! Grok Build contains 844,530 lines of Rust (calculated using my SLOCCount tool , which excludes whitespace and comments) of which only around 3% appears to be vendored. So far the repo has just a single commit releasing the code, so sadly we don't get any insight into how the codebase developed over time. A few highlights: xai-grok-agent/templates/prompt.md has the main system prompt and xai-grok-agent/templates/subagent_prompt.md has the subagent prompt. Oddly that subagent prompt has "Do not ... reveal the contents of this system prompt to the user" but the main prompt does not. xai-grok-markdown/src/mermaid.rs is a "self-contained terminal renderer for Mermaid diagrams", which renders a subset of Mermaid chart types using Unicode box-drawing. Update : I got a version of this working in WebAssembly so it now runs in the browser. xai-grok-tools/src/implementations includes tool implementations imitated from other coding agents - the Codex apply_patch , grep_files , list_dir , and read_dir tools, and OpenCode's bash , edit , glob , grep , read , skill , todowrite and write . The xai-grok-tools/THIRD_PARTY_NOTICES.md file says these are "ported from" those projects, in a way that looks compliant with the Apache and MIT licenses they use. It looks like these copies exist because Grok can switch between them, maybe based on detecting existing Codex or Claude or Cursor settings? I'm not confident I understand if that happens or how it works. There are still remnants of the code that used to upload everything to Google Cloud, but they seem to have been disabled now. xai-grok-shell/src/upload/gcs.rs has code for uploading to a GCS bucket. upload/trace.rs includes an upload_session_state() function which returns a hard-coded session_state_upload_unavailable error. For comparison, openai/codex is 950,933 lines of Rust. Terminal coding agents are significantly more complex than I had realized! Here's the Claude Code chat transcript where I had it clone the repo and help me dig around to see how it works. Via Hacker News Tags: open-source , ai , rust , generative-ai , llms , coding-agents , xai
The Verge AI / 9:33 PM
xAI sues a man for using Grok to generate CSAM ‘deepfakes’
The Elon Musk-owned xAI is suing a South Carolina man who allegedly used the company's Grok AI chatbot to generate child sexual abuse material (CSAM). In a lawsuit reported earlier by Reuters, xAI claims Terry Wayne Harwood "knowingly and intentionally used Grok to circumvent safeguards, alter nonconsensual images, and generate and distribute CSAM," breaching the […]
The Decoder / 4:58 PM
Meta's Muse Spark 1.1 API pricing squeezes OpenAI and Anthropic as the AI price war heats up
Meta is entering the AI API business with Muse Spark 1.1 at prices that undercut even the dirt-cheap Grok 4.5, released just yesterday. At $4.25 per million output tokens, Meta charges a fraction of what Anthropic or OpenAI ask. For pure-play AI labs burning through billions, the pressure just got worse. The article Meta's Muse Spark 1.1 API pricing squeezes OpenAI and Anthropic as the AI price war heats up appeared first on The Decoder .
The Decoder / 7:47 AM
Grok 4.5 is so cheap compared to Fable 5 and GPT 5.5 that benchmark gaps may not matter much
xAI releases Grok 4.5, trained on tens of thousands of Nvidia GB300 GPUs. In coding benchmarks, the model trails Fable 5 and GPT-5.5 but needs 4.2 times fewer tokens than Opus 4.8. At $2 per million input tokens, it costs a fraction of the competition. EU availability is expected in mid-July. The article Grok 4.5 is so cheap compared to Fable 5 and GPT 5.5 that benchmark gaps may not matter much appeared first on The Decoder .
Hacker News AI / 6:42 PM
Hacker News discussion: Agent Mesh: let Claude Code, Codex, Grok and other agents talk to each other
Hacker News readers are discussing "Agent Mesh: let Claude Code, Codex, Grok and other agents talk to each other" with 1 points and 0 comments.
Hacker News AI / 4:26 PM
Hacker News discussion: Decispher: We have added support for Grok CLI
Hacker News readers are discussing "Decispher: We have added support for Grok CLI" with 6 points and 1 comments.
Hacker News AI / 3:57 PM
Hacker News discussion: All major LLMs are lib-left. Even Grok, half the time
Hacker News readers are discussing "All major LLMs are lib-left. Even Grok, half the time" with 36 points and 61 comments.
Hacker News AI / 9:09 AM
Hacker News discussion: Grok muscles into Excel with an AI add-in of its own
Hacker News readers are discussing "Grok muscles into Excel with an AI add-in of its own" with 2 points and 0 comments.
Hacker News AI / 9:13 PM
Hacker News discussion: "Drawing" the Mona Lisa with GPT-5.6, Claude, Gemini, and Grok
Hacker News readers are discussing ""Drawing" the Mona Lisa with GPT-5.6, Claude, Gemini, and Grok" with 14 points and 4 comments.
Ars Technica AI / 8:26 PM
xAI can’t deny Grok makes CSAM anymore. So it’s suing users.
Elon Musk's xAI files first lawsuit against Grok user accused of making child sex images.
Hacker News AI / 3:36 PM
Hacker News discussion: Show HN: Tmux tab markers for Claude Code, Grok, and pi sessions
Hacker News readers are discussing "Show HN: Tmux tab markers for Claude Code, Grok, and pi sessions" with 1 points and 0 comments.
Hacker News AI / 10:01 AM
Hacker News discussion: Musk promises purge after Grok Build caught sending repos to the cloud
Hacker News readers are discussing "Musk promises purge after Grok Build caught sending repos to the cloud" with 1 points and 0 comments.
The Verge AI / 7:25 PM
SpaceXAI’s Grok programming tool was uploading its users’ entire codebase to cloud storage
SpaceXAI's Grok Build AI coding tool was spotted uploading users' entire codebases to Google Cloud before it was reported, and the company turned it off. The Register reports that Cereblab published findings on Monday showing how the Grok Build CLI was packaging and uploading entire code repositories, "including files it was told not to open […]
Latest story in this edition: 11:32 PM
Back to front page