SShortSingh.
Back to feed

OpenClaw: How a Lobster-Branded AI Agent Became a Capital-Fueled Hype Bubble

0
·4 views

OpenClaw, an open-source AI agent project codenamed 'Lobster,' surged to 200,000 GitHub stars within a month of its early-2026 launch, setting a reported record for open-source project growth. The project originated as a personal automation tool by developer Peter Steinberger, who was acqui-hired by OpenAI in February 2026, after which the project was handed to an independent foundation with OpenAI as a sponsor. Technically, OpenClaw functions only as a message-routing gateway between users and third-party AI model APIs, with no proprietary intelligence, no original reasoning framework, and multiple disclosed security vulnerabilities including a high-severity remote code execution flaw. Despite its lack of core technology, the project triggered a broad market frenzy, with related Chinese A-share and Hong Kong stocks surging sharply and over 10 billion yuan reportedly flowing into the AI agent sector within weeks. Critics argue that OpenClaw's true value has been purely as a marketing vehicle, benefiting cloud providers, hardware vendors, and investors while delivering little practical utility to end users.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Practical SQL Guide: Building and Querying a School Database with PostgreSQL

A data analyst demonstrates how to design and query a relational database for a fictional institution called Greenwood Academy using PostgreSQL. The project covers three core SQL language categories: Data Definition Language (DDL) for creating and modifying table structures, Data Manipulation Language (DML) for inserting and updating records, and Data Query Language (DQL) for retrieving data. Three tables — students, subjects, and exam_results — were created within a dedicated schema to keep the database organized. The guide also highlights best practices such as prefixing table names with the schema name to avoid misdirected table creation. Additional topics covered include filtering results, using specialized operators, and writing conditional logic with CASE WHEN statements.

0
ProgrammingDEV Community ·

Developer's compression tool scored 0/24 on CSV readability with GPT-4o-mini

A developer testing ctxfold, a lossless compression format designed for LLM prompts, discovered that its CSV encoder made data completely unreadable to AI models. In benchmark tests, GPT-4o-mini answered zero out of 24 lookup questions correctly from folded CSV, compared to a perfect score on raw CSV. The root cause was that the encoder stripped shared value prefixes into a header, forcing the model to reconstruct values through indirection rules it could not reliably follow. Switching to the more powerful GPT-4o improved scores only marginally and inconsistently, confirming the format itself was the problem. Rather than patching the encoder, the developer reclassified CSV folding as a pipeline-only feature in v0.1.4, meaning compressed CSV must be decompressed before being passed to a model.

0
ProgrammingDEV Community ·

Developer Runs FLUX AI Image Model Locally on an RTX 4070 Using Quantization

A developer has shared a workflow for running the FLUX image generation model locally on a consumer-grade RTX 4070 GPU, a card with 12GB of VRAM that would normally struggle with the model's 24GB requirements. The approach relies on 4-bit NF4 quantization via the bitsandbytes library to compress model weights, combined with LoRA fine-tuning to train on custom artwork without modifying the base model. Additional techniques such as embedding caching, lower training resolution, and gradient checkpointing help keep memory usage within the card's limits. The developer trained the quantized model on 14 personal artworks paired with a metadata file to generate images in their own artistic style. The method, originally demonstrated by YouTuber Richard Aragon via a Google Colab notebook, is also reported to work on the less powerful RTX 4060.

0
ProgrammingDEV Community ·

OpenTofu and Terraform Have Diverged Significantly by 2026, Developers Warned

OpenTofu originated as a community fork of Terraform after HashiCorp relicensed Terraform under the Business Source License (BSL) in 2023, with the fork landing under the Linux Foundation as an MPL-2.0 open-source project. While both tools initially shared the same HCL syntax, state file format, and core workflow, they have been diverging with each release since the split. OpenTofu has introduced features absent in Terraform, most notably native state and plan file encryption configurable directly within the tool, reducing reliance on backend-level security measures. It has also added early variable evaluation, allowing variables and locals to be used in backend configurations and module sources that previously required static values. Teams treating the two tools as interchangeable risk compatibility issues, as configurations leveraging OpenTofu-specific features will not parse correctly in Terraform.