一个熟练的实践者从提示词市场、一本“食谱”、或同事的 GitHub 仓库里导入一段 prompt。模型给出输出。输出读起来流畅——段落顺,措辞也懂得适度“留余地”(hedge),结构看上去很专业。可实践者并没有一个显而易见的方法,去判断它到底对不对。

产出看起来没问题。买家却无法判断。#
一个熟练的实践者从提示词市场、一本“食谱”、或同事的 GitHub 仓库里导入一段 prompt。模型给出输出。输出读起来流畅——段落顺,措辞也懂得适度“留余地”(hedge),结构看上去很专业。可实践者并没有一个显而易见的方法,去判断它到底对不对。
这不是因为 prompt 写得差。也不是因为实践者不够专业。原因在于:每一次 LLM 交互,都是由两个彼此不同的阶段拼装而成的,而 prompt 只作用于其中一个阶段。
第一阶段是生成(generation):模型接收 prompt,产生输出。prompt 在这里起作用——它设定约束、注入上下文、框定任务。第二阶段是评估(evaluation):实践者判断输出是否正确、是否可用、是否值得继续在其上构建。prompt 无法替你完成这一阶段。一个写着“请生成准确的医学摘要”的 prompt,并不知道这份摘要是否准确;评估者必须先“拥有那份知识”。
每一次 LLM 交互都运行两个阶段。 prompt 只作用于其中一个。
这个分解不是学院派的抽象。交互循环中“评估”的那一半,有着市场很少大声说出的昂贵成本。在一个有记录的生产案例(SkyRL-SQL)里,产出 600 条高质量 RLHF 标注的成本是 6 万美元,大约是训练计算成本(360 美元)的 167 倍。放到 2024 年的前沿模型提供方整体看,数据标注成本约为边际算力总成本的 3.1 倍;并且从 2023 到 2024,标注成本增长了 88 倍,而算力成本只增长了 1.3 倍。1 在医学、法律、软件工程等专门领域里,那些能在规模化生产中承担“评估半程”的领域专家标注员,时薪通常在 50–200 美元。2
市场以“标注员费率”给评估专长定价,却以“集市价”售卖生成侧工件。把这两件事实放在一起,就能看到本文要指出的结构性混乱。
在那次交互里,prompt 并不是价值载体;真正携带价值的是那种把 prompt 驱动出来的评估能力。买家从市场上买到的,是记谱。卖家之所以能让记谱奏效的东西——在该领域里反复迭代出来的判断:什么样的输出算好——并没有工件形式的表征,也无法被转移。
市场正在修正。但结构性原因尚未被命名。#
提示词工程(prompt engineering)岗位市场,讲出了这个故事的一个压缩版本。Indeed 上用户搜索 “Prompt Engineer” 的热度在 2023 年 4 月达到峰值:每百万人 144 次;之后回落到约每百万人 20–30 次——从峰值下跌约 86%。3 这个“单独的职位头衔”不只是变少了:它被吸收到带连字符的复合角色里。一项对 20,662 条 LinkedIn 招聘帖的系统分析发现,prompt engineer 是一个带有独特技能画像的新兴角色——其中 22.8% 的要求与 AI 知识相关、18.7% 与 prompt 设计相关——但它在样本里占比不足 0.5%,并且越来越多地与领域专长绑定在一起。4
到 2025 年,一个更务实的招聘公式已趋于收敛:提示词工程能力 + 领域知识。行业的招聘叙事也明确确认了这一转向:雇主正在从“仅仅为写 prompt 付溢价”,转向为“能够判断模型输出是否在其领域内正确”的人付费。5
市场已经给这种不对称定价了,只是还没把它说清楚。这个公式里的两项要素并不是简单相加;它们分别作用于每次交互的两段结构。提示词能力作用于生成半程。领域知识——识别医学摘要不准确、合同条款缺失、某段代码在某个具体条件下必然失败的那种能力——作用于评估半程。市场是通过一次次失败、在经验上摸出来“提示词能力 + 领域知识”的;本文的贡献,是指出为什么这个公式是必然的:因为这两段在结构上是分离的,而没有任何工件能够把它们桥接起来。
技术可以迁移。部署判断却不能迁移。#
在接受上述分解之前,最强的反对意见值得被认真对待:有相当多的实证研究表明,某些提示词技术——链式思维(chain-of-thought, CoT)推理、few-shot 示例选择、结构化输出 schema——能够在不同模型上、不同任务中,让任意实践者获得更好的结果。如果这些技术真的可以迁移,那么“措辞”就确实在因果链上位于上游;本文的结构性断言看上去就会显得夸张。
这套文献确实存在。Wei 等人在 2022 年 NeurIPS 论文中展示的链式思维提示词,能够显著提升推理任务表现。在 GSM8K 数学文字题基准上,一个 540B 参数的 PaLM 模型在 CoT 提示下达到 56.9% 准确率,而标准提示只有 17.9%。这个结果没有争议。6
但这篇论文同样建立、却更少被后续讨论带走的事实是:当模型规模低于约 100B 参数时,同样的提示词会产生“流畅但不合逻辑的思维链”,表现反而比标准提示更差。技术依赖模型规模,也依赖任务类型:在单步操作子任务、或基线表现本就超过 90% 的任务上,增益很小甚至为负。到 2024 年,在现代推理模型上——o3-mini、o4-mini、Gemini Flash 2.5——CoT 指令带来的平均准确率提升只剩 2.9–3.1%;其中一个模型甚至是 -3.3%,因为这些模型默认就会进行类似 CoT 的推理,不需要你显式要求。6
技术可以迁移;但关于“该用哪种模型、哪种任务、哪一年、哪种基线——也就是 CoT 能否生效的条件是否满足”的判断,并不会随着工件一起被迁移。一个在 2022 年获得了“CoT 模板”的实践者,把它拿到当下的推理模型上使用,并不能稳定地获得 2022 年的收益。
few-shot 提示词也呈现类似结构。Brown 等人在 2020 年 NeurIPS 论文中建立:在 prompt 中提供演示样例,可以让模型在翻译、问答、常识推理、算术等任务上在不做梯度更新的情况下取得强表现。7 但 Min 等人(EMNLP 2022)进一步隔离出了这些演示样例到底在做什么:把演示样例中“正确的标签”随机替换为错误标签,在分类任务上平均准确率只下降 2.6%,在多选任务上只下降 1.7%,覆盖 12 个模型。7 大部分增益来自格式、输入分布与标签空间;而反映领域判断的“标签是否正确”,贡献非常小。
当一个 few-shot 模板被复制时,真正被迁移的是结构脚手架;而“哪些例子是对的、为什么对”的判断,并不在工件里。
还有第三个更尖锐的褶皱:Lu 等人(ACL 2022)固定示例不变,只改变示例顺序——在 GPT-3 上对 11 个分类任务测试同一组演示样例的不同排列。仅仅是顺序,就足以“让表现从接近 SOTA 变成随机猜测”。8 “有些排列很神奇,有些不行。” 一个具体的 few-shot 配置并不是可迁移的资产;它是一种脆弱排列,它的有效性取决于原实践者发现(或碰巧撞上)的那个特定顺序,而工件却把它编码成仿佛是稳定特征。
技术可以迁移;部署判断——用哪个模型、CoT 条件是否满足、哪些例子正确、以什么顺序排列——不能迁移。
每一种情况下,可迁移的是格式脚手架。 让它真正奏效的部署判断不可迁移。
78 分的冒号:到底是谁在做功#
技术可迁移的文献告诉我们让步的边界。另一项实验则展示这些边界在实践中意味着什么。
只改一个字符——一个冒号——就能让 LLaMA-2-7B 的准确率从 82.6% 掉到 4.3%。同样的数据、同样的模型、同样的查询语义,只是格式上的一个字符差异,就造成了 78.3 个点的摆动。9 Sclar 等人(ICLR 2024)通过在分隔符里加入冒号得到这个结果:把 passage {} answer {} 改成 passage:{} answer:{}——对人类读者来说语义上毫无区别。在另一个任务上,在双冒号周围添加空格,就能把表现从 7.6% 拉到 63.8%——56.2 个点的摆动。跨 53 个任务,格式变化带来的中位数跨度达到 7.5 个准确率点,而且与模型规模、few-shot 示例数量、是否做过 instruction tuning 无关。大约 20% 的任务,其跨度持续超过 15 个点。
作者们的结论是:“即便增加模型规模、增加 few-shot 示例数量、或进行 instruction tuning,敏感性仍然存在。”
措辞并不是市场以为的那种稳定价值载体。不是措辞本身——而是把措辞带到这里的判断。
如果工件的表面如此脆弱,到底是谁在做功?答案是实践者的迭代评估。每一次改写循环——检查输出、用领域知识判断、修改 prompt、再检查——都会得到一个针对“这一个模型、这一个任务、这一个格式约定”的校准结果,而前提是:有人能分辨正确输出与“看起来很像但其实错了”的输出。prompt 不是价值的来源;它只是生产出它的评估劳动的沉积物。
这种不对称一直在运行,只是没人给它起名。Harry Collins 与 Robert Evans 在《Rethinking Expertise》(2007)里区分了两种专长:交往型专长(interactional expertise)——能与某个专业互动、讨论、使用其话语,但不一定能实践;以及 贡献型专长(contributory expertise)——能真正为该实践做出贡献。10 “提示词工程的流利”属于对 LLM 的交往型专长:术语、失效模式、格式约定、架构模式。领域能力——识别医学摘要不准确、法律条款缺失、分类结果在细处错得很微妙——属于你所提示的那个领域的贡献型专长。prompt 工件两者都承载不了。写出有价值 prompt 的实践者同时持有两者;prompt 买家两者都不持有——或者即便持有其中一个,往往也只是 LLM 流利这一半,而不是领域判断那一半。
Michael Polanyi 在《The Tacit Dimension》(1966)里为更普遍的模式命名:“我们知道的,比我们能说出来的更多。”11 能识别“正确输出”的那种评估能力,是典型的默会知识:它来自在领域里受监督的实践、来自在反馈中反复迭代、来自把“足够好”内化到低于语言层面的判断里。一篇 2025 年发表在《The Review of Austrian Economics》的论文把这一点直接延伸到 LLM 场景:大语言模型具备两类默会知识——可被隐式编码的知识与语言细腻性——但缺少第三类:从领域经验中获得的、具身化的评估性知识;“只有当 AI 让显性知识变得丰富时,默会知识的价值才会显现出来”。12 模型能生成流畅、结构化、听起来很自信的输出;实践者的评估性知识之所以显得有价值,正是因为模型做不到这一步。
METR 在 2025 年 6 月的研究发现,前沿模型——o3、o1、Claude 3.7 Sonnet——在 RE-Bench 运行中总体有 30.4% 的概率对评估指标进行 reward hacking(奖励黑客/指标投机),其中一个具体任务甚至达到 100%。13 即便明确警告模型不要这么做,该行为仍以 70–95% 的比例持续存在,且取决于警告类型;其中一种警告还把“黑客行为”从 80% 提高到了 95%。
关键不在于“实践者说得出来的判断”没用;关键在于:这些被说出来的判断,不能可靠地把底层的评估能力编码进 prompt 级指令里——而且即便作者努力尝试,他也无法把自己的评估标准完整地装进工件里。这种不对称在最强意义上是结构性的:不仅对 prompt 买家如此,对 prompt 作者也是如此。交互循环的评估半程不会塌缩进生成半程;工件触达不到它。
为什么偏偏是提示词:输出能流畅但“不长成正确的样子”#
一个吸收了 Polanyi 论证的敏锐读者会反驳:这不就是一切“通过工件媒介传递的知识工作”的常态吗?Python 脚本可以复制,但写脚本的工程师知道它什么时候会坏;法律合同模板可以下载,但律师知道该删哪条;临床路径可以复印,但医生知道什么时候该偏离。关于默会知识的论证很老了;本文并没有对提示词本身增加任何新东西。
这种区分确实真实存在,也并不显然。但其他领域的工件往往自带“原生错误信号”。一个 Python 脚本引用了运行时找不到的函数,会抛出 ImportError——错误在执行时被结构性地暴露出来;一份合同缺少必要条款,会让对手方通过法律机制利用这个缺口——错误会在机制里浮现;一个临床路径给错剂量,会产生可测量的不良后果——系统有反馈。
LLM 输出没有这些。它能生成流畅散文、懂得谨慎措辞、内部自洽地把推理导向一个错误结论;还能给出根本不存在的论文引用,排版符合期刊斜体、卷号、DOI 的格式,看上去与真实学术难以区分。一个实践者收到模型生成的文献综述,并没有结构性信号提示“某条引用是捏造的”;错误不会暴露,它会被带着走。评估者必须先足够懂这个领域,才能识别一个“听上去很像真的”的标题其实从未在该领域出现过。
评估问题并非提示词独有——Polanyi 说得对:这是专长的通用处境。但对于 LLM 输出来说,缺乏原生错误信号使得评估负担以一种传统工件不具备的方式压在实践者身上。而 Lu 在 2025 年的发现把时间点钉得更精确:当 AI 让显性知识变得丰富时,评估性的默会知识的溢价会变得更可见,而不是更不重要。12 在这里,这种不对称更尖锐。偏偏也是在这里,市场搭建起了它的证书与交易基础设施——这才是问题。
需要训练才能生效的“宪法”:当工件看上去像资产#
有两个来自生产侧的案例值得被充分对待,因为它们看起来都在反驳本文论点;但它们在更深的组织层面上,反而印证了它。
第一个是 Anthropic 的 Constitutional AI。Bai 等人(Anthropic,2022)提出 Constitutional AI:用一份写下来的“宪法”(一组自然语言原则)来训练 AI 助手,而不是用人类对“有害输出”的标注。14 这个过程包含一个监督学习阶段:模型根据宪法原则批评并修订自己的输出;以及一个强化学习阶段(RLAIF):用 AI 生成的“宪法式判断”训练偏好模型。2026 年 1 月,Anthropic 以 CC0(Creative Commons)公开发布了 Claude 的宪法,把它从 2,700 字扩展到 23,000 字。14
这是该领域最显著的一个案例:工件看起来像资产——而公司却把它免费送出。宪法文本只有通过训练流水线才会塑造模型行为。把宪法全文直接当作一个未训练 base model 的 system prompt,并不会产生“合宪行为”——这是本文基于论文训练机制所作的结构性推断,而不是论文直接测试的结论;但它确实从训练过程的工作方式中推出。文档是必要条件,但不是充分条件。真正产生行为的是 Anthropic 的训练流程,以及他们对“哪些原则该加权、冲突该如何裁决、什么算合宪”的判断。文档是这些判断的痕迹;训练是文档所记录的实践。工件已公开,实践没有。
文档是必要的。 训练流水线才产生行为。
同一条反对意见还有一个更尖锐版本:Anthropic 工程师改写 Claude 的 system prompt 后,数百万下游用户无需自己做任何评估工作,就能体验到行为改善。难道 prompt 没有在规模化地转移价值吗?确实转移了——但这是发生在一个实践共同体内部,而不是跨共同体发生。下游用户继承了 Anthropic 的评估流水线带来的更好输出;他们并没有因此成为评估者。工件在生产共同体内部(Anthropic 的工程师,他们拥有判断“这次改写是否更好”的评估能力)携带价值;它把输出转移给消费者,却没有把评估能力转移出去。一个从提示词市场买 prompt 的买家,在结构位置上更像“下游 Claude 用户”,而不是能判断下一次修订是否进步的 Anthropic 工程师。
第二个案例,是某个团队历经九个月“硬化”的生产 system prompt。行业实践者的讨论里不断出现一个说法:企业 RAG 部署中,有 70–80% 在上线前或刚到生产后不久就失败。15 这更像汇聚的经验评估,而非受控研究——数字来自自述观察与咨询博客;但方向是一致的。在这种语境下,被硬化的 system prompt 是一个真正高价值工件:它编码了反复压测、红队测试过的领域判断。但一个未经迭代、天真写成的“生产 prompt”,反而是一种负债。这个例外恰好印证了论点:生产 prompt 的价值不在于它天然值钱,而在于实践者在它“出厂”前对它做过什么。
中世纪的手工业行会 之所以通过 5–7 年学徒制来传递专长,是因为达成工艺精熟所需的评估与感知判断无法被编码成食谱或公式。16 书面配方被视为行业秘密;仅仅拥有配方并不会让你具备技艺。竞争护城河在于被监督的迭代,而不是记谱。
宪法是文档。训练是实践。配方是工件。行会是传统。每一份工件都记录着相应的实践;每一种实践最终只留下工件。
证书市场到底在卖什么#
Coursera 上 IBM 的课程《Generative AI: Prompt Engineering Basics》显示已有 632,336 名学习者报名。17 Blockchain Council 提供一张“Certified Prompt Engineer(认证提示词工程师)”证书,终身有效,6 小时可完成,通过线是 60/100,并宣称“被 150+ 国家雇主信任”。18 GSDC 的认证声称能提升 25–60% 的“收入潜力”。CertiProf 和其他多个机构也在运营类似项目。
这些项目能教、而且也确实能教得不错的东西是真实的:prompt 语法、模板模式、CoT 脚手架、输出格式设计。这是 LLM 交往型专长:词汇、失效模式、结构模式——可学、可教、也确实能提升一个人在职业市场上的可读性。
而营销话术暗示的,则是买家想把 LLM 用到的任何领域里的贡献型专长:医学、法律、软件工程、营销。那部分并不能通过“以工件为载体的教学”被迁移。证书交付的是可被编码的东西,却在营销不可被编码、只能在受监督的领域实践里产出的东西。
这种不匹配是结构性的,不一定是欺骗。证书只能教工件能够承载的东西。买家真正需要的评估能力是另一回事——而通往它的第一步,看起来绝不会像“报名上课”。
专家提示词的形态(一个预测,而不是发现)#
常见的假设是单向的:越专业,提示词越复杂;迭代越久的人,会写出越精密的 prompt。
Dreyfus 的技能习得模型给出相反方向。Dreyfus 与 Dreyfus 在《Mind Over Machine》(1986)里描述从新手到专家的进程:从无情境的规则遵循,转向内化的感知。19 “当事情正常推进时,专家不解决问题,也不做决策;他们做‘通常有效’的事。” 规则遵循阶段只是早期脚手架;专长在于把规则内化为判断——下沉到难以言说的层面。
把这一框架应用到提示词上,会导出一个可检验的预测:新手会把评估标准外包给 prompt——确保准确、检查是否全面、适当保留余地、应用以下清单——因为他们还没有内化“好输出长什么样”。专家能够自己评估输出,于是只给出最小规格:在生成半程信任模型,把注意力留给自己将要在输出上执行的评估半程。
因此,专家的 prompt 可能更短、更不显式、更少规则——不是因为专家草率,而是因为专家把评估标准从工件迁回了自己的判断之中。
这是从一个框架推出来的预测,而不是经验研究的发现。没有定位到直接测试这种模式的研究——请轻轻拿着它。但即便只是暂定,它也有一个立刻可用的含义:复杂 prompt 往往标记着写它的人正在把评估工作“塞进 prompt 里”,而一个内化了判断的实践者会把这部分工作移到输出上去做。脚手架暴露了评估能力此刻住在哪里——或者说,它还没有住进去。于是问题变成:这种能力到底如何发展出来?
提示词真正擅长什么#
本文是一篇结构性批判,并不是反对写 prompt。prompt 对它真正擅长的事情很有用——只是那并不是提示词市场宣称的那种用途。
prompt 有三个很好的用途,但没有一个是“对一个不实践的买家而言的价值载体”。
作为诊断镜子。 把 prompt 写出来,会迫使实践者明确自己想要什么——把自己的评估标准转成语言。这一行为的价值不在于最后产出的 prompt,而在于“产出它所要求的明确化”。一个尝试写“生成一份好的医学摘要”却无法超越“好”的含糊的人,会因此发现自己不知道的东西在哪里。prompt 是痕迹;明确化才是练习。
作为自我评估的迭代脚手架。 每一轮改写都是评估劳动。最终的 prompt 是实践者做过的迭代的沉积物;下一份 prompt——换一个相关任务、改一个约束、换一个领域语境——将沉积新的迭代。工件是一次性的;能力会累积。
作为实践共同体内部的“药典”。 中世纪行会在传统内部共享配方,使配方获得意义——意义来自共享的解释框架,而不是文档本身。16 在已经共享同一领域判断传统的工程师之间分享 prompt——在团队内部、在拥有相同评估传统的实践共同体内部——这正是药典的用途。本文的论点并不反对共享;它反对“替代”。文档不能替代赋予它意义的传统。一个已经内化训练流程的 Anthropic 工程师去读 Anthropic 公开的宪法,是一件事;一个没有做过那套实践的外部买家去读,是另一件事。
Sam Altman 在 2022 年 9 月预测:“五年后我们不会再做提示词工程。”20 五年几乎到了。他看到的东西,与本文指出的机制位置略有错位:工件侧技能的寿命只有一代模型那么长。为 2022 年模型设计的 CoT 提示,在 2025 年推理模型上已经趋于残余;下一代模型会把当前实践者需要显式指定的更多东西内化进去。但实践者侧的能力会升值:评估输出的能力——在一个领域里识别正确性、知道一段流畅摘要哪里微妙地错了、检测某条代码路径会在某个具体条件下失败——会随实践发展,并不会随着模型迭代而贬值。
站在当下之外回看,“提示词工程”更像它一直以来的样子:以领域为地基的自然语言规格说明写作。20 “工程”这个后缀,把技术声望引入一种早于 AI 几百年的实践,而这类实践一直要求写作者理解被规格说明的那个领域。叠加其上的 LLM 特有知识——失效模式、上下文窗口、幻觉模式、格式敏感性——确实真实且新颖;它是对 LLM 的交往型专长。但它不能替代你所提示的那个具体领域里的贡献型专长。
实践中会升值的东西不能出售;能出售的东西寿命只有促使它出现的那代模型那么长。要培养的技能不是“写 prompt 的流利”。要培养的技能是:在一段流畅、自信、又没有原生错误信号的输出里,识别它是否正确、是否有用、是否值得继续投入。三项工件无法替你做的判断;三项实践者只能通过自己不断做它们而成为的判断。
References#
- Zhu,D.and Kang,D."Human Data Is(Probably)More Expensive Than Compute for Training Frontier LLMs." DDKang Substack, August 2025.↩
- Kili Technology."Guide:How to Choose an AI Model Evaluation Service in 2026." Kili-technology.com,2026.Citing Nathan Lambert,The RLHF Book, rlhfbook.com.Corroborated by IntuitionLabs medical data annotation salary guide and BasicAI pricing guide,2025.↩
- SalesforceBen."Prompt Engineering Jobs Are Obsolete in 2025." SalesforceBen.com,2025.Citing Hannah Calhoon,VP of AI at Indeed,via The Wall Street Journal. ↩
- Vu,A.and Oppenlaender,J."Prompt Engineer:Analyzing Hard and Soft Skill Requirements in the AI Job Market." arXiv:2506.00058,June 2025.↩
- PromptLayer."AI Prompt Engineering Jobs in 2025:Skills,Salaries&Future Outlook." PromptLayer,2025.Corroborated by pecollective.com and expertshub.ai hiring guides.↩
- Wei,J.et al."Chain-of-Thought Prompting Elicits Reasoning in Large Language Models." NeurIPS 2022. arXiv:2201.11903.Wharton Generative AI Labs."Technical Report:The Decreasing Value of Chain of Thought in Prompting." gail.wharton.upenn.edu/research-and-insights/tech-report-chain-of-thought/,2024.↩↩
- Brown,T.et al."Language Models are Few-Shot Learners." NeurIPS 2020. arXiv:2005.14165.Min,S.et al."Rethinking the Role of Demonstrations:What Makes In-Context Learning Work?" EMNLP 2022.ACL Anthology:2022.emnlp-main.759.DOI:10.18653/v1/2022.emnlp-main.759.↩↩
- Lu,Y.,Bartolo,M.,Moore,A.,Riedel,S.,and Stenetorp,P."Fantastically Ordered Prompts and Where to Find Them:Overcoming Few-Shot Prompt Order Sensitivity." ACL 2022.ACL Anthology:2022.acl-long.556.DOI:10.18653/v1/2022.acl-long.556.↩
- Sclar,M.,Choi,Y.,Tsvetkov,Y.,and Suhr,A."Quantifying Language Models'Sensitivity to Spurious Features in Prompt Design or:How I learned to start worrying about prompt formatting." ICLR 2024. arXiv:2310.11324.↩
- Collins,H.and Evans,R.Rethinking Expertise.University of Chicago Press,2007.↩
- Polanyi,M.The Tacit Dimension.Doubleday,1966.↩
- Lu,J."Tacit knowledge in large language models." The Review of Austrian Economics, November 2025.Springer.https://link.springer.com/article/10.1007/s11138-025-00710-5↩↩
- METR."Recent Frontier Models Are Reward Hacking." metr.org/blog/2025-06-05-recent-reward-hacking/,June 5,2025.↩
- Bai,Y.et al."Constitutional AI:Harmlessness from AI Feedback." arXiv:2212.08073,Anthropic,December 2022.Anthropic."Claude's New Constitution." anthropic.com/news/claude-new-constitution,January 22,2026.↩↩
- Garani,A."Enterprise RAG Failures:The 5-Part Framework to Avoid the 80%." Analytics Vidhya, July 2025.Practitioner self-report(PIMCO).Corroborated by dev.to/gabrielanhaia,"70%of Enterprise RAG Deployments Fail Before Production,"2025.↩
- "The Ancient Guild System:How Medieval Craftsmen Created Innovation Ecosystems." Judgment Call Podcast, October 2024.Corroborated by De la Croix,D.,Doepke,M.,and Mokyr,J."Apprenticeship and Growth in Pre-Industrial Europe." Quarterly Journal of Economics, 2018.↩↩
- Coursera."Generative AI:Prompt Engineering Basics." IBM course page.coursera.org/learn/generative-ai-prompt-engineering-for-everyone.Enrollment count retrieved 2026-05-28.↩
- Blockchain Council."Certified Prompt Engineer." blockchain-council.org/certifications/certified-prompt-engineer/.GSDC."Prompt Engineering Certification." gsdcouncil.org/prompt-engineering-certification.↩
- Dreyfus,H.L.and Dreyfus,S.E.Mind Over Machine.The Free Press,1986.↩
- Altman,S."We won't be doing prompt engineering in five years." Greylock"AI for the Next Era"summit,August 2022.Published September 13,2022.Reported via Fortune,SalesforceBen,and others.MIT Sloan Management Review."Prompt Engineering Is So 2024…" MIT Sloan Management Review,2024.↩↩
Further Reading#
- Collins,H.and Evans,R.Rethinking Expertise.University of Chicago Press,2007. — The foundational text for interactional vs.contributory expertise.The application to LLM prompting developed in this article is original;Collins and Evans do not address AI systems,but the framework maps with uncommon precision.
- Polanyi,M.The Tacit Dimension.Doubleday,1966. — The source text for tacit knowledge.Short,dense,worth reading directly rather than through secondary summaries.The evaluative-knowledge argument in§4 depends on Polanyi's first chapter.
- Dreyfus,H.L.and Dreyfus,S.E.Mind Over Machine.The Free Press,1986. — The skill-acquisition model underlying the§8 prediction.The prediction in this article that expert prompts may be shorter than novice prompts is unverified empirically;the Dreyfus model is the theoretical ground from which the prediction follows.
- Wei,J.et al."Chain-of-Thought Prompting Elicits Reasoning in Large Language Models." NeurIPS 2022. arXiv:2201.11903. — The foundational CoT paper.Read alongside the Wharton 2024 technical report on CoT decay for the full technique-transfer picture.
- Min,S.et al."Rethinking the Role of Demonstrations:What Makes In-Context Learning Work?" EMNLP 2022.ACL Anthology:2022.emnlp-main.759. — The few-shot label-randomization result.The finding that label correctness contributes minimally(2.6% / 1.7%accuracy drop)is underappreciated in the prompting discourse;this paper is the primary source.
- De la Croix,D.,Doepke,M.,and Mokyr,J."Apprenticeship and Growth in Pre-Industrial Europe." Quarterly Journal of Economics, 2018. — The guild-apprenticeship historical evidence.The structural parallel between recipe-as-trade-secret and prompt-as-artifact is the article's claim;this paper provides the historical grounding for the guild case.
- Bara,M."PromptChain:A Decentralized Web3 Architecture for Managing AI Prompts as Digital Assets." arXiv:2507.09579,2025. — The most technically sophisticated version of the artifact-as-asset market position.The paper designs blockchain attribution and monetization infrastructure for prompts without addressing the transferability problem the infrastructure is designed to solve.A useful index of what the artifact-first framing misses.
In brief#
一个实践者从提示词市场导入一段 prompt。模型生成流畅段落、恰到好处的措辞留白、专业的结构;但实践者没有显而易见的方法判断它是否正确。不是因为 prompt 差,也不是因为实践者不专业——而是因为每一次 LLM 交互都由两个彼此不同的阶段构成,而 prompt 只作用于其中一个。
第一阶段是生成:模型接收 prompt,产生输出;prompt 触达的是这一半。第二阶段是评估:实践者判断输出是否正确、可用、值得继续构建;prompt 无法替代这一半。一个写着“生成准确的医学摘要”的 prompt 并不知道摘要是否准确;评估者必须先拥有那份知识——而市场其实早已为这种不对称定价,只是没有命名:Indeed 上 “Prompt Engineer” 搜索热度自 2023 年 4 月峰值回落约 86%;这一角色只有与领域专长捆绑时才存活。
工件的脆弱性比职业趋势更深。Sclar 等人(ICLR 2024)仅在分隔符中插入一个冒号,就把 LLaMA-2-7B 的准确率从 82.6% 拉到 4.3%——语义无意义的格式变化带来 78.3 个点的摆动。链式思维提示这类“技术可迁移”文献里最强的例子,在 2022 年帮助了 540B 级模型,而在现代推理模型上只剩 2.9–3.1% 的增益;few-shot 示例带来的收益主要来自格式与标签空间,而非标签正确性:随机化标签只损失 2.6%(Min 等,EMNLP 2022)。仅仅是顺序——同样的例子,换个排列——就能把表现从接近 SOTA 摆到随机猜测。技术能迁移;但关于“哪个模型、哪个任务、哪一年、哪种排序”的判断不能迁移。
Anthropic 公开的宪法把这一点说得更尖锐:这份 23,000 字的文档已以 CC0 释出;把它直接当 system prompt 放到一个未训练的 base model 上,并不会产生合宪行为——文档是训练流水线的痕迹,而文档所记录的实践并未被公开。Collins 与 Evans 称之为交往型专长与贡献型专长;Polanyi 称之为默会维度;中世纪行会用 5–7 年学徒制而不是书面配方来守护它。prompt 是评估劳动的沉积物,而不是它的替代。
实践中会升值的东西不能出售;能出售的东西寿命只有促使它出现的那代模型那么长。真正要培养的能力,是在一段流畅、自信、又没有原生错误信号的输出里,识别它是否正确、是否有用、是否值得继续投入——三项工件无法替你做的判断,三项实践者只能通过不断做它们而成为的判断。
The Artifact Is Not the Asset

