• My Feed
  • Home
  • What's Important
  • Media & Entertainment
Search

Stay Curious. Stay Wanture.

© 2026 Wanture. All rights reserved.

  • Terms of Use
  • Privacy Policy
Tech/Software

Rust CLI lets AI agents trade with a single command

Rust CLI that signs, throttles, and offers a sandbox for AI bots on Kraken

13 March 2026

—

Explainer *

Priya Desai

banner

Kraken’s new open‑source CLI turns a Rust‑compiled binary into a one‑stop interface for AI‑driven trading bots. It handles HMAC‑SHA512 signing, nonce tracking, and token‑bucket rate‑limit back‑off, exposing 134 market commands via NDJSON. Built‑in MCP lets agents discover capabilities, while a local paper‑trading engine lets strategies be tested safely before live deployment.

IMG_2026-1

Summary:

  • Kraken's open-source Rust CLI lets AI agents issue one-line commands like kraken balance, handling API signing, retries and rate-limit logic automatically.
  • The tool collapses dozens of authentication steps into a single call, saving LLM token budget and preventing crashes from nonce collisions or rate-limit errors.
  • It ships with a paper-trading simulator, futures, staking and WebSocket commands, and an MCP server that auto-exposes 134 functions for seamless agent integration.

Before Kraken's new command-line tool, an AI agent that wanted to check a crypto balance, place a limit order, and monitor fills would generate hundreds of tokens building request payloads, signing them with HMAC-SHA512, and parsing rate-limit headers. Now the agent types kraken balance and receives structured JSON in milliseconds. That reduction matters because LLM-driven trading strategies have multiplied over the past six months, and every saved token frees context space for market logic instead of plumbing.

Kraken Releases Open-Source CLI Designed for AI Agents

The tool translates one-line commands into authenticated exchange actions, handling signing, retries, and rate limits inside a Rust binary. Developers building autonomous trading systems no longer write custom wrappers for Kraken's REST and WebSocket APIs. The command-line interface does that work, so agents can focus on strategy instead of infrastructure.

Why this arrives now: the surge in large language model applications has pushed developers to treat crypto exchanges as data sources for agent workflows. Each API call consumes tokens. Each authentication step introduces error risk. The CLI collapses that overhead into a single executable that speaks both to humans and to machines.

How One Command Replaces Dozens of API Calls

A typical agent workflow once required building a request object, generating a nonce, computing a signature, attaching headers, and parsing the response. The CLI performs all five steps when you run kraken order limit BTC/USD 0.5 42000. The binary reads your API credentials from environment variables, constructs the payload, signs it using the same encryption your bank uses to secure wire transfers, sends the request, and returns newline-delimited JSON containing order ID, status, and fill details.

That JSON flows directly into an LLM's context window or into shell tools like jq for filtering. No custom parser. No token budget spent on formatting code. The agent receives structured data and moves to the next decision.

Why Agents Kept Crashing Before

Rate limits and nonce collisions caused the majority of early bot failures. Exchanges cap the number of requests per minute. When an agent exceeded that cap, the server returned an error. Without retry logic, the agent stopped. Manual scripts added exponential backoff, but that code had to be written, tested, and maintained for every project.

The CLI embeds a token-bucket algorithm that tracks request budgets in real time. When you hit a limit, the tool pauses, waits for the bucket to refill, and retries automatically. The exchange never sees a flood of failed attempts. Your agent never crashes. The workflow continues.

Nonce tracking presented a second problem. Each authenticated request needs a unique, increasing number. If two agents share credentials and generate the same nonce, one request fails. The CLI serializes nonce generation inside the binary, preventing collisions even when multiple processes call it simultaneously. That makes containerized deployments safe.

MCP Integration Teaches Agents Every Command Automatically

The Model Context Protocol schema lets agentic coding tools discover the CLI's 134 commands without reading documentation. Running kraken mcp starts a local server that responds to queries with a machine-readable list of every function, parameter type, and expected output format. Tools like Claude Code or Cursor ask the server what it can do, receive the schema, and generate calls dynamically.

This design eliminates the integration step. When Kraken adds a new command, the schema updates. Every connected agent learns the new capability instantly. No code changes. No version pinning. The CLI becomes a universal remote for crypto trading: one interface, every button already mapped.

Paper Trading Validates Strategy Without Moving Real Money

