Skip to main content

no-deprecated-custom-prompts

Disallow deprecated .codex/prompts Markdown files in favor of Agent Skills.

Rule catalog ID: R004

Targeted pattern scope

  • **/.codex/prompts/*.md

What this rule reports

  • Codex custom prompts are deprecated. Migrate this workflow to a skill under .agents/skills//SKILL.md.

Why this rule exists

Disallow deprecated .codex/prompts Markdown files in favor of Agent Skills.

❌ Incorrect

A file in the targeted scope that produces any diagnostic listed above is incorrect for this rule.

✅ Correct

A file is correct when it uses the documented Codex structure and produces no diagnostic from this rule.

Behavior and migration notes

Included in:

  • codex.configs.recommended
  • codex.configs.strict
  • codex.configs.all

ESLint flat config example

The preset layers supply the correct Markdown, TOML, or JSON language configuration. Override the rule only in a later matching flat-config entry:

import codex from "@typpi/eslint-plugin-codex";

export default [
...codex.configs.recommended,
{
rules: { "codex/no-deprecated-custom-prompts": "error" },
},
];

Further reading