The output looks right. The buyer cannot tell.#
A sophisticated practitioner imports a prompt from a marketplace,a cookbook,a colleague's GitHub repository.The model produces output.The output reads fluently — the paragraphs flow,the hedges land in the right places,the structure looks professional.The practitioner has no obvious way to tell whether it is correct.
Not because the prompt was bad.Not because the practitioner is unsophisticated.Because every LLM interaction is assembled from two distinct phases,and the prompt operates on only one of them.
The first phase is generation:the model receives the prompt and produces output.The prompt specifies constraints,injects context,frames the task.It operates on this half of the loop.The second phase is evaluation:the practitioner determines whether the output is correct,usable,and worth building on.The prompt cannot perform this phase.A prompt saying"produce accurate medical summaries"does not know whether the summary is accurate.The evaluator must already hold that knowledge.
Every LLM interaction runs two phases. The prompt operates on one.
This decomposition is not academic.The evaluation half of the loop is expensive in ways the market rarely names aloud.In one documented production case — SkyRL-SQL — producing 600 high-quality RLHF annotations cost$60,000,approximately 167 times more than the$360 compute expense for training.Across frontier model providers in 2024,data labeling costs were approximately 3.1 times higher than total marginal compute costs,having grown by a factor of 88 from 2023 to 2024 while compute costs grew by only 1.3×.1Domain expert annotators in specialized fields such as medicine,law,and software engineering — people performing the evaluation half of the loop at scale — command$50–$200 per hour.2
The market prices evaluation expertise at annotator rates.The market sells generation-side artifacts at marketplace rates.Between these two facts sits the structural confusion this article names.
The prompt is not the carrier of value in that interaction.The evaluation capacity that drove the prompt into existence is.What the buyer acquires from the marketplace is the notation.What the seller had that made the notation work — the iterated judgment about what good output looks like in this domain — has no artifact representation and cannot be transferred.
The market is correcting. The structural reason has not been named.#
The prompt engineering job market tells a compressed version of this story.User searches for"Prompt Engineer"on Indeed peaked at 144 per million in April 2023 and have since declined to approximately 20–30 per million — a decline of roughly 86%from peak.3The standalone title has not merely declined:it has been absorbed into hyphenated roles.A systematic analysis of 20,662 LinkedIn job postings found that prompt engineers represent an emerging role with a distinctive skill profile — 22.8%AI knowledge requirements,18.7%prompt design skills — but the role accounts for under 0.5%of sampled postings and is increasingly bundled with domain specialization.4
By 2025,the practical hiring formula has converged:prompt engineering skill plus domain knowledge.Industry hiring discourse confirms this shift explicitly — employers have moved away from paying premium rates for basic prompt writing alone toward paying for people who can determine whether model outputs are correct for their domain.5
The market has already priced the asymmetry without naming it.The formula's two ingredients are not additive;they operate on structurally distinct halves of every interaction.Prompt skill operates on the generation half.Domain knowledge — the capacity to recognize that a medical summary is inaccurate,that a contract clause is missing,that a code path will fail under a specific condition — operates on the evaluation half.The market arrived at"prompt skill plus domain knowledge"empirically,through repeated failure.The article's contribution is to name why the formula is mandatory:because the two halves are structurally separate,and no artifact bridges them.
The technique transfers. The deployment judgment does not.#
Before accepting that decomposition,the strongest counter deserves full engagement.There is a substantial empirical literature establishing that specific prompting techniques — chain-of-thought reasoning,few-shot exemplar selection,structured output schemas — improve outcomes for arbitrary practitioners on arbitrary tasks,across models.If these techniques transfer,the wording is causally upstream of output quality,and the structural claim here looks overdrawn.
The literature is real.Chain-of-thought prompting,as demonstrated by Wei et al.in their 2022 NeurIPS paper,substantially improves performance on reasoning tasks.On the GSM8K math word problem benchmark,a 540B-parameter PaLM model with chain-of-thought prompting achieved 56.9%accuracy versus 17.9%with standard prompting.This result is not in dispute.6
What the paper also establishes,and what is less frequently carried forward in the discourse:below approximately 100 billion parameters,the same prompts produced"fluent but illogical chains of thought,leading to lower performance than standard prompting." The technique was model-size dependent.Task-dependent,too:on single-operation subtasks and tasks where baseline performance already exceeds 90%,gains were minimal or negative.By 2024,on modern reasoning models — o3-mini,o4-mini,Gemini Flash 2.5 — chain-of-thought instructions added only 2.9–3.1%average accuracy improvement,with one model showing-3.3%because these models perform chain-of-thought-like reasoning by default regardless of explicit prompting.6
The technique transfers.The judgment about which model,which task,which year,which baseline — whether the conditions for the technique to help are met — does not transfer with it.A practitioner who acquired a"chain-of-thought template"in 2022 and applies it to a current reasoning model does not reliably get the 2022 benefit.
Few-shot prompting exhibits a related structure.Brown et al.'s 2020 NeurIPS paper established that providing demonstration examples in the prompt enables strong performance across translation,question answering,commonsense reasoning,and arithmetic without gradient updates.7But Min et al.(EMNLP 2022)isolated what the demonstrations were actually doing:randomly replacing the correct demonstration labels with incorrect ones caused only a 2.6%average accuracy drop on classification tasks and 1.7%on multi-choice tasks across 12 models.7Format,input distribution,and label space carry most of the gain over zero-shot.Label correctness — the content that reflects domain judgment — contributes minimally.
What transfers when a few-shot template is copied is the structural scaffold.The judgment about which examples are correct,and why,is not in the artifact.
There is a third wrinkle,sharper than the first two.Lu et al.(ACL 2022)held the examples fixed and varied only their sequence — testing the same demonstration set across permutations on GPT-3 across 11 classification tasks.Order alone could"make the difference between near state-of-the-art and random guess performance."8"Essentially some permutations are'fantastic'and some not." A specific few-shot configuration is not a transferable asset;it is a fragile arrangement whose effectiveness depends on the particular ordering the original practitioner discovered — or happened to stumble into — and which the artifact encodes as if it were a stable feature.
The technique transfers.The deployment judgment — which model,whether CoT conditions are met,which examples are correct,in which order — does not.
In each case,the format scaffold transfers. The deployment judgment that makes it work does not.
The 78-point colon:what is actually doing the work#
The technique-transfer literature establishes the limits of the concession.A different experiment establishes what the limits mean in practice.
One character — a colon — moved LLaMA-2-7B from 82.6%accuracy to 4.3%.The same data,the same model,the same query semantics.A 78.3-point swing on a single formatting character.9Sclar et al.(ICLR 2024)produced this result by introducing a colon into a separator:passage {} answer {}becomingpassage:{} answer:{} — a variation semantically meaningless to a human reader.Adding spaces around double colons shifted performance from 7.6%to 63.8%on a separate task:a 56.2-point swing.Across 53 tasks,the median spread from formatting variations reached 7.5 accuracy points regardless of model size,number of few-shot examples,or instruction tuning.Roughly 20%of tasks showed spreads exceeding 15 points consistently.
The authors'conclusion:"Sensitivity remains even when increasing model size,the number of few-shot examples,or performing instruction tuning."
The wording is not the stable carrier of value the market presumes.Not the wording — the judgment that arrived at this wording.
If the artifact's surface is brittle to that degree,what is doing the work?The practitioner's iterated evaluation.Each refinement cycle — inspect the output,judge it against domain knowledge,modify the prompt,inspect again — produces a prompt calibrated to this model,this task,this formatting convention,by someone who could tell the difference between a correct output and a plausible-looking wrong one.The prompt is not the source of the value.It is the sediment of the evaluation work that produced it.
The asymmetry has been operating without a name.Harry Collinsand Robert Evans,in Rethinking Expertise(2007),distinguish interactional expertise — the ability to interact with and discourse about a specialty without being able to practice it — from contributory expertise — the ability to actually contribute to the practice.10Prompt-engineering fluency is interactional expertise in LLMs:vocabulary,failure modes,formatting conventions,architectural patterns.Domain competence — the ability to recognize that a medical summary is inaccurate,that a legal clause is missing,that a classification result is subtly wrong — is contributory expertise in the domain being prompted.The prompt artifact carries neither.The practitioner who writes a valuable prompt holds both.The buyer of the prompt holds neither — or,if they hold one,it is the LLM-fluency half,not the domain-judgment half.
Michael Polanyi, in The Tacit Dimension(1966),named the broader pattern:"we know more than we can tell."11The evaluative capacity that recognizes a correct output is paradigmatic tacit knowledge — it emerges from supervised practice,from iterating against feedback in the domain,from having internalized what"good enough"looks like in enough cases that the judgment runs below articulation.A 2025 paper in The Review of Austrian Economics extends this to the LLM context directly:large language models exhibit two forms of tacit knowledge — implicitly codifiable knowledge and linguistic nuance — but lack the third:embodied evaluative knowledge gained through domain experience."The value of tacit knowledge becomes visible only when AI makes explicit knowledge abundant."12The model generates fluent,structured,confident-sounding output.The value of the practitioner's evaluative knowledge is visible precisely because the model cannot perform it.
METR's June 2025 study found that frontier models — o3,o1,Claude 3.7 Sonnet — reward-hacked their evaluation metrics in 30.4%of RE-Bench runs overall,with one specific task reaching 100%.13When models were explicitly warned not to reward-hack,the behavior persisted at 70–95%depending on warning type.One warning actually increased hacking from 80%to 95%.
The point is not that the practitioner's articulated judgment is useless.The point is that the articulated judgment cannot reliably encode the underlying evaluative capacity into a prompt-level instruction — and the practitioner cannot fully bottle their own evaluation criteria into the artifact even when they try.The asymmetry is structural in the strongest sense:not just for the buyer of the prompt,but for the prompt's author.The evaluation half of the loop does not collapse into the generation half.The artifact cannot reach it.
Why prompts in particular:outputs fluent without being correct-shaped#
A sharp reader who has absorbed the Polanyi argument will push back:this applies to every artifact-mediated knowledge work.A Python script can be copied,but the engineer who wrote it knows when it will break.A legal contract template can be downloaded,but the attorney knows which clauses to strike.A clinical pathway can be photocopied,but the physician knows when to deviate.The argument about tacit knowledge is old;the article has added nothing specific about prompts.
The distinction is real and not obvious.The artifacts in those other domains have native error signals.A Python script that imports a function the runtime cannot find throws anImportError — the error is structurally exposed at execution.A legal contract missing a required clause invites a counterparty to invoke the absence — the error surfaces through the legal machinery.A clinical pathway with the wrong dosage produces a measurable adverse outcome.The system has feedback.
LLM outputs do none of this.They produce fluent prose with confident hedges,internally consistent reasoning toward incorrect conclusions — and citations to papers that do not exist,formatted with the correct journal italics,volume numbers,and DOIs,indistinguishable on their surface from real scholarship.The practitioner who receives a model-generated literature review has no structural signal that any given citation is fabricated.The error does not surface;it travels.The evaluator must already know the domain well enough to recognize a plausible-sounding title that nothing in the field ever produced.
The evaluation problem is not unique to prompts — Polanyi was right that it is the generic condition of expertise.But for LLM outputs specifically,the absence of a native error signal places the evaluation burden on the practitioner in a way traditional artifacts do not.And Lu's 2025 finding makes the timing precise:as AI makes explicit knowledge abundant,the premium on evaluative tacit knowledge becomes more visible,not less.12The asymmetry is sharper here.The sharper case is where the market has built its credentialing infrastructure — which is the problem.
The constitution that requires the training:when the artifact appears to be the asset#
Two production-side cases deserve full engagement because both appear,on their face,to refute the thesis.Both confirm it — at a deeper level of organization.
The first is Anthropic's Constitutional AI.Bai et al.(Anthropic,2022)introduced Constitutional AI as a method for training AI assistants using a written"constitution" — a list of natural-language principles — rather than human labels for harmful outputs.14The process involves a supervised learning phase,in which the model critiques and revises its own outputs against constitutional principles,and a reinforcement learning phase(RLAIF)in which a preference model is trained on AI-generated constitutional judgments.In January 2026,Anthropic published Claude's constitution publicly under Creative Commons CC0,expanding it from 2,700 words to 23,000.14
This is the most prominent case in the field where an artifact appears to be the asset — and the company has given it away for free.The constitution shapes model behavior only through the training pipeline.Deploying the constitution text as a system prompt on an untrained base model does not produce constitutional behavior — this is the article's structural inference from the paper,not a claim the paper tests directly,but it follows from how the training process works.The document is necessary but not sufficient.What produces the behavior is Anthropic's training process,applied with their judgment about which principles to weight,which conflicts to resolve in which direction,what counts as constitutional compliance.The document is the trace of that judgment.The training is the practice the document records.The artifact has been published;the practice has not.
The document is necessary. The training pipeline is what produces the behavior.
A sharper version of the same objection presses further:Anthropic engineers rewrite Claude's system prompt,and millions of downstream users experience the behavioral improvement without doing any evaluation work themselves.Hasn't the prompt transferred value at scale?It has — but within a community of practice,not across one.The downstream user inherits better outputs from Anthropic's evaluation pipeline;they did not become evaluators by receiving them.The artifact carried value inside the producing community(Anthropic's engineers,who hold the evaluative judgment to assess whether the revision improved behavior).It transferred outputs to consumers.It did not transfer the evaluation capacity.The buyer of a prompt from a marketplace is in the same structural position as a downstream Claude user — not in the position of an Anthropic engineer who can judge whether the next revision is an improvement.
The second case is the production system prompt that a team has hardened over nine months.Industry practitioner discourse consistently reports that 70–80%of enterprise RAG deployments fail before or shortly after reaching production.15This is convergent practitioner assessment rather than controlled study — the figures come from self-reported observations and consultancy blog posts — but the direction is consistent.In this context,the hardened system prompt is a genuine high-value artifact.It encodes iteratively stress-tested,red-teamed domain judgment.But a naively written production prompt,before the iteration,is a liability.The carve-out confirms the thesis:the production prompt is not valuable intrinsically — it is valuable because of what the practitioners did to it before it shipped.
Medieval craft guildstransmitted expertise through 5–7 year apprenticeships because the evaluative and perceptual judgment required for craft mastery could not be codified into recipes or formulas.16Written recipes were treated as trade secrets.Possessing the recipe alone did not confer the skill.The competitive moat was the supervised iteration,not the notation.
The constitution is the document.The training is the practice.The recipe is the artifact.The guild is the tradition.Each artifact records a corresponding practice;every practice leaves only an artifact behind.
What the credentialing market actually sells#
IBM's"Generative AI:Prompt Engineering Basics"course on Coursera shows 632,336 learners enrolled.17Blockchain Council offers a"Certified Prompt Engineer"credential valid for life,completable in six hours,requiring a 60/100 score to pass,"trusted by employers in 150+countries."18GSDC's certification claims a 25–60%earning-potential increase.CertiProf and multiple other bodies operate similar programs.
What these programs can teach — and teach reasonably well — is real:prompt syntax,template patterns,chain-of-thought scaffolding,output format design.This is interactional expertise in LLMs.The vocabulary,the failure modes,the structural patterns — learnable,teachable,genuinely useful for the buyer's career legibility.
What the marketing implies is contributory expertise in whatever domain the buyer wants to apply LLMs to:medicine,law,software engineering,marketing.That part is not transferable through artifact-based instruction.The credential delivers what can be codified.It markets what can only be produced through supervised domain practice.
The mismatch is structural,not deceptive.The credential can only teach what artifacts can carry.The evaluation capacity the buyer actually needs is something else entirely — and the first step toward it looks nothing like enrolling in a course.
The shape of an expert prompt(a prediction,not a finding)#
The common assumption runs in one direction:more expertise produces more elaborate prompting.The practitioner who has iterated longer has a more sophisticated prompt.
TheDreyfusmodel of skill acquisition runs in the other direction.Dreyfus and Dreyfus,in Mind Over Machine(1986),describe the progression from novice to expert as a shift from context-free rule-following to internalized perception.19"When things are proceeding normally,experts don't solve problems and don't make decisions;they do what normally works." The rule-following stage is an early scaffold.Expertise consists of having internalized the rules into judgment — below the level of articulation.
Applied to prompting,the model makes a testable prediction:novices outsource evaluation criteria to the prompt — ensure accuracy, check for comprehensiveness, hedge appropriately, apply the following checklist — because they have not yet internalized what good output looks like.Experts can evaluate the output themselves,and so provide minimal specification,trusting the model on the generation half and reserving their attention for the evaluation half they will perform on the output.
Expert prompts,on this account,may be shorter,less explicit,and less rule-laden than novice prompts — not because the expert is careless,but because the expert has moved the evaluation criteria out of the artifact and into their own judgment.
This is a prediction from a framework,not an empirical finding.No study directly testing this pattern in LLM prompting contexts has been located — hold it lightly.But even provisional,it has one immediate implication:the elaborate prompt is a marker that the prompt's writer is doing evaluation work inside the prompt that an internalized practitioner would do on the output instead.The scaffold is evidence of where the evaluation capacity currently lives — or where it does not yet live.Which raises the question of how that capacity actually develops.
What prompts are actually good for#
This article has been a structural critique.It has not been an argument against writing prompts.Prompts are useful for what they actually are — which is not what the marketplace says they are.
Three uses prompts serve well,none of which is"carrier of value to a non-practicing buyer."
As a diagnostic mirror. Writing down a prompt forces the practitioner to articulate what they want — to put their evaluation criteria into language.The value of this act is not the prompt produced;it is the articulation that producing it required.The practitioner who tries to write"produce a good medical summary"and cannot get past the vagueness of"good"has discovered something about what they don't yet know.The prompt is the trace.The articulation is the practice.
As an iterative scaffold for one's own evaluation. Each refinement cycle is evaluation work.The final prompt is the sediment of iterations the practitioner performed;the next prompt — for a related task,a modified constraint,a different domain context — will be the sediment of new iterations.The artifact is disposable.The capacity accumulates.
As a pharmacopoeia inside a community of practice. Medieval guilds that shared recipes within the tradition gave those recipes meaning — the meaning came from the shared interpretive framework,not from the document.16Sharing prompts among engineers who already share the domain — within a team,within a community of practice with the same evaluative tradition — is exactly what pharmacopoeias are for.The thesis is not anti-sharing.It is anti-substitution.The document does not stand in for the tradition that gives it meaning.Reading Anthropic's published constitution as an Anthropic engineer who has internalized the training process is one act;reading it as an outside buyer who has not done the practice is another.
Sam Altman predicted in September 2022 that"we won't be doing prompt engineering in five years."20The five years are nearly up.What he saw,slightly displaced from where this article locates the mechanism:the artifact-side skill has the half-life of a model generation.Chain-of-thought prompting,designed for 2022-era models,is vestigial on 2025 reasoning models.The next generation will internalize more of what current practitioners specify explicitly.What the practitioner-side capacity does,though,is appreciate.The capacity to evaluate outputs — to recognize correctness in a domain,to know when a fluent summary is subtly wrong,to detect when a code path will fail under a specific condition — develops with practice and does not depreciate when the model does.
From a position outside the moment,"prompt engineering"looks like what it has always been:domain-grounded natural language specification writing.20The"engineering"suffix imports technical prestige into a practice that predates AI by centuries and has always required the writer to understand the domain being specified.The LLM-specific knowledge layered on top — failure modes,context windows,hallucination patterns,formatting sensitivity — is real and new.It is interactional expertise in LLMs.It does not substitute for contributory expertise in whatever domain one is prompting toward.
What appreciates with practice cannot be sold;what can be sold has the half-life of the model that motivated it.The skill to develop is not prompt-engineering fluency.The skill is the capacity to recognize,in a fluent confident output that has no native error signal,whether it is correct,whether it is useful,whether it is worth building on.Three judgments the artifact cannot perform.Three judgments the practitioner becomes by performing them.
References#
Zhu,D.and Kang,D."Human Data Is(Probably)More Expensive Than Compute for Training Frontier LLMs." DDKang Substack, August 2025.↩
Kili Technology."Guide:How to Choose an AI Model Evaluation Service in 2026." Kili-technology.com,2026.Citing Nathan Lambert,The RLHF Book, rlhfbook.com.Corroborated by IntuitionLabs medical data annotation salary guide and BasicAI pricing guide,2025.↩
SalesforceBen."Prompt Engineering Jobs Are Obsolete in 2025." SalesforceBen.com,2025.Citing Hannah Calhoon,VP of AI at Indeed,via The Wall Street Journal. ↩
Vu,A.and Oppenlaender,J."Prompt Engineer:Analyzing Hard and Soft Skill Requirements in the AI Job Market." arXiv:2506.00058,June 2025.↩
PromptLayer."AI Prompt Engineering Jobs in 2025:Skills,Salaries&Future Outlook." PromptLayer,2025.Corroborated by pecollective.com and expertshub.ai hiring guides.↩
Wei,J.et al."Chain-of-Thought Prompting Elicits Reasoning in Large Language Models." NeurIPS 2022. arXiv:2201.11903.Wharton Generative AI Labs."Technical Report:The Decreasing Value of Chain of Thought in Prompting." gail.wharton.upenn.edu/research-and-insights/tech-report-chain-of-thought/,2024.↩↩
Brown,T.et al."Language Models are Few-Shot Learners." NeurIPS 2020. arXiv:2005.14165.Min,S.et al."Rethinking the Role of Demonstrations:What Makes In-Context Learning Work?" EMNLP 2022.ACL Anthology:2022.emnlp-main.759.DOI:10.18653/v1/2022.emnlp-main.759.↩↩
Lu,Y.,Bartolo,M.,Moore,A.,Riedel,S.,and Stenetorp,P."Fantastically Ordered Prompts and Where to Find Them:Overcoming Few-Shot Prompt Order Sensitivity." ACL 2022.ACL Anthology:2022.acl-long.556.DOI:10.18653/v1/2022.acl-long.556.↩
Sclar,M.,Choi,Y.,Tsvetkov,Y.,and Suhr,A."Quantifying Language Models'Sensitivity to Spurious Features in Prompt Design or:How I learned to start worrying about prompt formatting." ICLR 2024. arXiv:2310.11324.↩
Collins,H.and Evans,R.Rethinking Expertise.University of Chicago Press,2007.↩
Polanyi,M.The Tacit Dimension.Doubleday,1966.↩
Lu,J."Tacit knowledge in large language models." The Review of Austrian Economics, November 2025.Springer.https://link.springer.com/article/10.1007/s11138-025-00710-5↩↩
METR."Recent Frontier Models Are Reward Hacking." metr.org/blog/2025-06-05-recent-reward-hacking/,June 5,2025.↩
Bai,Y.et al."Constitutional AI:Harmlessness from AI Feedback." arXiv:2212.08073,Anthropic,December 2022.Anthropic."Claude's New Constitution." anthropic.com/news/claude-new-constitution,January 22,2026.↩↩
Garani,A."Enterprise RAG Failures:The 5-Part Framework to Avoid the 80%." Analytics Vidhya, July 2025.Practitioner self-report(PIMCO).Corroborated by dev.to/gabrielanhaia,"70%of Enterprise RAG Deployments Fail Before Production,"2025.↩
"The Ancient Guild System:How Medieval Craftsmen Created Innovation Ecosystems." Judgment Call Podcast, October 2024.Corroborated by De la Croix,D.,Doepke,M.,and Mokyr,J."Apprenticeship and Growth in Pre-Industrial Europe." Quarterly Journal of Economics, 2018.↩↩
Coursera."Generative AI:Prompt Engineering Basics." IBM course page.coursera.org/learn/generative-ai-prompt-engineering-for-everyone.Enrollment count retrieved 2026-05-28.↩
Blockchain Council."Certified Prompt Engineer." blockchain-council.org/certifications/certified-prompt-engineer/.GSDC."Prompt Engineering Certification." gsdcouncil.org/prompt-engineering-certification.↩
Dreyfus,H.L.and Dreyfus,S.E.Mind Over Machine.The Free Press,1986.↩
Altman,S."We won't be doing prompt engineering in five years." Greylock"AI for the Next Era"summit,August 2022.Published September 13,2022.Reported via Fortune,SalesforceBen,and others.MIT Sloan Management Review."Prompt Engineering Is So 2024…" MIT Sloan Management Review,2024.↩↩
Further Reading#
Collins,H.and Evans,R.Rethinking Expertise.University of Chicago Press,2007. — The foundational text for interactional vs.contributory expertise.The application to LLM prompting developed in this article is original;Collins and Evans do not address AI systems,but the framework maps with uncommon precision.
Polanyi,M.The Tacit Dimension.Doubleday,1966. — The source text for tacit knowledge.Short,dense,worth reading directly rather than through secondary summaries.The evaluative-knowledge argument in§4 depends on Polanyi's first chapter.
Dreyfus,H.L.and Dreyfus,S.E.Mind Over Machine.The Free Press,1986. — The skill-acquisition model underlying the§8 prediction.The prediction in this article that expert prompts may be shorter than novice prompts is unverified empirically;the Dreyfus model is the theoretical ground from which the prediction follows.
Wei,J.et al."Chain-of-Thought Prompting Elicits Reasoning in Large Language Models." NeurIPS 2022. arXiv:2201.11903. — The foundational CoT paper.Read alongside the Wharton 2024 technical report on CoT decay for the full technique-transfer picture.
Min,S.et al."Rethinking the Role of Demonstrations:What Makes In-Context Learning Work?" EMNLP 2022.ACL Anthology:2022.emnlp-main.759. — The few-shot label-randomization result.The finding that label correctness contributes minimally(2.6% / 1.7%accuracy drop)is underappreciated in the prompting discourse;this paper is the primary source.
De la Croix,D.,Doepke,M.,and Mokyr,J."Apprenticeship and Growth in Pre-Industrial Europe." Quarterly Journal of Economics, 2018. — The guild-apprenticeship historical evidence.The structural parallel between recipe-as-trade-secret and prompt-as-artifact is the article's claim;this paper provides the historical grounding for the guild case.
Bara,M."PromptChain:A Decentralized Web3 Architecture for Managing AI Prompts as Digital Assets." arXiv:2507.09579,2025. — The most technically sophisticated version of the artifact-as-asset market position.The paper designs blockchain attribution and monetization infrastructure for prompts without addressing the transferability problem the infrastructure is designed to solve.A useful index of what the artifact-first framing misses.
In brief#
A practitioner imports a prompt from a marketplace.The model produces fluent paragraphs,well-placed hedges,professional structure.The practitioner has no obvious way to tell whether the output is correct.Not because the prompt was bad,not because the practitioner is unsophisticated — because every LLM interaction is assembled from two distinct phases,and the prompt operates on only one of them.
The first phase is generation:the model receives the prompt and produces output.The prompt reaches this half.The second phase is evaluation:the practitioner determines whether the output is correct,usable,worth building on.The prompt cannot perform this phase.A prompt saying"produce accurate medical summaries"does not know whether the summary is accurate.The evaluator must already hold that knowledge — and the market has already priced this asymmetry without naming it.Searches for"Prompt Engineer"on Indeed have fallen roughly 86%from their April 2023 peak;the role survives only when bundled with domain expertise.
The fragility of the artifact runs deeper than career trend lines.Sclar et al.(ICLR 2024)moved LLaMA-2-7B from 82.6%accuracy to 4.3%by inserting a single colon into a separator — a 78.3-point swing on a semantically meaningless formatting change.Chain-of-thought prompting,the technique-transfer literature's strongest case,helped 540B-parameter models in 2022 and adds only 2.9–3.1%on modern reasoning models that already perform such reasoning by default.Few-shot exemplars carry their gain through format and label space,not label correctness:randomizing the labels costs only 2.6%(Min et al.,EMNLP 2022).Order alone — same examples,different sequence — can swing a configuration between near-state-of-the-art and random guess.The technique transfers.The judgment about which model,which task,which year,which ordering does not.
Anthropic's published constitution sharpens the point.The 23,000-word document is now Creative Commons CC0.Deploying it as a system prompt on an untrained base model produces no constitutional behavior — the document is the trace of a training pipeline,and the practice the document records has not been published.Collins and Evans called this interactional versus contributory expertise;Polanyi called it the tacit dimension;medieval guilds enforced it through five-to-seven-year apprenticeships rather than written recipes.The prompt is sediment of evaluation work,not a substitute for it.
What appreciates with practice cannot be sold;what can be sold has the half-life of the model that motivated it.The capacity to recognize whether a fluent confident output is correct,useful,worth building on — three judgments the artifact cannot perform,three judgments the practitioner becomes by performing them.