The CLI includes a local simulator that streams live ticker data and fills orders when prices cross your thresholds. Agents place limit orders in paper mode. The engine watches market feeds, executes the trade when conditions match, and updates simulated balances. The JSON response looks identical to a production fill, so your agent's logic handles both environments the same way.

Developers use this sandbox to measure slippage handling, verify error parsing, and test edge cases. Because no real funds move, you can let the agent run for days, observe how it reacts to volatility, and refine parameters before deploying capital. The paper engine mirrors live behavior, including partial fills and order book depth, so the transition to production becomes a configuration change rather than a rewrite.

Beyond Spot Trading: Futures, Staking, and Real-Time Streams

The CLI covers futures contracts, staking operations, sub-account transfers, and WebSocket feeds through dedicated commands. An agent monitoring Bitcoin futures types kraken ws ticker BTC/USD and receives a stream of order book updates in NDJSON. That stream stays open, pushing data as the market moves, so the agent reacts within milliseconds instead of polling every second.

Staking commands let the agent lock tokens to earn yield, then track rewards over time. Sub-account transfers enable risk isolation: the agent can allocate capital to separate wallets, limiting exposure if a strategy underperforms. Each feature is reachable through the same interface, expanding what autonomous systems can manage without custom code.

What Reliable Execution Unlocks

By guaranteeing authentication, retry logic, and rate-limit compliance, the CLI shifts developer effort from infrastructure to insight. Teams building AI-powered strategies can now spend time on risk models, market signal processing, and portfolio optimization. The execution layer becomes a solved problem.

Kraken's decision to open-source the tool and integrate MCP suggests exchanges are preparing for a future where autonomous agents place a significant share of orders. Treating agents as first-class users, not just scripting afterthoughts, lowers the barrier for LLM-driven systems to move from prototype to production. The tool handles the plumbing. The agent handles the thinking.

Developers can clone the repository, mount API keys as Docker secrets, and orchestrate fleets of agents without risking IP bans or nonce collisions. The CLI's Rust foundation ensures low latency and predictable resource use, even under load. That combination of safety, speed, and simplicity makes it possible to test ambitious trading ideas without building a bespoke platform first.

The question now is how quickly other exchanges adopt similar tooling. If agent-friendly infrastructure becomes table stakes, the next wave of market participants may write strategies in plain language and let the CLI translate intent into action.

Topic

AI Multi-Agent Platforms

Perplexity’s Personal Computer AI Agent Arrives for macOS 13

1 day ago

Perplexity’s Personal Computer AI Agent Arrives for macOS 13

Meta acquires Moltbook to boost AI‑agent platform

2 days ago

Meta acquires Moltbook to boost AI‑agent platform

Perplexity’s AI platform uses Opus 4.6 and ChatGPT 5.2

26 February 2026

Perplexity’s AI platform uses Opus 4.6 and ChatGPT 5.2

What is this about?

  • enterprise AI automation/
  • blockchain security/
  • AI SaaS adoption/
  • crypto trading CLI/
  • paper trading simulation/
  • MCP integration

