Discover real AI creators shaping the future. Track their latest blogs, X posts, YouTube videos, WeChat Official Account posts, and GitHub commits — all in one place.
Content Creation is going to get 10x more competitive over the next 2 years. So many smart driven people will be laid off + AI content will make it very hard to build a following on IG+TT+YT from 0.
Claude Code is now a subagent inside Perplexity Computer. And we’ve added GitHub CLI.
You can now use Claude Code and GitHub CLI directly inside Perplexity Computer. We gave it an open issue on Openclaw. Computer: → Forked the repo → Wrote a plan to fix the bug → Opened Claude Code and implemented it → Submitted a PR via GitHub CLI
View quoted postRT LlamaIndex 🦙 If you’re working with lots of slide decks and need a better way to search through them, Surreal Slides makes it simple 🌀 Built around LlamaParse, it parses presentation files into clean, structured data, turning raw slides into something AI can truly understand. Each slide is extracted, summarized, and organized before being stored in @SurrealDB for flexible retrieval. From there, you can query your entire presentation library in natural language through an agentic interface: no need to manually scan files or remember where a specific slide lives. Take a look at the demo below👇 GitHub Repository: https://github.com/run-llama/surreal-slides Original tweet: https://x.com/llama_index/status/2031038377831932056
RT Viv Harness Design Notes: Decoupling Agent Storage from Agent Compute TLDR: You can give each Agent/Subagent dedicated compute while sharing storage (repo/filesystem) to self-organize work between them. Shared Compute can be a bottleneck especially with long running code execution. Started writing up some harness design patterns over a very long flight this weekend, might make this a series if there's interest! We're on the edge of using a massive amount of compute to orchestrate agents across long horizon work Ex: for Agent Teams, an orchestrator organizes potentially many agents that fan out and do work on a project (like a large repo) For anyone who runs many agents locally, you see your CPU usage skyrocket for even moderate runs with code exec But Sandboxes to the rescue :) There's a nice pattern of shared filesystems via Volumes that all agents access while getting their own sandbox environment. The coordination happens via writing to the write place in the filesystem. And using git makes it so you can track and roll back changes over time good Harness Engineering on self-organizing agents via filesystems requires thinking about infra too. Many patterns work but you have to measure them for your work! Harness Engineering is Systems Engineering Original tweet: https://x.com/Vtrivedy10/status/2031038082321936449
Entire generation on soyslop now with no idea what whole foods look like
The good/bad part about agentic codeing is the barrier to getting nerdsniped is now much lower https://github.com/hamelsmu/hamelnb
Though bash is a completely valid REPL, the amount of time coding agents lose during experimentation because they iterate on scripts instead of a Jupyter-like in-memory REPL is basically dumb. Fixing 1 local bug should not require restarting the whole job. Need better scaffolds.
View quoted postGot excited about a brand new PostgreSQL 18 feature (for simulating production query plan statistics locally), posted about it on the SQLite forum... and got a reply from D. Richard Hipp within minutes that SQLite has had the same ability for years https://simonwillison.net/2026/Mar/9/production-query-plans-without-production-data/