AI Geopolitics, Licensing & the Labor Question

Published on

Today's AI news: AI Geopolitics, Licensing & the Labor Question, Local AI: The Hardware Arms Race Continues, Agentic Coding: The Harness Problem, Open Models & Community Power, Supply Chain Security Meets LLM-Powered Offense, Research Frontiers: When Models Cannot See What They Are Missing. 22 sources curated from across the web.

AI Geopolitics, Licensing & the Labor Question

Anthropic CEO Dario Amodei and Google DeepMind's Demis Hassabis showed up at the G7 this week to pitch a U.S.-led AI coalition. The community response was immediate and uniformly skeptical. The top-voted comment captured the mood: "If my trillion-dollar industry is only six months ahead of a Chinese PhD with a bunch of GPUs, I would also seek a coalition." Others pointed out the obvious credibility problem โ€” the same U.S. government that started a tariff war with Europe, threatened Greenland, and backed pro-Russia politicians in EU elections is now asking allies to co-fund American AI infrastructure. The F-35 analogy kept surfacing: the U.S. retains total control, partners fund and get minimal contribution rights. None of this is new. Back in OpenAI's early days, Altman's team outlined how a "coalition of labs" could coordinate through an IAEA-like body. That vision never materialized. What changed is that DeepSeek proved the cost-moat argument is thin, and now the labs want regulatory barriers instead. As one commenter put it: "Without regulation, no moat." (more: https://old.reddit.com/r/LocalLLaMA/comments/1u8vkye/ceos_of_anthropic_and_google_deepmind_call_for/)

Meanwhile, a user discovered that Anthropic hard-blocks Claude from outputting the verbatim text of copyleft licenses โ€” AGPL-3, GPL-3, MPL-2.0, LGPL-2.1, EPL-2.0, Apache 2.0, SSPL, and BSL all refused. Permissive licenses like MIT, BSD-2, BSD-3, and Unlicense went through fine. The blocked list maps almost perfectly to licenses longer than 300 words, which makes the most plausible explanation a verbatim-reproduction safeguard rather than an ideological stance. Multiple commenters noted the irony of spending tokens generating a LICENSE file instead of copy-pasting it. But there is a sharper read: if agentic coding makes copyleft matter again โ€” because agents need source access to modify software โ€” then the largest agent provider selectively blocking copyleft text is worth watching, even if the mechanism is mundane. (more: https://old.reddit.com/r/Anthropic/comments/1u6gpzk/anthropic_hardblocks_certain_copyleft_licenses/)

Daniel Miessler offered what he calls a "unified theory" of AI and jobs. His thesis: both camps are right. Lots of jobs will vanish, lots will appear, but the new employability bar will be dramatically higher, producing a K-shaped split between those who adapt and those who do not. He frames this as "escape velocity" โ€” a binary threshold, not a gradient. The list of thriving-vs-struggling traits reads more like a self-help manifesto than labor economics (curiosity good, Netflix bad), and it conveniently sidesteps structural questions about who gets access to retraining. But the K-shape framing itself has legs. We have tracked this since Edition 234, when Microsoft/ACM research showed AI creating "seniority-biased technological change" โ€” amplifying experienced engineers while dragging down juniors. Miessler's contribution is packaging the split as a personal optimization problem. Whether that framing helps or merely flatters the already-thriving is the question he does not answer. (more: https://danielmiessler.com/blog/unified-theory-ai-jobs)

Local AI: The Hardware Arms Race Continues

The 4x RTX 5060 Ti build saga continues. One builder assembled a quad-card rig on an MSI MEG Z890 Unify-X board, using M.2-to-PCIe adapters to slot two extra GPUs via PCIe 5.0 x4 CPU lanes. Memory overclocking hit +6000 MT/s on most cards. The goal: Qwen 3.6 27B at Q8 with 64 GB of combined VRAM. The update was less triumphant โ€” both M.2-connected GPUs drop off the PCIe bus under vLLM load. Another user reported their 4x 5060 Ti rig hitting 120 tokens/second on Qwen 3.6 35B via llama.cpp, which is the real benchmark people care about. The 5060 Ti at $400-ish remains the price-performance sweet spot for multi-GPU local inference, but PCIe bandwidth constraints on consumer boards keep biting. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u6u3su/finally_4xrtx_5060ti/)