Feed

    Zombie ZIP (CVE-2026-0866) Evades 60 of 63 AV Products

    CVE-2026-0866, dubbed “Zombie ZIP,” masks a DEFLATE-compressed payload as a stored ZIP, letting it slip past most scanners. Sixty of 63 AV/EDR products missed it, yielding a 98% evasion rate on VirusTotal. Until patches roll out, users should verify ZIP sources, scan with multiple engines, avoid opening unexpected files, and use sandboxing or Windows Explorer extraction, with caution.

    Zombie ZIP (CVE-2026-0866) Evades 60 of 63 AV Products
    about 7 hours ago

    Apple orders 20 million Samsung displays for iPhone Ultra

    Apple placed an order for 20 million flexible displays from Samsung on March 12, 2026, marking the company's first foldable iPhone, the iPhone Ultra. Samsung became the sole supplier after BOE failed quality checks, with production slated for May and the first units expected in Q4 2026. Analysts say the deal could boost the global foldable market by up to 30 percent year‑over‑year.

    Apple orders 20 million Samsung displays for iPhone Ultra
    about 8 hours ago

    Parallels Desktop 19.2 runs Windows 11 ARM on MacBook Neo

    Parallels Desktop 19.2 shows Windows 11 ARM can run in a VM on the new MacBook Neo with Apple’s A18 Pro chip. VT‑EX support enables shared‑memory operation, allowing enterprises to consolidate macOS and Windows workloads on a single low‑cost laptop. The base 8 GB model caps Windows RAM at about 4 GB, limiting multitasking.

    about 10 hours ago

    Apple’s 50‑Year Journey: From Garage to Global Action

    Tim Cook’s anniversary letter marks Apple’s 50‑year milestone by celebrating the users who turned a garage prototype into habits. From the Apple I’s bare board to the iPhone, iPod, Macintosh and Apple Watch, the story shows how simple actions—recording a newborn, tracking a run, building an app—have shaped the company’s legacy and point to a user‑focused future.

    about 12 hours ago

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus

    JBL unveiled the EasySing AI karaoke microphone, bundled with the PartyBox 2 Plus, on April 5, 2026. The mic’s on‑device neural‑network strips vocals at three levels and adds real‑time pitch correction, while Voice Boost cuts background noise. With ten‑hour battery life and USB‑C pairing, it aims at the expanding U.S. karaoke market driven by AI‑enhanced, portable audio.

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus
    1 day ago

    Why Does Muscle Mass Beat the Scale After 40?

    Hidden muscle loss slows metabolism; strength tests can protect health after 40

    1 day ago

    Evening Sugar Cravings: Why They’re Metabolic, Not Willpower

    Low glucose and dopamine spikes spark sweet cravings; protein curbs them

    1 day ago

    Apple’s upcoming foldable adds two‑app split-screen

    Apple’s upcoming foldable iPhone, slated for the 2026‑2027 roadmap, will run a custom OS and support a two‑app side‑by‑side view. The internal screen expands to roughly 7.6‑7.8 inches while the outer cover remains a familiar 5.4 inches, offering a pocket‑sized device that lets professionals check notes or reply to messages without switching apps. Developer tools will determine how quickly the split‑screen workflow gains traction.

    Apple’s upcoming foldable adds two‑app split-screen
    1 day ago
    7 Steps to Supercharge Windows with PowerToys v0.97.2

    7 Steps to Supercharge Windows with PowerToys v0.97.2

    Install, configure, and use PowerToys v0.97.2 to speed up Windows tasks

    1 day ago

    Apple Music Streams Full Songs Inside TikTok

    Apple Music became the exclusive provider of full‑track streaming inside TikTok on March 11, 2026. Users tap a button to play entire songs via an embedded mini‑player without leaving the app. Non‑subscribers receive a three‑month free trial, streams count toward artist royalties, and new Listening Party rooms enable real‑time co‑listening with live chat.

    1 day ago

    Xbox Full Screen Experience hits Windows 11 in April 2026

    Microsoft announced that the Xbox Full Screen Experience will be available on Windows 11 PCs starting in April 2026. The mode disables File Explorer and background services, freeing roughly 2 GB of RAM and lowering CPU load. Gamers can activate it by pressing Win+F11 or via the Game Bar, and it works with Steam, Epic, Microsoft Store, and DirectX 12 titles.

    Xbox Full Screen Experience hits Windows 11 in April 2026
    1 day ago

    Perplexity’s Personal Computer AI Agent Arrives for macOS 13

    Perplexity’s Personal Computer launches as a cloud‑hosted AI agent for macOS 13 Mac mini, acting as a desktop proxy that requires user approval for each task and includes an instant‑off button. The subscription service bundles cloud models, while open‑source OpenClaw v2026.3.11 offers a free alternative but has security flaws. Users weigh convenience versus cost and privacy.

    Perplexity’s Personal Computer AI Agent Arrives for macOS 13
    1 day ago

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs

    Nvidia and Nebius announced on March 11 a partnership to launch on‑demand AI factories built from H100 and H200 GPUs. The service bundles Nvidia AI Enterprise, NeMo and Triton, letting developers train and run large language models without buying hardware. Nebius shares jumped over 13% after the news, buoyed by its 2025 Microsoft contract.

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs
    2 days ago

    Windows 11 KB5079473 update released on March 11, 2026

    Microsoft’s March 11, 2026 Windows 11 KB5079473 update fixes sign‑in freezes, cuts wake‑from‑sleep latency on SSD laptops, and stops Nearby Sharing crashes during large file transfers. It adds an Extract‑All button for RAR/7z archives, fresh emojis, an internet‑speed taskbar widget, and native .webp wallpaper support. Install via Settings > Windows Update or a standalone download.

    Windows 11 KB5079473 update released on March 11, 2026
    2 days ago

    Klotho Clock Assays Target Biological Age in Neuro Trials

    Klotho Neurosciences rolled out two genomics assays on March 10, 2026, dubbed the Klotho Clock. The tests read cell‑free DNA methylation at the KLOTHO promoter and profile nine longevity‑linked genes, letting researchers match trial participants by biological age. Aligning groups this way may boost power in ALS and Alzheimer’s studies and cut costly trial failures.

    2 days ago

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks

    On March 8, 2026, Moskvich announced the end of 5‑sedan production after fewer than 500 units left the line, citing missed consumer‑property benchmarks for ride comfort and interior durability. Remaining cars will be sold at discounts of up to 30%. The company is now shifting resources to the 3 SUV, aiming for 50,000 units to avoid the shortfalls that halted the 5.

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks
    2 days ago

    Meta acquires Moltbook to boost AI‑agent platform

    Meta announced on March 10, 2026 that it has acquired Moltbook, the Reddit‑style AI‑agent platform that amassed 1.5 million agents after its late‑January launch. The purchase follows a February security breach that exposed API keys, prompting Meta to bring the team into its Superintelligence Labs and promise secure, hosted tools for managing multi‑agent ecosystems.

    Meta acquires Moltbook to boost AI‑agent platform
    2 days ago

    Adobe Photoshop AI assistant launches for all on April 1

    On April 1, Adobe opened its Photoshop AI assistant to all web and mobile users, ending the invite‑only beta. The generative fill feature lets creators type prompts or draw arrows to remove, replace, or adjust objects, with support for iOS 15+ and Android 12+. Paid subscribers keep unlimited generations; free accounts are capped at 20 edits until April 9.

    Adobe Photoshop AI assistant launches for all on April 1
    3 days ago
    MacBook Neo Base Review: Silent, Light, and Upgrade‑Limited

    MacBook Neo Base Review: Silent, Light, and Upgrade‑Limited

    Campus test of the MacBook Neo shows all‑day battery life and silence, but limited RAM and a USB‑2 port

    3 days ago
    Loading...
