惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
500 AI prompts scored across 8 quality dimensions. None p...
onchainintel · 2026-04-23 · via Hacker News - Newest: "AI"

I scored 500 software engineering prompts against an 8-dimension quality rubric. Every single one failed. Average score: 13.3/80. Zero graded C or above. Here's what that looks like and why it matters for the agent economy.

Most teams are getting 10 to 30% of what their LLM model can actually do.

Not because the model is weak. Because the prompt is.

I've spent the last two weeks coring prompts. Real ones, from real builders, across real verticals, against an 8-dimension quality rubric. This weekend I ran another 500 through the scorer to pressure-test the pattern. Every dataset converges on the same number: the average production prompt scores 13 to 16 out of 80. That's 17 to 20% of what the rubric says a well-formed prompt looks like.

You're paying for a Ferrari and driving it in first gear to the mailbox.

What I Measured

Every prompt got scored on 8 dimensions. Each scored 1 to 10, totaling 80:

  1. Clarity. Is the task unambiguous?
  2. Specificity. Concrete targets, numbers, scope?
  3. Context. Background, assumptions, domain?
  4. Constraints. Limits, rules, edge cases?
  5. Output format. What shape should the response take?
  6. Role definition. "Act as a ___"?
  7. Examples. Few-shot or reference cases?
  8. Chain-of-thought structure. Reasoning scaffolding?

These aren't arbitrary. They map to what the prompt engineering literature has known for five years. PEEM, RAGAS, G-Eval, MT-Bench, the Anthropic and OpenAI prompting guides. Everyone agrees these dimensions matter. Nobody's checking whether their production prompts actually hit them.

The Data

500 software engineering prompts. Real-world format "Build X using Y."

  • Average score: 13.3 out of 80
  • 83% graded F. 17% graded D. Zero scored C or above.
  • After rewriting against the rubric: average 68.5 out of 80. A B+.
  • Average improvement: +55 points. 425% relative gain.

For context, the organic dataset. 248 prompts submitted by real users of the scoring tool, across 7 verticals, showed the same pattern. 89% graded D or F. Average before-score of 15.8/80.

Software prompts were slightly worse than average. Not better. Engineers aren't exempt from this. If anything, the "it's a technical task so it must be rigorous" assumption is the trap.

What's Actually Missing

Here's the dimension breakdown. Look at how specific the failure pattern is:

Examples scored 1.01 out of 10. Across 500 prompts that developers wrote to build production software, essentially zero included a reference case, a shape to follow, or a "here's what good looks like."

This is the dimension every prompt engineering guide tells you matters most. The gap between what engineers know they should do and what they actually write is near-total.

Constraints at 1.09. Role definition at 1.18. Clarity, the only dimension averaging above 2, sits at 3.19.

Engineers are writing English sentences with tech keywords. The structural scaffolding that turns a wish into a spec is almost entirely absent.

What This Looks Like In Practice

A representative prompt from the dataset:

"Build a real-time collaborative text editor using React for the frontend."

Scores 14/80.

It sounds specific. It names a technology. It has a verb. But the model receiving it has to guess. Collaboration for how many users? What's the sync strategy? Operational transform or CRDT? What's the latency budget? What does "done" look like? No examples. No output format. No constraints.

The rewritten version, same task, generated by the scorer to address the rubric gaps, scored 69/80. It defined the target user. It specified real-time sync requirements. It listed technical constraints including concurrent editors, conflict resolution strategy, and latency targets. It specified the response format. It included an example implementation signature.

Same end goal. Different input. 5x the quality score. The before version wastes tokens on clarification and produces generic output. The after version reads more like a spec than a prompt.

Why This Matters Now

The easy dismissal is "people should write better prompts." That misses the systemic problem.

The industry has spent years focused on output evals. Every eval platform measures what the model produced. Almost nobody measures what it was given (inputs).

That worked when prompts were single-shot, human-written, and reviewed before shipping. It stops working the moment prompts become infrastructure.

In agentic workflows where one LLM call feeds the next, a 13/80 input becomes the input to the next call, which is already compromised before you add retrieval or structured tool calls. In the last week alone, three x402-native agent systems went live that share the same input surface of natural language:

  • Daydreams Taskmarket. Agents bidding on work described in plain text.
  • PeptAI. Autonomous peptide discovery running wet-lab orders.
  • AlliGo. A credit bureau scoring agent behavior across endpoints.

If the descriptions populating those systems score like the 500 in this dataset, the agent economy is routing compute and payments on structurally empty inputs.

The output eval loop can't catch this. By the time the output looks wrong, the compute bill is already on your card.

An Infrastructure Problem

Telling engineers to write better prompts is telling engineers to write better SQL without giving them a linter. Telling teams to review prompts manually is telling them to do code review without git blame.

The answer is the same answer every other quality-assurance problem eventually reached. Measure it. Instrument it. Put the measurement in the continuous integration pipeline. Block the bad ones before they ship.

The Solution

It's already here at https://pqs.onchainintel.net.

  • Free tier: paste a prompt, get the 8-dimension breakdown plus a suggested rewrite. No signup required.
  • Paid tiers: start at $19.99/mo for unlimited private-repo CLI usage. $99.99/mo for teams with GitHub PR checks, Slack alerts, and shared dashboards.
  • x402 tier: the paid API charges $0.025 to $0.125 per scoring call in USDC on Base and Solana.

Subscription available for all tiers via Stripe.

You don't have to adopt it. But you should at minimum run 10 of your production prompts through the free tier this week and look at the numbers.

If you're shipping anything that takes prompts from humans or other agents, the input layer is measurable. Start measuring. You're leaving most of the model's capability on the table, and you don't have to.

Do all of your friends in Developer Relations, Developer Advocate or Developer Experience roles working with AI pipelines a favor and share this with them. AI Data quality public service announcement. These are the builders that need it most!