On the Mac side, Antirez's ds4 engine now runs DeepSeek 4 Flash on an M3 Max with 96 GB unified memory via SSD streaming. Performance: 11-13 tokens/second generation, 3-5 second time-to-first-token after warm cache. The catch is prefill โ€” 36K tokens takes two and a half minutes, which kills any agentic coding loop where context rebuilds between tool calls. One user's workaround: pair DS4 Flash with a smaller model for the file-reading step, reserve the big model for final generation only. Another reported that on an M3 Ultra, DS4 Flash at IQ2XXS matched Gemma 4 31B Q4 speeds at 32 tokens/second. The SSD wear question is legitimate for daily use, but the capability floor keeps dropping: a model that needed datacenter hardware a year ago now runs on a laptop, slowly. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u5mfaq/you_can_run_deepseek_4_flash_on_mac_m3_max_96gb/)

The Anthropic service interruption this week catalyzed a builder who had been expecting exactly this moment. Bantz is a fully local AI personal assistant running on Gemma 4B: Gmail summarization by category, Google Calendar integration, web search, real-time system monitoring, scheduled tasks, and early Wayland desktop control โ€” all on CPU, no GPU required. The comments were more interesting than the project itself. The highest-rated response nailed the real difficulty: "The model was not the hard bit. The hard bit was everything around it: memory that doesn't turn into junk, permissions narrow enough to trust, retries when a task half-fails." The boundary between what the assistant can see, what it can act on, and what still requires explicit approval โ€” that turned out to be the design center. Not the chat interface. Not the persona. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u5lfvv/built_a_local_ai_assistant_because_i_always_knew/)