Tech/Software

Rust CLI lets AI agents trade with a single command

Rust CLI that signs, throttles, and offers a sandbox for AI bots on Kraken

March 13, 2026, 3:39 pm

Kraken’s new open‑source CLI turns a Rust‑compiled binary into a one‑stop interface for AI‑driven trading bots. It handles HMAC‑SHA512 signing, nonce tracking, and token‑bucket rate‑limit back‑off, exposing 134 market commands via NDJSON. Built‑in MCP lets agents discover capabilities, while a local paper‑trading engine lets strategies be tested safely before live deployment.

IMG_2026-1

Summary

  • Kraken's open-source Rust CLI lets AI agents issue one-line commands like kraken balance, handling API signing, retries and rate-limit logic automatically.
  • The tool collapses dozens of authentication steps into a single call, saving LLM token budget and preventing crashes from nonce collisions or rate-limit errors.
  • It ships with a paper-trading simulator, futures, staking and WebSocket commands, and an MCP server that auto-exposes 134 functions for seamless agent integration.

Before Kraken's new command-line tool, an AI agent that wanted to check a crypto balance, place a limit order, and monitor fills would generate hundreds of tokens building request payloads, signing them with HMAC-SHA512, and parsing rate-limit headers. Now the agent types kraken balance and receives structured JSON in milliseconds. That reduction matters because LLM-driven trading strategies have multiplied over the past six months, and every saved token frees context space for market logic instead of plumbing.

Kraken Releases Open-Source CLI Designed for AI Agents

The tool translates one-line commands into authenticated exchange actions, handling signing, retries, and rate limits inside a Rust binary. Developers building autonomous trading systems no longer write custom wrappers for Kraken's REST and WebSocket APIs. The command-line interface does that work, so agents can focus on strategy instead of infrastructure.

Why this arrives now: the surge in large language model applications has pushed developers to treat crypto exchanges as data sources for agent workflows. Each API call consumes tokens. Each authentication step introduces error risk. The CLI collapses that overhead into a single executable that speaks both to humans and to machines.

How One Command Replaces Dozens of API Calls

