SShortSingh.
Back to feed

Three authors dominate Claude Code's top 10 most-installed skills leaderboard

0
·1 views

The ten most-installed Claude Code skills belong to just three authors: Matt Pocock with five entries, Vercel Labs with four, and Anthropic — the format's creator — with one, according to install data from Skillselion as of July 29. Vercel Labs leads overall with its find-skills tool topping the chart at over 2.7 million installs, functioning as a discovery layer that helps users install other skills. Matt Pocock's dominance reflects an author-loyalty pattern, where developers adopt his entire engineering workflow at once, evidenced by his setup skill — which only prepares a repo for his other tools — nearing 500,000 installs. Anthropic's sole entry, frontend-design, ranks second with over 715,000 installs, meaning the open format's creator has been out-shipped on its own platform by independent contributors. Positions 11 through 25 are occupied by a cluster of Lark skills with near-identical install counts, suggesting bundle distribution rather than individual developer adoption.

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 ·

New S3-FIFO algorithm hits 15.5M ops/sec in Node.js, challenging LRU cache dominance

A developer has built a high-performance Node.js cache library called s3fifo, implementing the S3-FIFO algorithm — which uses three simple FIFO queues — instead of the widely used LRU approach. The library achieves 15.5 million operations per second by eliminating garbage collection pressure through flat parallel arrays and zero runtime object allocations. S3-FIFO addresses a key weakness of LRU caches known as cache pollution, where one-time access patterns such as database scans or crawler traffic can displace frequently used data. Low-level V8 optimizations, including bitwise metadata packing and power-of-two ring buffers to avoid costly modulo operations, contribute to the performance gains. The project raises questions about whether developers should re-evaluate their default reliance on established cache packages like lru-cache.

0
ProgrammingDEV Community ·

Pictovap Seeks Three First-Time Contributors for WordPress Image Placement PRs

Open-source project Pictovap is inviting developers to submit three small, beginner-friendly pull requests focused on WordPress and Gutenberg image placement. The tasks require no API keys, no live WordPress installation, and no access to private content, lowering the barrier for new contributors. The opportunity is well-suited for those with skills in Python, WordPress blocks, Markdown publishing, CMS automation, or image metadata. Interested developers can find details and get started via the project's GitHub Discussions page.

0
ProgrammingDEV Community ·

How to Configure MySQL Read/Write Splitting in Magento 2 for Better Scalability

Magento 2 stores under heavy traffic often face database bottlenecks caused by read and write queries competing for connections on a single server. The solution is MySQL read/write replication splitting, which routes SELECT queries to replica databases while keeping writes on the primary server. Magento 2 has native support for this via a 'default_read' connection entry in the app/etc/env.php configuration file. Once configured, read replicas can be scaled horizontally as traffic grows, reducing load on the primary database. Proper setup also requires configuring MySQL replication itself and monitoring for replication lag in production environments.

0
ProgrammingDEV Community ·

Usage-Based Pricing Transfers Cost Uncertainty From Vendors to Customers

Usage-based pricing, common in SaaS and AI products, charges customers based on actual consumption such as API calls or compute time, rather than a fixed fee. While vendors benefit from revenue that scales predictably with usage, customers must now accurately forecast their own consumption or face surprise bills. Usage spikes are often triggered by bugs, misconfigurations, or unplanned traffic surges — scenarios that generate extra costs without delivering extra value to the customer. Under flat pricing, vendors would have absorbed such variability through averaged-out tier pricing, shielding customers from these fluctuations. The unpredictability also creates organizational friction, complicating budget planning and straining finance teams even when the underlying product is performing well.