SShortSingh.
Back to feed

prompts.chat Grows Into World's Largest Open-Source Prompt Library With 167K Stars

0
·1 views

What began two years ago as a simple GitHub list called 'Awesome ChatGPT Prompts' has evolved into the world's largest open-source prompt library, boasting over 167,000 stars and 21,600 forks. Founded by Fatih Kadir Akın, prompts.chat is now a full Next.js web application supporting browsing, sharing, and collecting community-curated prompts compatible with all major LLMs including ChatGPT, Claude, and Gemini. The project has gained notable academic and media recognition, being referenced by Harvard University, Columbia University, and Forbes, alongside more than 40 academic citations. A newly added MCP server allows coding agents to retrieve prompts at runtime by integrating directly with tools like Claude Code and Windsurf. The platform can also be fully self-hosted via Docker, offering organizations GDPR-compliant, internal prompt management with complete data sovereignty.

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 ·

Developer Uses Response Size Fingerprinting to Identify Real MCP Tool Callers

Ofir Baranes, an autonomous AI agent operator, devised a method to identify which clients genuinely invoked tools on his MCP server by analyzing HTTP response sizes logged in nginx. Since each MCP request type produces a distinct response size, only calls returning 34,264 bytes confirmed actual tool invocations rather than mere capability checks. On September 23, two crawlers — BrickBlueBot and SaSame-MCP-Audit — were verified as having made real tool calls, distinguishing them from several other bots that stopped at the tools/list stage. A later app log recorded two additional tool invocations with no corresponding nginx entries, leaving those calls unexplained. Baranes notes that two corroborated real-world tool calls from identifiable crawlers is meaningful but not yet conclusive proof of broader adoption.

0
ProgrammingDEV Community ·

Why Proper DNS Setup Is Critical for SaaS Email Deliverability

Misconfigured email DNS records are a common but costly oversight for SaaS founders, often causing legitimate emails to land in spam or leaving domains vulnerable to spoofing attacks. Emails sent by a platform typically fall into three categories: direct, transactional, and marketing, each with different deliverability risks. Experts recommend separating marketing emails from transactional ones using distinct subdomains to protect sender reputation. Key DNS records involved include MX records for routing incoming mail, SPF records for authorizing sending servers, and additional authentication mechanisms to prevent impersonation. A developer with five years of SaaS experience shared these configuration lessons to help others avoid the deliverability pitfalls they encountered early on.

0
ProgrammingDEV Community ·

Software Engineer Tracks Sleep and Mood for 90 Days While Testing Chakra Crystals

A backend engineer with eight years of experience spent 90 days systematically tracking sleep scores, mood ratings, and focus hours while using chakra crystals, after his partner introduced him to the practice. He spent $103 on a starter kit and individual stones, testing each one in roughly two-week intervals following the traditional chakra order. While some metrics improved — such as his sleep score rising from 71 to 74 and panic wakeups decreasing — he noted that behavioural changes, like reduced pre-bed phone use, likely explained much of the improvement. A side project he had procrastinated on for eight months was finally completed during the experiment, though he attributed that more to daily accountability logging than to any crystal. He concluded the experiment was an n=1, unblinded self-study with significant confounders, framing it as a personal diary with charts rather than scientific evidence.

0
ProgrammingDEV Community ·

Vite+ Chapter 4: How Vite+ Handles Monorepos With Smart Task Caching

Vite+, a developer toolchain built on Vite, introduces a feature called Vite Task designed to manage dependency-aware task execution in monorepos. As projects grow to include multiple apps and shared packages, running every build, test, and lint task after each change becomes inefficient. Vite+ addresses this by mapping dependency relationships between packages, so only affected tasks are triggered when a specific package changes. The tool also supports task caching, preventing redundant work when inputs have not changed. This makes Vite+ particularly useful in large-scale repositories where dozens of packages and hundreds of tasks must be coordinated efficiently.