A typical agent workflow once required building a request object, generating a nonce, computing a signature, attaching headers, and parsing the response. The CLI performs all five steps when you run kraken order limit BTC/USD 0.5 42000. The binary reads your API credentials from environment variables, constructs the payload, signs it using the same encryption your bank uses to secure wire transfers, sends the request, and returns newline-delimited JSON containing order ID, status, and fill details.

That JSON flows directly into an LLM's context window or into shell tools like jq for filtering. No custom parser. No token budget spent on formatting code. The agent receives structured data and moves to the next decision.

Why Agents Kept Crashing Before

Rate limits and nonce collisions caused the majority of early bot failures. Exchanges cap the number of requests per minute. When an agent exceeded that cap, the server returned an error. Without retry logic, the agent stopped. Manual scripts added exponential backoff, but that code had to be written, tested, and maintained for every project.

The CLI embeds a token-bucket algorithm that tracks request budgets in real time. When you hit a limit, the tool pauses, waits for the bucket to refill, and retries automatically. The exchange never sees a flood of failed attempts. Your agent never crashes. The workflow continues.

Nonce tracking presented a second problem. Each authenticated request needs a unique, increasing number. If two agents share credentials and generate the same nonce, one request fails. The CLI serializes nonce generation inside the binary, preventing collisions even when multiple processes call it simultaneously. That makes containerized deployments safe.

MCP Integration Teaches Agents Every Command Automatically

The Model Context Protocol schema lets agentic coding tools discover the CLI's 134 commands without reading documentation. Running kraken mcp starts a local server that responds to queries with a machine-readable list of every function, parameter type, and expected output format. Tools like Claude Code or Cursor ask the server what it can do, receive the schema, and generate calls dynamically.

This design eliminates the integration step. When Kraken adds a new command, the schema updates. Every connected agent learns the new capability instantly. No code changes. No version pinning. The CLI becomes a universal remote for crypto trading: one interface, every button already mapped.

Paper Trading Validates Strategy Without Moving Real Money

The CLI includes a local simulator that streams live ticker data and fills orders when prices cross your thresholds. Agents place limit orders in paper mode. The engine watches market feeds, executes the trade when conditions match, and updates simulated balances. The JSON response looks identical to a production fill, so your agent's logic handles both environments the same way.

Developers use this sandbox to measure slippage handling, verify error parsing, and test edge cases. Because no real funds move, you can let the agent run for days, observe how it reacts to volatility, and refine parameters before deploying capital. The paper engine mirrors live behavior, including partial fills and order book depth, so the transition to production becomes a configuration change rather than a rewrite.

Beyond Spot Trading: Futures, Staking, and Real-Time Streams

The CLI covers futures contracts, staking operations, sub-account transfers, and WebSocket feeds through dedicated commands. An agent monitoring Bitcoin futures types kraken ws ticker BTC/USD and receives a stream of order book updates in NDJSON. That stream stays open, pushing data as the market moves, so the agent reacts within milliseconds instead of polling every second.

Staking commands let the agent lock tokens to earn yield, then track rewards over time. Sub-account transfers enable risk isolation: the agent can allocate capital to separate wallets, limiting exposure if a strategy underperforms. Each feature is reachable through the same interface, expanding what autonomous systems can manage without custom code.

What Reliable Execution Unlocks

By guaranteeing authentication, retry logic, and rate-limit compliance, the CLI shifts developer effort from infrastructure to insight. Teams building AI-powered strategies can now spend time on risk models, market signal processing, and portfolio optimization. The execution layer becomes a solved problem.

Kraken's decision to open-source the tool and integrate MCP suggests exchanges are preparing for a future where autonomous agents place a significant share of orders. Treating agents as first-class users, not just scripting afterthoughts, lowers the barrier for LLM-driven systems to move from prototype to production. The tool handles the plumbing. The agent handles the thinking.

Developers can clone the repository, mount API keys as Docker secrets, and orchestrate fleets of agents without risking IP bans or nonce collisions. The CLI's Rust foundation ensures low latency and predictable resource use, even under load. That combination of safety, speed, and simplicity makes it possible to test ambitious trading ideas without building a bespoke platform first.

The question now is how quickly other exchanges adopt similar tooling. If agent-friendly infrastructure becomes table stakes, the next wave of market participants may write strategies in plain language and let the CLI translate intent into action.

Topic

AI Multi-Agent Platforms

Perplexity’s Personal Computer AI Agent Arrives for macOS 13