A streaming copilot project pushed local inference to the edge โ€” literally. Running on a Jetson AGX Orin with 61 GB RAM, it does live transcription via Faster Whisper large-v3-turbo on CUDA (~0.06 RTF, basically real time), feeds suggestions through a local Ollama model (Gemma 4), and surfaces them in a web dashboard. Multi-platform chat integration (Twitch, YouTube, TikTok), post-stream report cards, session replay. No audio or transcript leaves the device. The Jetson angle is new territory for the local-AI movement โ€” the jump from "can I run a model on my desktop" to "can I run a real-time streaming copilot on edge hardware." (more: https://old.reddit.com/r/ollama/comments/1u77okq/local_streaming_copilot_live_transcription/)

Agentic Coding: The Harness Problem

Local coding agents are good now, but the babysitting problem has not gone away. One practitioner's workflow is the same loop everyone converges on: small task, run tests, check diff, fix the weird part, repeat. Local models drift when task boundaries are vague โ€” "refactor this module" fails, "change this method signature and update all callers in this file" mostly works. The most sophisticated workaround reported: use Opus to babysit a local Qwen, having the frontier model write notes so the cheap model can handle the same task in future runs. Another user runs Qwen 3.6:27B inside an ephemeral Docker container with Opus overseeing โ€” an 80/20 token ratio of local to frontier, molecular task slices, checkpoint-and-destroy after each feature slice. The pattern is clear: local models need a supervisor, and the supervisor is currently another model. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u6mmuu/local_coding_agents_are_good_now_but_only_if_you/)

A YouTube walkthrough of a "Fable 5 Agentic OS" โ€” really a Claude Code wrapper with a visual HUD layer โ€” demonstrated the skill architecture approach. Faster Whisper handles speech-to-text, a three-tier routing system (regex, Haiku, local model) dispatches commands, headless Claude Code (-p flag) executes them, and Kokoro TTS voices the responses. The key insight is not the Fable 5 branding (the system does not require Fable 5 and mostly runs on Opus/Sonnet) โ€” it is the skill backbone. Every manual workflow becomes a reusable skill with a button. Obsidian integration provides persistent knowledge. The $200/month API credits coming for headless mode will lower the barrier, but the architecture pattern matters more than the specific implementation. (more: https://www.youtube.com/watch?v=PW0sgog3kXY)

The editorial framing that pulls all of this together came from a video essay arguing that agent maintenance is the real story of 2026. The central example: Vercel improved its sales agent by removing 80% of its tools. Four principles emerged. First, agents break when models get better โ€” a harness tuned for a weak model becomes a drag on a stronger one. Second, agents inherit organizational crud: stale wikis, outdated processes, drifted definitions. Third, the big labs bet on the harness flywheel โ€” better models help build better harnesses, which make agents more useful, which justify better models. Fourth, the question everyone needs to answer is "what is my harness?" Stewart Brand's Maintenance of Everything provided the frame: agents are more like sailboats than apps. You do not launch them once. The weather changes, the lines loosen, salt gets into everything. Five checks: sources (are they current?), reach (permissions still right?), job definition (has it silently changed?), proof trails (can a human verify?), and value (does anyone read the output?). (more: https://www.youtube.com/watch?v=cX3G0cPRJiA)

On the tooling side, OpenClaw published a shared agent-skills repository โ€” canonical SKILL.md workflows for review closeout, remote validation, session transcripts, and task handoff, installable via symlinks into Claude Code or Codex skill directories. The goal: write a workflow once, reuse everywhere, stop hand-copying SKILL.md files across repos. Trail of Bits, by comparison, has accumulated 94 plugins with 201+ skills and 84 specialized agents. The gap between "five shared skills in a GitHub repo" and "400+ reference files encoding domain expertise" is exactly the maintenance problem the editorial described. (more: https://github.com/openclaw/agent-skills)

The Agentic Resource Discovery (ARD) specification, developed by contributors from Microsoft, Google, GoDaddy, and Hugging Face, addresses the layer beneath skills: how do agents find tools and capabilities at runtime instead of needing them pre-installed? ARD defines a static manifest format (ai-catalog.json at a well-known URL) and a dynamic registry REST API. Hugging Face shipped a reference implementation over their Hub, wrapping existing Spaces search into ARD catalog entries for skills, MCP servers, and raw Space metadata. The verify step matters most โ€” discovery without publisher verification just industrializes trusting strangers. (more: https://huggingface.co/blog/agentic-resource-discovery-launch)

The av-curator repo from henliveira represents the other end of the spectrum โ€” a single-purpose agent tool for audiovisual content curation, the kind of narrow utility that ARD registries are designed to surface. (more: https://github.com/henliveira/av-curator)

Open Models & Community Power

VibeThinker-3B is reportedly crushing MathQA benchmarks at levels typically associated with 30B-parameter models. The community reaction was appropriately split. The impressed camp noted the chain-of-thought quality: "What's impressive isn't that it solved them, it's that it had a coherent chain in solving them and didn't just throw stuff at the wall." The skeptics countered: "A 3B crushing MathQA is narrow RL on that task shape, not general smarts." Both are right. The floor for specialized math performance keeps dropping โ€” from PaCoRe's 8B beating GPT-5 on HMMT25 in December to 3B now. But no tool calling means no agentic coding, which limits the practical surface area. Reasoning ability compresses better than world knowledge. That is a real finding, even if the model is a sharp comb with few teeth. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u7u3ls/vibethinker3b_what_is_this_witchcraft_killing_it/)

A LocalLLaMA thread proposed building a community model via Branch-Train-Stitch: distribute a prototype dense model to volunteers, each trains on their own hardware for a narrow domain, then organizers stitch the submodels into a large MoE. The logistics are nontrivial โ€” sabotage detection requires non-uniform utilization in the router, final healing and RL need full-model VRAM (H200-class rigs), and the data recipe is the hardest unsolved piece. But the architecture is sound: independently trained experts, stitched at merge time, lowering coordination cost below what distributed training normally demands. A 2B prototype would maximize participation; a 7B prototype would produce a better final model but limit contributors to 32GB VRAM and above. Whether the community actually executes is TBD, but the technical path is real. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u7mn85/get_in_here_community_model_build_thread/)

Bartowski dropped GGUF quantizations of Cohere's Command-A-Plus, making the enterprise-RAG-optimized model available for local inference. Early reports were mixed โ€” some users hit incoherent outputs and infinite thinking loops, suggesting llama.cpp template support may not be fully baked. At 25B active parameters in an MoE configuration, the speed-quality tradeoff is aggressive. The 128 GB unified RAM crowd still cannot fit it comfortably. The quantization pipeline grinds on โ€” everything gets GGUF'd eventually โ€” but surviving quantization well remains model-dependent. (more: https://old.reddit.com/r/LocalLLaMA/comments/1u7k7g9/bartowskicommandaplus052026gguf_hugging_face/)

NVIDIA published Nemotron-Labs-Diffusion-14B on Hugging Face, their entry into diffusion-based language modeling. At 14B parameters this is substantially larger than prior attempts like Tencent's WeDLM 8B, which we last covered with skepticism in December 2025. Whether NVIDIA's engineering muscle changes the viability picture for diffusion-based text generation remains to be seen from independent benchmarks. (more: https://huggingface.co/nvidia/Nemotron-Labs-Diffusion-14B)

Supply Chain Security Meets LLM-Powered Offense

npm v12 is shipping with post-install scripts disabled by default. This is genuinely significant. The Shy Hallude worm has been rampaging the npm ecosystem since late 2025, propagating via transitive post-install scripts that steal AWS, GCP, and Azure tokens, then use compromised npm credentials to publish more malicious packages. The attack vector is brutally simple: you run npm install axios, and if any package in the entire dependency tree has a malicious post-install script, it executes on your machine. Three new defaults address this: allow-scripts off (no pre/post-install execution), allow-git none (no malicious .npmrc overrides), and allow-remote restricted (no dependency resolution from remote URLs). A new minimum-release-age setting lets you refuse packages younger than N days, which would have caught most Shy Hallude variants that were detected within hours to days. The CI/CD angle is the critical one โ€” automated pipelines that run npm install with post-install scripts enabled are handing attacker code execution in environments with GitHub PATs and deployment credentials. This fix removes the highway. Credit to @Koba, who opened an issue about this in 2019 and was ignored for years. (more: https://www.youtube.com/watch?v=BOXK2XFLA-E)

On the offensive side, OpenAnt (Knostic, Apache 2.0) published a full paper on their six-stage LLM-powered vulnerability discovery pipeline. The architecture: static filtering reduces analysis surface by 97% via reachability from external entry points; Claude Sonnet classifies exposure; Claude Opus detects vulnerabilities with a language-agnostic prompt; adversarial verification simulates a constrained attacker; dynamic verification generates exploit environments in sandboxed Docker containers that are discarded after use. Results across OpenSSL, WordPress, and Flowise: 64,132 functions filtered to 190 confirmed vulnerabilities, 144 dynamically verified (75.8% confirmation rate). Cost: $1,461 for eight repositories. Over 30 vulnerability classes identified. The paper advances the field past the "Claude found some bugs" stage into a reproducible methodology with cost accounting and false-positive reduction. The closed-loop design โ€” semantic reasoning followed by actual exploit execution โ€” is the right architecture for scaling this. (more: https://arxiv.org/pdf/2606.19149)

Research Frontiers: When Models Cannot See What They Are Missing

A new paper introduces "concept frustration" โ€” a geometric framework for diagnosing when a model's concept ontology is incomplete. The core idea: when human-interpretable bottleneck concepts do not cover all the information the data actually carries, the model's internal representations become frustrated, carrying information the concept labels cannot express. The key technical contribution is using the Fisher information metric to detect this frustration in representation space โ€” something invisible in Euclidean distance. The closed-form Bayes-optimal accuracy decomposition tells you exactly how much performance you are losing to missing concepts. Real experiments on sarcasm detection (DeBERTa) and bird classification (CLIP) showed that adding a missing concept reorganizes all existing concept representations, not just the new one. This has direct implications for interpretable AI: if your concept bottleneck model is underperforming, the bottleneck itself may be the problem, and the failure mode is geometrically detectable before you know what concept is missing. (more: https://arxiv.org/abs/2603.29654v1)

The Artificial Tripartite Intelligence paper proposes a bio-inspired, sensor-first architecture for physical AI that inverts the usual hierarchy. Three tiers: a brainstem L1 layer handling reflexive responses in under 10 milliseconds, a cerebellum L2 layer doing calibration via contextual bandits, and cerebral L3/L4 layers for local and cloud inference. A Galaxy S25 prototype went from 50% to 88% accuracy with 43.3% fewer cloud calls. The architecture is a direct response to a problem we have tracked: language abstracts away forces, friction, and timing, making LLM-centric physical AI brittle. By prioritizing raw sensory processing over language-mediated reasoning, the tripartite design sidesteps the embodiment-induced mismatches that make current robotics systems fail in ways their language models cannot predict. Accepted at MobiSys 2026. (more: https://arxiv.org/abs/2604.13959v1)

Classifier-free guidance (CFG) has been the workhorse trick for improving diffusion model outputs, but a new paper proves it breaks probability conservation in flow-matching models. The analysis decomposes the damage into two terms: divergence that blows up structurally near the data manifold, and a score-parallel flux that drives the saturation artifacts everyone has learned to live with. AdaMaG attenuates the parallel component with a time-dependent schedule, conserving probability without adding any inference cost. On SD3, SD3.5, and Flux, it beats CFG, APG, and TAG across metrics. Human evaluation: 60% preferred over standard CFG. The practical implication is immediate โ€” if you are generating images with flow-matching models and tolerating saturation artifacts as "the cost of guidance," there is now a zero-cost fix with a theoretical justification for why it works. (more: https://arxiv.org/abs/2605.20079v1)

Sources (22 articles)

  1. CEOs of Anthropic and Google DeepMind call for U.S.-led AI coalition in meeting at G7 (old.reddit.com)
  2. Anthropic Hard-Blocks Certain Copyleft Licenses (old.reddit.com)
  3. [Editorial] (danielmiessler.com)
  4. Finally - 4xRTX 5060TI (old.reddit.com)
  5. You can run Deepseek 4 flash on mac (M3 Max, 96gb) (old.reddit.com)
  6. Built a local AI assistant because I always knew this day would come, yesterday just made it feel very real (old.reddit.com)
  7. Local streaming copilot: live transcription + real-time suggestions, on a Jetson (old.reddit.com)
  8. Local coding agents are good now, but only if you babysit them (old.reddit.com)
  9. STOP Using Claude Code Without This Fable 5 Agentic OS (youtube.com)
  10. [Editorial] (youtube.com)
  11. openclaw/agent-skills (github.com)
  12. Agentic Resource Discovery: Let agents search (huggingface.co)
  13. henliveira/av-curator (github.com)
  14. VibeThinker-3B: what is this witchcraft? Killing it at MathQA like it has ~30B parameters (old.reddit.com)
  15. Get in here: Community model build thread (old.reddit.com)
  16. bartowski/command-a-plus-05-2026-GGUF ยท Hugging Face (old.reddit.com)
  17. nvidia/Nemotron-Labs-Diffusion-14B (huggingface.co)
  18. [Editorial] (youtube.com)
  19. [Editorial] (arxiv.org)
  20. Concept frustration: Aligning human concepts and machine representations (arxiv.org)
  21. [Emerging Ideas] Artificial Tripartite Intelligence: A Bio-Inspired, Sensor-First Architecture for Physical AI (arxiv.org)
  22. Probability-Conserving Flow Guidance (arxiv.org)