1 day ago

Perplexity’s Personal Computer AI Agent Arrives for macOS 13

Meta acquires Moltbook to boost AI‑agent platform

2 days ago

Meta acquires Moltbook to boost AI‑agent platform

Perplexity’s AI platform uses Opus 4.6 and ChatGPT 5.2

26 February 2026

Perplexity’s AI platform uses Opus 4.6 and ChatGPT 5.2

What is this about?

  • enterprise AI automation/
  • blockchain security/
  • AI SaaS adoption/
  • crypto trading CLI/
  • paper trading simulation/
  • MCP integration

Feed

    Zombie ZIP (CVE-2026-0866) Evades 60 of 63 AV Products

    CVE-2026-0866, dubbed “Zombie ZIP,” masks a DEFLATE-compressed payload as a stored ZIP, letting it slip past most scanners. Sixty of 63 AV/EDR products missed it, yielding a 98% evasion rate on VirusTotal. Until patches roll out, users should verify ZIP sources, scan with multiple engines, avoid opening unexpected files, and use sandboxing or Windows Explorer extraction, with caution.

    Zombie ZIP (CVE-2026-0866) Evades 60 of 63 AV Products
    about 7 hours ago

    Apple orders 20 million Samsung displays for iPhone Ultra

    Apple placed an order for 20 million flexible displays from Samsung on March 12, 2026, marking the company's first foldable iPhone, the iPhone Ultra. Samsung became the sole supplier after BOE failed quality checks, with production slated for May and the first units expected in Q4 2026. Analysts say the deal could boost the global foldable market by up to 30 percent year‑over‑year.

    Apple orders 20 million Samsung displays for iPhone Ultra
    about 8 hours ago

    Parallels Desktop 19.2 runs Windows 11 ARM on MacBook Neo

    Parallels Desktop 19.2 shows Windows 11 ARM can run in a VM on the new MacBook Neo with Apple’s A18 Pro chip. VT‑EX support enables shared‑memory operation, allowing enterprises to consolidate macOS and Windows workloads on a single low‑cost laptop. The base 8 GB model caps Windows RAM at about 4 GB, limiting multitasking.

    about 10 hours ago

    Apple’s 50‑Year Journey: From Garage to Global Action

    Tim Cook’s anniversary letter marks Apple’s 50‑year milestone by celebrating the users who turned a garage prototype into habits. From the Apple I’s bare board to the iPhone, iPod, Macintosh and Apple Watch, the story shows how simple actions—recording a newborn, tracking a run, building an app—have shaped the company’s legacy and point to a user‑focused future.

    about 12 hours ago

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus

    JBL unveiled the EasySing AI karaoke microphone, bundled with the PartyBox 2 Plus, on April 5, 2026. The mic’s on‑device neural‑network strips vocals at three levels and adds real‑time pitch correction, while Voice Boost cuts background noise. With ten‑hour battery life and USB‑C pairing, it aims at the expanding U.S. karaoke market driven by AI‑enhanced, portable audio.

    JBL rolls out EasySing AI Mic with PartyBox 2 Plus
    1 day ago

    Why Does Muscle Mass Beat the Scale After 40?

    Hidden muscle loss slows metabolism; strength tests can protect health after 40

    1 day ago

    Evening Sugar Cravings: Why They’re Metabolic, Not Willpower

    Low glucose and dopamine spikes spark sweet cravings; protein curbs them

    1 day ago

    Apple’s upcoming foldable adds two‑app split-screen

    Apple’s upcoming foldable iPhone, slated for the 2026‑2027 roadmap, will run a custom OS and support a two‑app side‑by‑side view. The internal screen expands to roughly 7.6‑7.8 inches while the outer cover remains a familiar 5.4 inches, offering a pocket‑sized device that lets professionals check notes or reply to messages without switching apps. Developer tools will determine how quickly the split‑screen workflow gains traction.

    Apple’s upcoming foldable adds two‑app split-screen
    1 day ago
    7 Steps to Supercharge Windows with PowerToys v0.97.2

    7 Steps to Supercharge Windows with PowerToys v0.97.2

    Install, configure, and use PowerToys v0.97.2 to speed up Windows tasks

    1 day ago

    Apple Music Streams Full Songs Inside TikTok

    Apple Music became the exclusive provider of full‑track streaming inside TikTok on March 11, 2026. Users tap a button to play entire songs via an embedded mini‑player without leaving the app. Non‑subscribers receive a three‑month free trial, streams count toward artist royalties, and new Listening Party rooms enable real‑time co‑listening with live chat.

    1 day ago

    Xbox Full Screen Experience hits Windows 11 in April 2026

    Microsoft announced that the Xbox Full Screen Experience will be available on Windows 11 PCs starting in April 2026. The mode disables File Explorer and background services, freeing roughly 2 GB of RAM and lowering CPU load. Gamers can activate it by pressing Win+F11 or via the Game Bar, and it works with Steam, Epic, Microsoft Store, and DirectX 12 titles.

    Xbox Full Screen Experience hits Windows 11 in April 2026
    1 day ago

    Perplexity’s Personal Computer AI Agent Arrives for macOS 13

    Perplexity’s Personal Computer launches as a cloud‑hosted AI agent for macOS 13 Mac mini, acting as a desktop proxy that requires user approval for each task and includes an instant‑off button. The subscription service bundles cloud models, while open‑source OpenClaw v2026.3.11 offers a free alternative but has security flaws. Users weigh convenience versus cost and privacy.

    Perplexity’s Personal Computer AI Agent Arrives for macOS 13
    1 day ago

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs

    Nvidia and Nebius announced on March 11 a partnership to launch on‑demand AI factories built from H100 and H200 GPUs. The service bundles Nvidia AI Enterprise, NeMo and Triton, letting developers train and run large language models without buying hardware. Nebius shares jumped over 13% after the news, buoyed by its 2025 Microsoft contract.

    Nvidia, Nebius unveil AI factories using H100 and H200 GPUs
    2 days ago

    Windows 11 KB5079473 update released on March 11, 2026

    Microsoft’s March 11, 2026 Windows 11 KB5079473 update fixes sign‑in freezes, cuts wake‑from‑sleep latency on SSD laptops, and stops Nearby Sharing crashes during large file transfers. It adds an Extract‑All button for RAR/7z archives, fresh emojis, an internet‑speed taskbar widget, and native .webp wallpaper support. Install via Settings > Windows Update or a standalone download.

    Windows 11 KB5079473 update released on March 11, 2026
    2 days ago

    Klotho Clock Assays Target Biological Age in Neuro Trials

    Klotho Neurosciences rolled out two genomics assays on March 10, 2026, dubbed the Klotho Clock. The tests read cell‑free DNA methylation at the KLOTHO promoter and profile nine longevity‑linked genes, letting researchers match trial participants by biological age. Aligning groups this way may boost power in ALS and Alzheimer’s studies and cut costly trial failures.

    2 days ago

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks

    On March 8, 2026, Moskvich announced the end of 5‑sedan production after fewer than 500 units left the line, citing missed consumer‑property benchmarks for ride comfort and interior durability. Remaining cars will be sold at discounts of up to 30%. The company is now shifting resources to the 3 SUV, aiming for 50,000 units to avoid the shortfalls that halted the 5.

    Moskvich Halts 5‑Sedan Production After Failed Benchmarks
    2 days ago

    Meta acquires Moltbook to boost AI‑agent platform

    Meta announced on March 10, 2026 that it has acquired Moltbook, the Reddit‑style AI‑agent platform that amassed 1.5 million agents after its late‑January launch. The purchase follows a February security breach that exposed API keys, prompting Meta to bring the team into its Superintelligence Labs and promise secure, hosted tools for managing multi‑agent ecosystems.

    Meta acquires Moltbook to boost AI‑agent platform
    2 days ago

    Adobe Photoshop AI assistant launches for all on April 1

    On April 1, Adobe opened its Photoshop AI assistant to all web and mobile users, ending the invite‑only beta. The generative fill feature lets creators type prompts or draw arrows to remove, replace, or adjust objects, with support for iOS 15+ and Android 12+. Paid subscribers keep unlimited generations; free accounts are capped at 20 edits until April 9.

    Adobe Photoshop AI assistant launches for all on April 1
    3 days ago
    MacBook Neo Base Review: Silent, Light, and Upgrade‑Limited

    MacBook Neo Base Review: Silent, Light, and Upgrade‑Limited

    Campus test of the MacBook Neo shows all‑day battery life and silence, but limited RAM and a USB‑2 port

    3 days ago
    Loading...
banner