[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-skill-creator":3,"mdc-6y35z1-key":33,"related-org-jetbrains-skill-creator":2261,"related-repo-jetbrains-skill-creator":2394},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"skill-creator","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Codex's capabilities with specialized knowledge, workflows, or tool integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19],{"name":13,"slug":14,"type":15},"Best Practices","best-practices","tag",{"name":17,"slug":18,"type":15},"Plugin Development","plugin-development",{"name":20,"slug":21,"type":15},"Agents","agents",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-13T06:39:57.349503",null,17,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\u002Fskill-creator","---\nname: skill-creator\ndescription: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Codex's capabilities with specialized knowledge, workflows, or tool integrations.\nmetadata:\n  short-description: Create or update a skill\n  author: OpenAI\n  source: https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.system\u002Fskill-creator\n---\n\n# Skill Creator\n\nThis skill provides guidance for creating effective skills.\n\n## About Skills\n\nSkills are modular, self-contained folders that extend Codex's capabilities by providing\nspecialized knowledge, workflows, and tools. Think of them as \"onboarding guides\" for specific\ndomains or tasks—they transform Codex from a general-purpose agent into a specialized agent\nequipped with procedural knowledge that no model can fully possess.\n\n### What Skills Provide\n\n1. Specialized workflows - Multi-step procedures for specific domains\n2. Tool integrations - Instructions for working with specific file formats or APIs\n3. Domain expertise - Company-specific knowledge, schemas, business logic\n4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks\n\n## Core Principles\n\n### Concise is Key\n\nThe context window is a public good. Skills share the context window with everything else Codex needs: system prompt, conversation history, other Skills' metadata, and the actual user request.\n\n**Default assumption: Codex is already very smart.** Only add context Codex doesn't already have. Challenge each piece of information: \"Does Codex really need this explanation?\" and \"Does this paragraph justify its token cost?\"\n\nPrefer concise examples over verbose explanations.\n\n### Set Appropriate Degrees of Freedom\n\nMatch the level of specificity to the task's fragility and variability:\n\n**High freedom (text-based instructions)**: Use when multiple approaches are valid, decisions depend on context, or heuristics guide the approach.\n\n**Medium freedom (pseudocode or scripts with parameters)**: Use when a preferred pattern exists, some variation is acceptable, or configuration affects behavior.\n\n**Low freedom (specific scripts, few parameters)**: Use when operations are fragile and error-prone, consistency is critical, or a specific sequence must be followed.\n\nThink of Codex as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom), while an open field allows many routes (high freedom).\n\n### Anatomy of a Skill\n\nEvery skill consists of a required SKILL.md file and optional bundled resources:\n\n```\nskill-name\u002F\n├── SKILL.md (required)\n│   ├── YAML frontmatter metadata (required)\n│   │   ├── name: (required)\n│   │   └── description: (required)\n│   └── Markdown instructions (required)\n├── agents\u002F (recommended)\n│   └── openai.yaml - UI metadata for skill lists and chips\n└── Bundled Resources (optional)\n    ├── scripts\u002F          - Executable code (Python\u002FBash\u002Fetc.)\n    ├── references\u002F       - Documentation intended to be loaded into context as needed\n    └── assets\u002F           - Files used in output (templates, icons, fonts, etc.)\n```\n\n#### SKILL.md (required)\n\nEvery SKILL.md consists of:\n\n- **Frontmatter** (YAML): Contains `name` and `description` fields. These are the only fields that Codex reads to determine when the skill gets used, thus it is very important to be clear and comprehensive in describing what the skill is, and when it should be used.\n- **Body** (Markdown): Instructions and guidance for using the skill. Only loaded AFTER the skill triggers (if at all).\n\n#### Agents metadata (recommended)\n\n- UI-facing metadata for skill lists and chips\n- Read references\u002Fopenai_yaml.md before generating values and follow its descriptions and constraints\n- Create: human-facing `display_name`, `short_description`, and `default_prompt` by reading the skill\n- Generate deterministically by passing the values as `--interface key=value` to `scripts\u002Fgenerate_openai_yaml.py` or `scripts\u002Finit_skill.py`\n- On updates: validate `agents\u002Fopenai.yaml` still matches SKILL.md; regenerate if stale\n- Only include other optional interface fields (icons, brand color) if explicitly provided\n- See references\u002Fopenai_yaml.md for field definitions and examples\n\n#### Bundled Resources (optional)\n\n##### Scripts (`scripts\u002F`)\n\nExecutable code (Python\u002FBash\u002Fetc.) for tasks that require deterministic reliability or are repeatedly rewritten.\n\n- **When to include**: When the same code is being rewritten repeatedly or deterministic reliability is needed\n- **Example**: `scripts\u002Frotate_pdf.py` for PDF rotation tasks\n- **Benefits**: Token efficient, deterministic, may be executed without loading into context\n- **Note**: Scripts may still need to be read by Codex for patching or environment-specific adjustments\n\n##### References (`references\u002F`)\n\nDocumentation and reference material intended to be loaded as needed into context to inform Codex's process and thinking.\n\n- **When to include**: For documentation that Codex should reference while working\n- **Examples**: `references\u002Ffinance.md` for financial schemas, `references\u002Fmnda.md` for company NDA template, `references\u002Fpolicies.md` for company policies, `references\u002Fapi_docs.md` for API specifications\n- **Use cases**: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides\n- **Benefits**: Keeps SKILL.md lean, loaded only when Codex determines it's needed\n- **Best practice**: If files are large (>10k words), include grep search patterns in SKILL.md\n- **Avoid duplication**: Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.\n\n##### Assets (`assets\u002F`)\n\nFiles not intended to be loaded into context, but rather used within the output Codex produces.\n\n- **When to include**: When the skill needs files that will be used in the final output\n- **Examples**: `assets\u002Flogo.png` for brand assets, `assets\u002Fslides.pptx` for PowerPoint templates, `assets\u002Ffrontend-template\u002F` for HTML\u002FReact boilerplate, `assets\u002Ffont.ttf` for typography\n- **Use cases**: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified\n- **Benefits**: Separates output resources from documentation, enables Codex to use files without loading them into context\n\n#### What to Not Include in a Skill\n\nA skill should only contain essential files that directly support its functionality. Do NOT create extraneous documentation or auxiliary files, including:\n\n- README.md\n- INSTALLATION_GUIDE.md\n- QUICK_REFERENCE.md\n- CHANGELOG.md\n- etc.\n\nThe skill should only contain the information needed for an AI agent to do the job at hand. It should not contain auxiliary context about the process that went into creating it, setup and testing procedures, user-facing documentation, etc. Creating additional documentation files just adds clutter and confusion.\n\n### Progressive Disclosure Design Principle\n\nSkills use a three-level loading system to manage context efficiently:\n\n1. **Metadata (name + description)** - Always in context (~100 words)\n2. **SKILL.md body** - When skill triggers (\u003C5k words)\n3. **Bundled resources** - As needed by Codex (Unlimited because scripts can be executed without reading into context window)\n\n#### Progressive Disclosure Patterns\n\nKeep SKILL.md body to the essentials and under 500 lines to minimize context bloat. Split content into separate files when approaching this limit. When splitting out content into other files, it is very important to reference them from SKILL.md and describe clearly when to read them, to ensure the reader of the skill knows they exist and when to use them.\n\n**Key principle:** When a skill supports multiple variations, frameworks, or options, keep only the core workflow and selection guidance in SKILL.md. Move variant-specific details (patterns, examples, configuration) into separate reference files.\n\n**Pattern 1: High-level guide with references**\n\n```markdown\n# PDF Processing\n\n## Quick start\n\nExtract text with pdfplumber:\n[code example]\n\n## Advanced features\n\n- **Form filling**: See [FORMS.md](FORMS.md) for complete guide\n- **API reference**: See [REFERENCE.md](REFERENCE.md) for all methods\n- **Examples**: See [EXAMPLES.md](EXAMPLES.md) for common patterns\n```\n\nCodex loads FORMS.md, REFERENCE.md, or EXAMPLES.md only when needed.\n\n**Pattern 2: Domain-specific organization**\n\nFor Skills with multiple domains, organize content by domain to avoid loading irrelevant context:\n\n```\nbigquery-skill\u002F\n├── SKILL.md (overview and navigation)\n└── reference\u002F\n    ├── finance.md (revenue, billing metrics)\n    ├── sales.md (opportunities, pipeline)\n    ├── product.md (API usage, features)\n    └── marketing.md (campaigns, attribution)\n```\n\nWhen a user asks about sales metrics, Codex only reads sales.md.\n\nSimilarly, for skills supporting multiple frameworks or variants, organize by variant:\n\n```\ncloud-deploy\u002F\n├── SKILL.md (workflow + provider selection)\n└── references\u002F\n    ├── aws.md (AWS deployment patterns)\n    ├── gcp.md (GCP deployment patterns)\n    └── azure.md (Azure deployment patterns)\n```\n\nWhen the user chooses AWS, Codex only reads aws.md.\n\n**Pattern 3: Conditional details**\n\nShow basic content, link to advanced content:\n\n```markdown\n# DOCX Processing\n\n## Creating documents\n\nUse docx-js for new documents. See [DOCX-JS.md](DOCX-JS.md).\n\n## Editing documents\n\nFor simple edits, modify the XML directly.\n\n**For tracked changes**: See [REDLINING.md](REDLINING.md)\n**For OOXML details**: See [OOXML.md](OOXML.md)\n```\n\nCodex reads REDLINING.md or OOXML.md only when the user needs those features.\n\n**Important guidelines:**\n\n- **Avoid deeply nested references** - Keep references one level deep from SKILL.md. All reference files should link directly from SKILL.md.\n- **Structure longer reference files** - For files longer than 100 lines, include a table of contents at the top so Codex can see the full scope when previewing.\n\n## Skill Creation Process\n\nSkill creation involves these steps:\n\n1. Understand the skill with concrete examples\n2. Plan reusable skill contents (scripts, references, assets)\n3. Initialize the skill (run init_skill.py)\n4. Edit the skill (implement resources and write SKILL.md)\n5. Validate the skill (run quick_validate.py)\n6. Iterate based on real usage\n\nFollow these steps in order, skipping only if there is a clear reason why they are not applicable.\n\n### Skill Naming\n\n- Use lowercase letters, digits, and hyphens only; normalize user-provided titles to hyphen-case (e.g., \"Plan Mode\" -> `plan-mode`).\n- When generating names, generate a name under 64 characters (letters, digits, hyphens).\n- Prefer short, verb-led phrases that describe the action.\n- Namespace by tool when it improves clarity or triggering (e.g., `gh-address-comments`, `linear-address-issue`).\n- Name the skill folder exactly after the skill name.\n\n### Step 1: Understanding the Skill with Concrete Examples\n\nSkip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.\n\nTo create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.\n\nFor example, when building an image-editor skill, relevant questions include:\n\n- \"What functionality should the image-editor skill support? Editing, rotating, anything else?\"\n- \"Can you give some examples of how this skill would be used?\"\n- \"I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?\"\n- \"What would a user say that should trigger this skill?\"\n\nTo avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.\n\nConclude this step when there is a clear sense of the functionality the skill should support.\n\n### Step 2: Planning the Reusable Skill Contents\n\nTo turn concrete examples into an effective skill, analyze each example by:\n\n1. Considering how to execute on the example from scratch\n2. Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly\n\nExample: When building a `pdf-editor` skill to handle queries like \"Help me rotate this PDF,\" the analysis shows:\n\n1. Rotating a PDF requires re-writing the same code each time\n2. A `scripts\u002Frotate_pdf.py` script would be helpful to store in the skill\n\nExample: When designing a `frontend-webapp-builder` skill for queries like \"Build me a todo app\" or \"Build me a dashboard to track my steps,\" the analysis shows:\n\n1. Writing a frontend webapp requires the same boilerplate HTML\u002FReact each time\n2. An `assets\u002Fhello-world\u002F` template containing the boilerplate HTML\u002FReact project files would be helpful to store in the skill\n\nExample: When building a `big-query` skill to handle queries like \"How many users have logged in today?\" the analysis shows:\n\n1. Querying BigQuery requires re-discovering the table schemas and relationships each time\n2. A `references\u002Fschema.md` file documenting the table schemas would be helpful to store in the skill\n\nTo establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.\n\n### Step 3: Initializing the Skill\n\nAt this point, it is time to actually create the skill.\n\nSkip this step only if the skill being developed already exists. In this case, continue to the next step.\n\nWhen creating a new skill from scratch, always run the `init_skill.py` script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.\n\nUsage:\n\n```bash\nscripts\u002Finit_skill.py \u003Cskill-name> --path \u003Coutput-directory> [--resources scripts,references,assets] [--examples]\n```\n\nExamples:\n\n```bash\nscripts\u002Finit_skill.py my-skill --path skills\u002Fpublic\nscripts\u002Finit_skill.py my-skill --path skills\u002Fpublic --resources scripts,references\nscripts\u002Finit_skill.py my-skill --path skills\u002Fpublic --resources scripts --examples\n```\n\nThe script:\n\n- Creates the skill directory at the specified path\n- Generates a SKILL.md template with proper frontmatter and TODO placeholders\n- Creates `agents\u002Fopenai.yaml` using agent-generated `display_name`, `short_description`, and `default_prompt` passed via `--interface key=value`\n- Optionally creates resource directories based on `--resources`\n- Optionally adds example files when `--examples` is set\n\nAfter initialization, customize the SKILL.md and add resources as needed. If you used `--examples`, replace or delete placeholder files.\n\nGenerate `display_name`, `short_description`, and `default_prompt` by reading the skill, then pass them as `--interface key=value` to `init_skill.py` or regenerate with:\n\n```bash\nscripts\u002Fgenerate_openai_yaml.py \u003Cpath\u002Fto\u002Fskill-folder> --interface key=value\n```\n\nOnly include other optional interface fields when the user explicitly provides them. For full field descriptions and examples, see references\u002Fopenai_yaml.md.\n\n### Step 4: Edit the Skill\n\nWhen editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Codex to use. Include information that would be beneficial and non-obvious to Codex. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Codex instance execute these tasks more effectively.\n\n#### Start with Reusable Skill Contents\n\nTo begin implementation, start with the reusable resources identified above: `scripts\u002F`, `references\u002F`, and `assets\u002F` files. Note that this step may require user input. For example, when implementing a `brand-guidelines` skill, the user may need to provide brand assets or templates to store in `assets\u002F`, or documentation to store in `references\u002F`.\n\nAdded scripts must be tested by actually running them to ensure there are no bugs and that the output matches what is expected. If there are many similar scripts, only a representative sample needs to be tested to ensure confidence that they all work while balancing time to completion.\n\nIf you used `--examples`, delete any placeholder files that are not needed for the skill. Only create resource directories that are actually required.\n\n#### Update SKILL.md\n\n**Writing Guidelines:** Always use imperative\u002Finfinitive form.\n\n##### Frontmatter\n\nWrite the YAML frontmatter with `name` and `description`:\n\n- `name`: The skill name\n- `description`: This is the primary triggering mechanism for your skill, and helps Codex understand when to use the skill.\n  - Include both what the Skill does and specific triggers\u002Fcontexts for when to use it.\n  - Include all \"when to use\" information here - Not in the body. The body is only loaded after triggering, so \"When to Use This Skill\" sections in the body are not helpful to Codex.\n  - Example description for a `docx` skill: \"Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when Codex needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks\"\n\nDo not include any other fields in YAML frontmatter.\n\n##### Body\n\nWrite instructions for using the skill and its bundled resources.\n\n### Step 5: Validate the Skill\n\nOnce development of the skill is complete, validate the skill folder to catch basic issues early:\n\n```bash\nscripts\u002Fquick_validate.py \u003Cpath\u002Fto\u002Fskill-folder>\n```\n\nThe validation script checks YAML frontmatter format, required fields, and naming rules. If validation fails, fix the reported issues and run the command again.\n\n### Step 6: Iterate\n\nAfter testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.\n\n**Iteration workflow:**\n\n1. Use the skill on real tasks\n2. Notice struggles or inefficiencies\n3. Identify how SKILL.md or bundled resources should be updated\n4. Implement changes and test again\n",{"data":34,"body":39},{"name":4,"description":6,"metadata":35},{"short-description":36,"author":37,"source":38},"Create or update a skill","OpenAI","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.system\u002Fskill-creator",{"type":40,"children":41},"root",[42,50,56,63,68,75,100,106,112,117,128,133,139,144,154,164,174,179,185,190,203,210,215,255,261,353,359,374,379,430,443,448,540,553,558,628,634,639,667,672,678,683,716,722,727,737,745,1014,1019,1027,1032,1041,1046,1051,1060,1065,1073,1078,1281,1286,1294,1317,1323,1328,1361,1366,1372,1422,1428,1433,1438,1443,1466,1471,1476,1482,1487,1500,1513,1533,1546,1567,1579,1599,1604,1610,1615,1620,1633,1638,1712,1717,1808,1813,1886,1898,1935,1977,1982,1988,1993,1999,2045,2050,2062,2068,2078,2083,2101,2150,2155,2160,2165,2171,2176,2208,2213,2219,2224,2232,2255],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","Skill Creator",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"This skill provides guidance for creating effective skills.",{"type":43,"tag":57,"props":58,"children":60},"h2",{"id":59},"about-skills",[61],{"type":48,"value":62},"About Skills",{"type":43,"tag":51,"props":64,"children":65},{},[66],{"type":48,"value":67},"Skills are modular, self-contained folders that extend Codex's capabilities by providing\nspecialized knowledge, workflows, and tools. Think of them as \"onboarding guides\" for specific\ndomains or tasks—they transform Codex from a general-purpose agent into a specialized agent\nequipped with procedural knowledge that no model can fully possess.",{"type":43,"tag":69,"props":70,"children":72},"h3",{"id":71},"what-skills-provide",[73],{"type":48,"value":74},"What Skills Provide",{"type":43,"tag":76,"props":77,"children":78},"ol",{},[79,85,90,95],{"type":43,"tag":80,"props":81,"children":82},"li",{},[83],{"type":48,"value":84},"Specialized workflows - Multi-step procedures for specific domains",{"type":43,"tag":80,"props":86,"children":87},{},[88],{"type":48,"value":89},"Tool integrations - Instructions for working with specific file formats or APIs",{"type":43,"tag":80,"props":91,"children":92},{},[93],{"type":48,"value":94},"Domain expertise - Company-specific knowledge, schemas, business logic",{"type":43,"tag":80,"props":96,"children":97},{},[98],{"type":48,"value":99},"Bundled resources - Scripts, references, and assets for complex and repetitive tasks",{"type":43,"tag":57,"props":101,"children":103},{"id":102},"core-principles",[104],{"type":48,"value":105},"Core Principles",{"type":43,"tag":69,"props":107,"children":109},{"id":108},"concise-is-key",[110],{"type":48,"value":111},"Concise is Key",{"type":43,"tag":51,"props":113,"children":114},{},[115],{"type":48,"value":116},"The context window is a public good. Skills share the context window with everything else Codex needs: system prompt, conversation history, other Skills' metadata, and the actual user request.",{"type":43,"tag":51,"props":118,"children":119},{},[120,126],{"type":43,"tag":121,"props":122,"children":123},"strong",{},[124],{"type":48,"value":125},"Default assumption: Codex is already very smart.",{"type":48,"value":127}," Only add context Codex doesn't already have. Challenge each piece of information: \"Does Codex really need this explanation?\" and \"Does this paragraph justify its token cost?\"",{"type":43,"tag":51,"props":129,"children":130},{},[131],{"type":48,"value":132},"Prefer concise examples over verbose explanations.",{"type":43,"tag":69,"props":134,"children":136},{"id":135},"set-appropriate-degrees-of-freedom",[137],{"type":48,"value":138},"Set Appropriate Degrees of Freedom",{"type":43,"tag":51,"props":140,"children":141},{},[142],{"type":48,"value":143},"Match the level of specificity to the task's fragility and variability:",{"type":43,"tag":51,"props":145,"children":146},{},[147,152],{"type":43,"tag":121,"props":148,"children":149},{},[150],{"type":48,"value":151},"High freedom (text-based instructions)",{"type":48,"value":153},": Use when multiple approaches are valid, decisions depend on context, or heuristics guide the approach.",{"type":43,"tag":51,"props":155,"children":156},{},[157,162],{"type":43,"tag":121,"props":158,"children":159},{},[160],{"type":48,"value":161},"Medium freedom (pseudocode or scripts with parameters)",{"type":48,"value":163},": Use when a preferred pattern exists, some variation is acceptable, or configuration affects behavior.",{"type":43,"tag":51,"props":165,"children":166},{},[167,172],{"type":43,"tag":121,"props":168,"children":169},{},[170],{"type":48,"value":171},"Low freedom (specific scripts, few parameters)",{"type":48,"value":173},": Use when operations are fragile and error-prone, consistency is critical, or a specific sequence must be followed.",{"type":43,"tag":51,"props":175,"children":176},{},[177],{"type":48,"value":178},"Think of Codex as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom), while an open field allows many routes (high freedom).",{"type":43,"tag":69,"props":180,"children":182},{"id":181},"anatomy-of-a-skill",[183],{"type":48,"value":184},"Anatomy of a Skill",{"type":43,"tag":51,"props":186,"children":187},{},[188],{"type":48,"value":189},"Every skill consists of a required SKILL.md file and optional bundled resources:",{"type":43,"tag":191,"props":192,"children":196},"pre",{"className":193,"code":195,"language":48},[194],"language-text","skill-name\u002F\n├── SKILL.md (required)\n│   ├── YAML frontmatter metadata (required)\n│   │   ├── name: (required)\n│   │   └── description: (required)\n│   └── Markdown instructions (required)\n├── agents\u002F (recommended)\n│   └── openai.yaml - UI metadata for skill lists and chips\n└── Bundled Resources (optional)\n    ├── scripts\u002F          - Executable code (Python\u002FBash\u002Fetc.)\n    ├── references\u002F       - Documentation intended to be loaded into context as needed\n    └── assets\u002F           - Files used in output (templates, icons, fonts, etc.)\n",[197],{"type":43,"tag":198,"props":199,"children":201},"code",{"__ignoreMap":200},"",[202],{"type":48,"value":195},{"type":43,"tag":204,"props":205,"children":207},"h4",{"id":206},"skillmd-required",[208],{"type":48,"value":209},"SKILL.md (required)",{"type":43,"tag":51,"props":211,"children":212},{},[213],{"type":48,"value":214},"Every SKILL.md consists of:",{"type":43,"tag":216,"props":217,"children":218},"ul",{},[219,245],{"type":43,"tag":80,"props":220,"children":221},{},[222,227,229,235,237,243],{"type":43,"tag":121,"props":223,"children":224},{},[225],{"type":48,"value":226},"Frontmatter",{"type":48,"value":228}," (YAML): Contains ",{"type":43,"tag":198,"props":230,"children":232},{"className":231},[],[233],{"type":48,"value":234},"name",{"type":48,"value":236}," and ",{"type":43,"tag":198,"props":238,"children":240},{"className":239},[],[241],{"type":48,"value":242},"description",{"type":48,"value":244}," fields. These are the only fields that Codex reads to determine when the skill gets used, thus it is very important to be clear and comprehensive in describing what the skill is, and when it should be used.",{"type":43,"tag":80,"props":246,"children":247},{},[248,253],{"type":43,"tag":121,"props":249,"children":250},{},[251],{"type":48,"value":252},"Body",{"type":48,"value":254}," (Markdown): Instructions and guidance for using the skill. Only loaded AFTER the skill triggers (if at all).",{"type":43,"tag":204,"props":256,"children":258},{"id":257},"agents-metadata-recommended",[259],{"type":48,"value":260},"Agents metadata (recommended)",{"type":43,"tag":216,"props":262,"children":263},{},[264,269,274,303,330,343,348],{"type":43,"tag":80,"props":265,"children":266},{},[267],{"type":48,"value":268},"UI-facing metadata for skill lists and chips",{"type":43,"tag":80,"props":270,"children":271},{},[272],{"type":48,"value":273},"Read references\u002Fopenai_yaml.md before generating values and follow its descriptions and constraints",{"type":43,"tag":80,"props":275,"children":276},{},[277,279,285,287,293,295,301],{"type":48,"value":278},"Create: human-facing ",{"type":43,"tag":198,"props":280,"children":282},{"className":281},[],[283],{"type":48,"value":284},"display_name",{"type":48,"value":286},", ",{"type":43,"tag":198,"props":288,"children":290},{"className":289},[],[291],{"type":48,"value":292},"short_description",{"type":48,"value":294},", and ",{"type":43,"tag":198,"props":296,"children":298},{"className":297},[],[299],{"type":48,"value":300},"default_prompt",{"type":48,"value":302}," by reading the skill",{"type":43,"tag":80,"props":304,"children":305},{},[306,308,314,316,322,324],{"type":48,"value":307},"Generate deterministically by passing the values as ",{"type":43,"tag":198,"props":309,"children":311},{"className":310},[],[312],{"type":48,"value":313},"--interface key=value",{"type":48,"value":315}," to ",{"type":43,"tag":198,"props":317,"children":319},{"className":318},[],[320],{"type":48,"value":321},"scripts\u002Fgenerate_openai_yaml.py",{"type":48,"value":323}," or ",{"type":43,"tag":198,"props":325,"children":327},{"className":326},[],[328],{"type":48,"value":329},"scripts\u002Finit_skill.py",{"type":43,"tag":80,"props":331,"children":332},{},[333,335,341],{"type":48,"value":334},"On updates: validate ",{"type":43,"tag":198,"props":336,"children":338},{"className":337},[],[339],{"type":48,"value":340},"agents\u002Fopenai.yaml",{"type":48,"value":342}," still matches SKILL.md; regenerate if stale",{"type":43,"tag":80,"props":344,"children":345},{},[346],{"type":48,"value":347},"Only include other optional interface fields (icons, brand color) if explicitly provided",{"type":43,"tag":80,"props":349,"children":350},{},[351],{"type":48,"value":352},"See references\u002Fopenai_yaml.md for field definitions and examples",{"type":43,"tag":204,"props":354,"children":356},{"id":355},"bundled-resources-optional",[357],{"type":48,"value":358},"Bundled Resources (optional)",{"type":43,"tag":360,"props":361,"children":363},"h5",{"id":362},"scripts-scripts",[364,366,372],{"type":48,"value":365},"Scripts (",{"type":43,"tag":198,"props":367,"children":369},{"className":368},[],[370],{"type":48,"value":371},"scripts\u002F",{"type":48,"value":373},")",{"type":43,"tag":51,"props":375,"children":376},{},[377],{"type":48,"value":378},"Executable code (Python\u002FBash\u002Fetc.) for tasks that require deterministic reliability or are repeatedly rewritten.",{"type":43,"tag":216,"props":380,"children":381},{},[382,392,410,420],{"type":43,"tag":80,"props":383,"children":384},{},[385,390],{"type":43,"tag":121,"props":386,"children":387},{},[388],{"type":48,"value":389},"When to include",{"type":48,"value":391},": When the same code is being rewritten repeatedly or deterministic reliability is needed",{"type":43,"tag":80,"props":393,"children":394},{},[395,400,402,408],{"type":43,"tag":121,"props":396,"children":397},{},[398],{"type":48,"value":399},"Example",{"type":48,"value":401},": ",{"type":43,"tag":198,"props":403,"children":405},{"className":404},[],[406],{"type":48,"value":407},"scripts\u002Frotate_pdf.py",{"type":48,"value":409}," for PDF rotation tasks",{"type":43,"tag":80,"props":411,"children":412},{},[413,418],{"type":43,"tag":121,"props":414,"children":415},{},[416],{"type":48,"value":417},"Benefits",{"type":48,"value":419},": Token efficient, deterministic, may be executed without loading into context",{"type":43,"tag":80,"props":421,"children":422},{},[423,428],{"type":43,"tag":121,"props":424,"children":425},{},[426],{"type":48,"value":427},"Note",{"type":48,"value":429},": Scripts may still need to be read by Codex for patching or environment-specific adjustments",{"type":43,"tag":360,"props":431,"children":433},{"id":432},"references-references",[434,436,442],{"type":48,"value":435},"References (",{"type":43,"tag":198,"props":437,"children":439},{"className":438},[],[440],{"type":48,"value":441},"references\u002F",{"type":48,"value":373},{"type":43,"tag":51,"props":444,"children":445},{},[446],{"type":48,"value":447},"Documentation and reference material intended to be loaded as needed into context to inform Codex's process and thinking.",{"type":43,"tag":216,"props":449,"children":450},{},[451,460,501,511,520,530],{"type":43,"tag":80,"props":452,"children":453},{},[454,458],{"type":43,"tag":121,"props":455,"children":456},{},[457],{"type":48,"value":389},{"type":48,"value":459},": For documentation that Codex should reference while working",{"type":43,"tag":80,"props":461,"children":462},{},[463,468,469,475,477,483,485,491,493,499],{"type":43,"tag":121,"props":464,"children":465},{},[466],{"type":48,"value":467},"Examples",{"type":48,"value":401},{"type":43,"tag":198,"props":470,"children":472},{"className":471},[],[473],{"type":48,"value":474},"references\u002Ffinance.md",{"type":48,"value":476}," for financial schemas, ",{"type":43,"tag":198,"props":478,"children":480},{"className":479},[],[481],{"type":48,"value":482},"references\u002Fmnda.md",{"type":48,"value":484}," for company NDA template, ",{"type":43,"tag":198,"props":486,"children":488},{"className":487},[],[489],{"type":48,"value":490},"references\u002Fpolicies.md",{"type":48,"value":492}," for company policies, ",{"type":43,"tag":198,"props":494,"children":496},{"className":495},[],[497],{"type":48,"value":498},"references\u002Fapi_docs.md",{"type":48,"value":500}," for API specifications",{"type":43,"tag":80,"props":502,"children":503},{},[504,509],{"type":43,"tag":121,"props":505,"children":506},{},[507],{"type":48,"value":508},"Use cases",{"type":48,"value":510},": Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides",{"type":43,"tag":80,"props":512,"children":513},{},[514,518],{"type":43,"tag":121,"props":515,"children":516},{},[517],{"type":48,"value":417},{"type":48,"value":519},": Keeps SKILL.md lean, loaded only when Codex determines it's needed",{"type":43,"tag":80,"props":521,"children":522},{},[523,528],{"type":43,"tag":121,"props":524,"children":525},{},[526],{"type":48,"value":527},"Best practice",{"type":48,"value":529},": If files are large (>10k words), include grep search patterns in SKILL.md",{"type":43,"tag":80,"props":531,"children":532},{},[533,538],{"type":43,"tag":121,"props":534,"children":535},{},[536],{"type":48,"value":537},"Avoid duplication",{"type":48,"value":539},": Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.",{"type":43,"tag":360,"props":541,"children":543},{"id":542},"assets-assets",[544,546,552],{"type":48,"value":545},"Assets (",{"type":43,"tag":198,"props":547,"children":549},{"className":548},[],[550],{"type":48,"value":551},"assets\u002F",{"type":48,"value":373},{"type":43,"tag":51,"props":554,"children":555},{},[556],{"type":48,"value":557},"Files not intended to be loaded into context, but rather used within the output Codex produces.",{"type":43,"tag":216,"props":559,"children":560},{},[561,570,610,619],{"type":43,"tag":80,"props":562,"children":563},{},[564,568],{"type":43,"tag":121,"props":565,"children":566},{},[567],{"type":48,"value":389},{"type":48,"value":569},": When the skill needs files that will be used in the final output",{"type":43,"tag":80,"props":571,"children":572},{},[573,577,578,584,586,592,594,600,602,608],{"type":43,"tag":121,"props":574,"children":575},{},[576],{"type":48,"value":467},{"type":48,"value":401},{"type":43,"tag":198,"props":579,"children":581},{"className":580},[],[582],{"type":48,"value":583},"assets\u002Flogo.png",{"type":48,"value":585}," for brand assets, ",{"type":43,"tag":198,"props":587,"children":589},{"className":588},[],[590],{"type":48,"value":591},"assets\u002Fslides.pptx",{"type":48,"value":593}," for PowerPoint templates, ",{"type":43,"tag":198,"props":595,"children":597},{"className":596},[],[598],{"type":48,"value":599},"assets\u002Ffrontend-template\u002F",{"type":48,"value":601}," for HTML\u002FReact boilerplate, ",{"type":43,"tag":198,"props":603,"children":605},{"className":604},[],[606],{"type":48,"value":607},"assets\u002Ffont.ttf",{"type":48,"value":609}," for typography",{"type":43,"tag":80,"props":611,"children":612},{},[613,617],{"type":43,"tag":121,"props":614,"children":615},{},[616],{"type":48,"value":508},{"type":48,"value":618},": Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified",{"type":43,"tag":80,"props":620,"children":621},{},[622,626],{"type":43,"tag":121,"props":623,"children":624},{},[625],{"type":48,"value":417},{"type":48,"value":627},": Separates output resources from documentation, enables Codex to use files without loading them into context",{"type":43,"tag":204,"props":629,"children":631},{"id":630},"what-to-not-include-in-a-skill",[632],{"type":48,"value":633},"What to Not Include in a Skill",{"type":43,"tag":51,"props":635,"children":636},{},[637],{"type":48,"value":638},"A skill should only contain essential files that directly support its functionality. Do NOT create extraneous documentation or auxiliary files, including:",{"type":43,"tag":216,"props":640,"children":641},{},[642,647,652,657,662],{"type":43,"tag":80,"props":643,"children":644},{},[645],{"type":48,"value":646},"README.md",{"type":43,"tag":80,"props":648,"children":649},{},[650],{"type":48,"value":651},"INSTALLATION_GUIDE.md",{"type":43,"tag":80,"props":653,"children":654},{},[655],{"type":48,"value":656},"QUICK_REFERENCE.md",{"type":43,"tag":80,"props":658,"children":659},{},[660],{"type":48,"value":661},"CHANGELOG.md",{"type":43,"tag":80,"props":663,"children":664},{},[665],{"type":48,"value":666},"etc.",{"type":43,"tag":51,"props":668,"children":669},{},[670],{"type":48,"value":671},"The skill should only contain the information needed for an AI agent to do the job at hand. It should not contain auxiliary context about the process that went into creating it, setup and testing procedures, user-facing documentation, etc. Creating additional documentation files just adds clutter and confusion.",{"type":43,"tag":69,"props":673,"children":675},{"id":674},"progressive-disclosure-design-principle",[676],{"type":48,"value":677},"Progressive Disclosure Design Principle",{"type":43,"tag":51,"props":679,"children":680},{},[681],{"type":48,"value":682},"Skills use a three-level loading system to manage context efficiently:",{"type":43,"tag":76,"props":684,"children":685},{},[686,696,706],{"type":43,"tag":80,"props":687,"children":688},{},[689,694],{"type":43,"tag":121,"props":690,"children":691},{},[692],{"type":48,"value":693},"Metadata (name + description)",{"type":48,"value":695}," - Always in context (~100 words)",{"type":43,"tag":80,"props":697,"children":698},{},[699,704],{"type":43,"tag":121,"props":700,"children":701},{},[702],{"type":48,"value":703},"SKILL.md body",{"type":48,"value":705}," - When skill triggers (\u003C5k words)",{"type":43,"tag":80,"props":707,"children":708},{},[709,714],{"type":43,"tag":121,"props":710,"children":711},{},[712],{"type":48,"value":713},"Bundled resources",{"type":48,"value":715}," - As needed by Codex (Unlimited because scripts can be executed without reading into context window)",{"type":43,"tag":204,"props":717,"children":719},{"id":718},"progressive-disclosure-patterns",[720],{"type":48,"value":721},"Progressive Disclosure Patterns",{"type":43,"tag":51,"props":723,"children":724},{},[725],{"type":48,"value":726},"Keep SKILL.md body to the essentials and under 500 lines to minimize context bloat. Split content into separate files when approaching this limit. When splitting out content into other files, it is very important to reference them from SKILL.md and describe clearly when to read them, to ensure the reader of the skill knows they exist and when to use them.",{"type":43,"tag":51,"props":728,"children":729},{},[730,735],{"type":43,"tag":121,"props":731,"children":732},{},[733],{"type":48,"value":734},"Key principle:",{"type":48,"value":736}," When a skill supports multiple variations, frameworks, or options, keep only the core workflow and selection guidance in SKILL.md. Move variant-specific details (patterns, examples, configuration) into separate reference files.",{"type":43,"tag":51,"props":738,"children":739},{},[740],{"type":43,"tag":121,"props":741,"children":742},{},[743],{"type":48,"value":744},"Pattern 1: High-level guide with references",{"type":43,"tag":191,"props":746,"children":750},{"className":747,"code":748,"language":749,"meta":200,"style":200},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# PDF Processing\n\n## Quick start\n\nExtract text with pdfplumber:\n[code example]\n\n## Advanced features\n\n- **Form filling**: See [FORMS.md](FORMS.md) for complete guide\n- **API reference**: See [REFERENCE.md](REFERENCE.md) for all methods\n- **Examples**: See [EXAMPLES.md](EXAMPLES.md) for common patterns\n","markdown",[751],{"type":43,"tag":198,"props":752,"children":753},{"__ignoreMap":200},[754,772,782,796,804,814,823,831,844,852,913,964],{"type":43,"tag":755,"props":756,"children":759},"span",{"class":757,"line":758},"line",1,[760,766],{"type":43,"tag":755,"props":761,"children":763},{"style":762},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[764],{"type":48,"value":765},"# ",{"type":43,"tag":755,"props":767,"children":769},{"style":768},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[770],{"type":48,"value":771},"PDF Processing\n",{"type":43,"tag":755,"props":773,"children":775},{"class":757,"line":774},2,[776],{"type":43,"tag":755,"props":777,"children":779},{"emptyLinePlaceholder":778},true,[780],{"type":48,"value":781},"\n",{"type":43,"tag":755,"props":783,"children":785},{"class":757,"line":784},3,[786,791],{"type":43,"tag":755,"props":787,"children":788},{"style":762},[789],{"type":48,"value":790},"## ",{"type":43,"tag":755,"props":792,"children":793},{"style":768},[794],{"type":48,"value":795},"Quick start\n",{"type":43,"tag":755,"props":797,"children":799},{"class":757,"line":798},4,[800],{"type":43,"tag":755,"props":801,"children":802},{"emptyLinePlaceholder":778},[803],{"type":48,"value":781},{"type":43,"tag":755,"props":805,"children":807},{"class":757,"line":806},5,[808],{"type":43,"tag":755,"props":809,"children":811},{"style":810},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[812],{"type":48,"value":813},"Extract text with pdfplumber:\n",{"type":43,"tag":755,"props":815,"children":817},{"class":757,"line":816},6,[818],{"type":43,"tag":755,"props":819,"children":820},{"style":810},[821],{"type":48,"value":822},"[code example]\n",{"type":43,"tag":755,"props":824,"children":826},{"class":757,"line":825},7,[827],{"type":43,"tag":755,"props":828,"children":829},{"emptyLinePlaceholder":778},[830],{"type":48,"value":781},{"type":43,"tag":755,"props":832,"children":834},{"class":757,"line":833},8,[835,839],{"type":43,"tag":755,"props":836,"children":837},{"style":762},[838],{"type":48,"value":790},{"type":43,"tag":755,"props":840,"children":841},{"style":768},[842],{"type":48,"value":843},"Advanced features\n",{"type":43,"tag":755,"props":845,"children":847},{"class":757,"line":846},9,[848],{"type":43,"tag":755,"props":849,"children":850},{"emptyLinePlaceholder":778},[851],{"type":48,"value":781},{"type":43,"tag":755,"props":853,"children":855},{"class":757,"line":854},10,[856,861,867,873,878,883,888,894,899,904,908],{"type":43,"tag":755,"props":857,"children":858},{"style":762},[859],{"type":48,"value":860},"-",{"type":43,"tag":755,"props":862,"children":864},{"style":863},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[865],{"type":48,"value":866}," **",{"type":43,"tag":755,"props":868,"children":870},{"style":869},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[871],{"type":48,"value":872},"Form filling",{"type":43,"tag":755,"props":874,"children":875},{"style":863},[876],{"type":48,"value":877},"**",{"type":43,"tag":755,"props":879,"children":880},{"style":810},[881],{"type":48,"value":882},": See ",{"type":43,"tag":755,"props":884,"children":885},{"style":762},[886],{"type":48,"value":887},"[",{"type":43,"tag":755,"props":889,"children":891},{"style":890},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[892],{"type":48,"value":893},"FORMS.md",{"type":43,"tag":755,"props":895,"children":896},{"style":762},[897],{"type":48,"value":898},"](",{"type":43,"tag":755,"props":900,"children":902},{"style":901},"--shiki-light:#E53935;--shiki-light-text-decoration:underline;--shiki-default:#F07178;--shiki-default-text-decoration:underline;--shiki-dark:#F07178;--shiki-dark-text-decoration:underline",[903],{"type":48,"value":893},{"type":43,"tag":755,"props":905,"children":906},{"style":762},[907],{"type":48,"value":373},{"type":43,"tag":755,"props":909,"children":910},{"style":810},[911],{"type":48,"value":912}," for complete guide\n",{"type":43,"tag":755,"props":914,"children":916},{"class":757,"line":915},11,[917,921,925,930,934,938,942,947,951,955,959],{"type":43,"tag":755,"props":918,"children":919},{"style":762},[920],{"type":48,"value":860},{"type":43,"tag":755,"props":922,"children":923},{"style":863},[924],{"type":48,"value":866},{"type":43,"tag":755,"props":926,"children":927},{"style":869},[928],{"type":48,"value":929},"API reference",{"type":43,"tag":755,"props":931,"children":932},{"style":863},[933],{"type":48,"value":877},{"type":43,"tag":755,"props":935,"children":936},{"style":810},[937],{"type":48,"value":882},{"type":43,"tag":755,"props":939,"children":940},{"style":762},[941],{"type":48,"value":887},{"type":43,"tag":755,"props":943,"children":944},{"style":890},[945],{"type":48,"value":946},"REFERENCE.md",{"type":43,"tag":755,"props":948,"children":949},{"style":762},[950],{"type":48,"value":898},{"type":43,"tag":755,"props":952,"children":953},{"style":901},[954],{"type":48,"value":946},{"type":43,"tag":755,"props":956,"children":957},{"style":762},[958],{"type":48,"value":373},{"type":43,"tag":755,"props":960,"children":961},{"style":810},[962],{"type":48,"value":963}," for all methods\n",{"type":43,"tag":755,"props":965,"children":967},{"class":757,"line":966},12,[968,972,976,980,984,988,992,997,1001,1005,1009],{"type":43,"tag":755,"props":969,"children":970},{"style":762},[971],{"type":48,"value":860},{"type":43,"tag":755,"props":973,"children":974},{"style":863},[975],{"type":48,"value":866},{"type":43,"tag":755,"props":977,"children":978},{"style":869},[979],{"type":48,"value":467},{"type":43,"tag":755,"props":981,"children":982},{"style":863},[983],{"type":48,"value":877},{"type":43,"tag":755,"props":985,"children":986},{"style":810},[987],{"type":48,"value":882},{"type":43,"tag":755,"props":989,"children":990},{"style":762},[991],{"type":48,"value":887},{"type":43,"tag":755,"props":993,"children":994},{"style":890},[995],{"type":48,"value":996},"EXAMPLES.md",{"type":43,"tag":755,"props":998,"children":999},{"style":762},[1000],{"type":48,"value":898},{"type":43,"tag":755,"props":1002,"children":1003},{"style":901},[1004],{"type":48,"value":996},{"type":43,"tag":755,"props":1006,"children":1007},{"style":762},[1008],{"type":48,"value":373},{"type":43,"tag":755,"props":1010,"children":1011},{"style":810},[1012],{"type":48,"value":1013}," for common patterns\n",{"type":43,"tag":51,"props":1015,"children":1016},{},[1017],{"type":48,"value":1018},"Codex loads FORMS.md, REFERENCE.md, or EXAMPLES.md only when needed.",{"type":43,"tag":51,"props":1020,"children":1021},{},[1022],{"type":43,"tag":121,"props":1023,"children":1024},{},[1025],{"type":48,"value":1026},"Pattern 2: Domain-specific organization",{"type":43,"tag":51,"props":1028,"children":1029},{},[1030],{"type":48,"value":1031},"For Skills with multiple domains, organize content by domain to avoid loading irrelevant context:",{"type":43,"tag":191,"props":1033,"children":1036},{"className":1034,"code":1035,"language":48},[194],"bigquery-skill\u002F\n├── SKILL.md (overview and navigation)\n└── reference\u002F\n    ├── finance.md (revenue, billing metrics)\n    ├── sales.md (opportunities, pipeline)\n    ├── product.md (API usage, features)\n    └── marketing.md (campaigns, attribution)\n",[1037],{"type":43,"tag":198,"props":1038,"children":1039},{"__ignoreMap":200},[1040],{"type":48,"value":1035},{"type":43,"tag":51,"props":1042,"children":1043},{},[1044],{"type":48,"value":1045},"When a user asks about sales metrics, Codex only reads sales.md.",{"type":43,"tag":51,"props":1047,"children":1048},{},[1049],{"type":48,"value":1050},"Similarly, for skills supporting multiple frameworks or variants, organize by variant:",{"type":43,"tag":191,"props":1052,"children":1055},{"className":1053,"code":1054,"language":48},[194],"cloud-deploy\u002F\n├── SKILL.md (workflow + provider selection)\n└── references\u002F\n    ├── aws.md (AWS deployment patterns)\n    ├── gcp.md (GCP deployment patterns)\n    └── azure.md (Azure deployment patterns)\n",[1056],{"type":43,"tag":198,"props":1057,"children":1058},{"__ignoreMap":200},[1059],{"type":48,"value":1054},{"type":43,"tag":51,"props":1061,"children":1062},{},[1063],{"type":48,"value":1064},"When the user chooses AWS, Codex only reads aws.md.",{"type":43,"tag":51,"props":1066,"children":1067},{},[1068],{"type":43,"tag":121,"props":1069,"children":1070},{},[1071],{"type":48,"value":1072},"Pattern 3: Conditional details",{"type":43,"tag":51,"props":1074,"children":1075},{},[1076],{"type":48,"value":1077},"Show basic content, link to advanced content:",{"type":43,"tag":191,"props":1079,"children":1081},{"className":747,"code":1080,"language":749,"meta":200,"style":200},"# DOCX Processing\n\n## Creating documents\n\nUse docx-js for new documents. See [DOCX-JS.md](DOCX-JS.md).\n\n## Editing documents\n\nFor simple edits, modify the XML directly.\n\n**For tracked changes**: See [REDLINING.md](REDLINING.md)\n**For OOXML details**: See [OOXML.md](OOXML.md)\n",[1082],{"type":43,"tag":198,"props":1083,"children":1084},{"__ignoreMap":200},[1085,1097,1104,1116,1123,1157,1164,1176,1183,1191,1198,1240],{"type":43,"tag":755,"props":1086,"children":1087},{"class":757,"line":758},[1088,1092],{"type":43,"tag":755,"props":1089,"children":1090},{"style":762},[1091],{"type":48,"value":765},{"type":43,"tag":755,"props":1093,"children":1094},{"style":768},[1095],{"type":48,"value":1096},"DOCX Processing\n",{"type":43,"tag":755,"props":1098,"children":1099},{"class":757,"line":774},[1100],{"type":43,"tag":755,"props":1101,"children":1102},{"emptyLinePlaceholder":778},[1103],{"type":48,"value":781},{"type":43,"tag":755,"props":1105,"children":1106},{"class":757,"line":784},[1107,1111],{"type":43,"tag":755,"props":1108,"children":1109},{"style":762},[1110],{"type":48,"value":790},{"type":43,"tag":755,"props":1112,"children":1113},{"style":768},[1114],{"type":48,"value":1115},"Creating documents\n",{"type":43,"tag":755,"props":1117,"children":1118},{"class":757,"line":798},[1119],{"type":43,"tag":755,"props":1120,"children":1121},{"emptyLinePlaceholder":778},[1122],{"type":48,"value":781},{"type":43,"tag":755,"props":1124,"children":1125},{"class":757,"line":806},[1126,1131,1135,1140,1144,1148,1152],{"type":43,"tag":755,"props":1127,"children":1128},{"style":810},[1129],{"type":48,"value":1130},"Use docx-js for new documents. See ",{"type":43,"tag":755,"props":1132,"children":1133},{"style":762},[1134],{"type":48,"value":887},{"type":43,"tag":755,"props":1136,"children":1137},{"style":890},[1138],{"type":48,"value":1139},"DOCX-JS.md",{"type":43,"tag":755,"props":1141,"children":1142},{"style":762},[1143],{"type":48,"value":898},{"type":43,"tag":755,"props":1145,"children":1146},{"style":901},[1147],{"type":48,"value":1139},{"type":43,"tag":755,"props":1149,"children":1150},{"style":762},[1151],{"type":48,"value":373},{"type":43,"tag":755,"props":1153,"children":1154},{"style":810},[1155],{"type":48,"value":1156},".\n",{"type":43,"tag":755,"props":1158,"children":1159},{"class":757,"line":816},[1160],{"type":43,"tag":755,"props":1161,"children":1162},{"emptyLinePlaceholder":778},[1163],{"type":48,"value":781},{"type":43,"tag":755,"props":1165,"children":1166},{"class":757,"line":825},[1167,1171],{"type":43,"tag":755,"props":1168,"children":1169},{"style":762},[1170],{"type":48,"value":790},{"type":43,"tag":755,"props":1172,"children":1173},{"style":768},[1174],{"type":48,"value":1175},"Editing documents\n",{"type":43,"tag":755,"props":1177,"children":1178},{"class":757,"line":833},[1179],{"type":43,"tag":755,"props":1180,"children":1181},{"emptyLinePlaceholder":778},[1182],{"type":48,"value":781},{"type":43,"tag":755,"props":1184,"children":1185},{"class":757,"line":846},[1186],{"type":43,"tag":755,"props":1187,"children":1188},{"style":810},[1189],{"type":48,"value":1190},"For simple edits, modify the XML directly.\n",{"type":43,"tag":755,"props":1192,"children":1193},{"class":757,"line":854},[1194],{"type":43,"tag":755,"props":1195,"children":1196},{"emptyLinePlaceholder":778},[1197],{"type":48,"value":781},{"type":43,"tag":755,"props":1199,"children":1200},{"class":757,"line":915},[1201,1205,1210,1214,1218,1222,1227,1231,1235],{"type":43,"tag":755,"props":1202,"children":1203},{"style":863},[1204],{"type":48,"value":877},{"type":43,"tag":755,"props":1206,"children":1207},{"style":869},[1208],{"type":48,"value":1209},"For tracked changes",{"type":43,"tag":755,"props":1211,"children":1212},{"style":863},[1213],{"type":48,"value":877},{"type":43,"tag":755,"props":1215,"children":1216},{"style":810},[1217],{"type":48,"value":882},{"type":43,"tag":755,"props":1219,"children":1220},{"style":762},[1221],{"type":48,"value":887},{"type":43,"tag":755,"props":1223,"children":1224},{"style":890},[1225],{"type":48,"value":1226},"REDLINING.md",{"type":43,"tag":755,"props":1228,"children":1229},{"style":762},[1230],{"type":48,"value":898},{"type":43,"tag":755,"props":1232,"children":1233},{"style":901},[1234],{"type":48,"value":1226},{"type":43,"tag":755,"props":1236,"children":1237},{"style":762},[1238],{"type":48,"value":1239},")\n",{"type":43,"tag":755,"props":1241,"children":1242},{"class":757,"line":966},[1243,1247,1252,1256,1260,1264,1269,1273,1277],{"type":43,"tag":755,"props":1244,"children":1245},{"style":863},[1246],{"type":48,"value":877},{"type":43,"tag":755,"props":1248,"children":1249},{"style":869},[1250],{"type":48,"value":1251},"For OOXML details",{"type":43,"tag":755,"props":1253,"children":1254},{"style":863},[1255],{"type":48,"value":877},{"type":43,"tag":755,"props":1257,"children":1258},{"style":810},[1259],{"type":48,"value":882},{"type":43,"tag":755,"props":1261,"children":1262},{"style":762},[1263],{"type":48,"value":887},{"type":43,"tag":755,"props":1265,"children":1266},{"style":890},[1267],{"type":48,"value":1268},"OOXML.md",{"type":43,"tag":755,"props":1270,"children":1271},{"style":762},[1272],{"type":48,"value":898},{"type":43,"tag":755,"props":1274,"children":1275},{"style":901},[1276],{"type":48,"value":1268},{"type":43,"tag":755,"props":1278,"children":1279},{"style":762},[1280],{"type":48,"value":1239},{"type":43,"tag":51,"props":1282,"children":1283},{},[1284],{"type":48,"value":1285},"Codex reads REDLINING.md or OOXML.md only when the user needs those features.",{"type":43,"tag":51,"props":1287,"children":1288},{},[1289],{"type":43,"tag":121,"props":1290,"children":1291},{},[1292],{"type":48,"value":1293},"Important guidelines:",{"type":43,"tag":216,"props":1295,"children":1296},{},[1297,1307],{"type":43,"tag":80,"props":1298,"children":1299},{},[1300,1305],{"type":43,"tag":121,"props":1301,"children":1302},{},[1303],{"type":48,"value":1304},"Avoid deeply nested references",{"type":48,"value":1306}," - Keep references one level deep from SKILL.md. All reference files should link directly from SKILL.md.",{"type":43,"tag":80,"props":1308,"children":1309},{},[1310,1315],{"type":43,"tag":121,"props":1311,"children":1312},{},[1313],{"type":48,"value":1314},"Structure longer reference files",{"type":48,"value":1316}," - For files longer than 100 lines, include a table of contents at the top so Codex can see the full scope when previewing.",{"type":43,"tag":57,"props":1318,"children":1320},{"id":1319},"skill-creation-process",[1321],{"type":48,"value":1322},"Skill Creation Process",{"type":43,"tag":51,"props":1324,"children":1325},{},[1326],{"type":48,"value":1327},"Skill creation involves these steps:",{"type":43,"tag":76,"props":1329,"children":1330},{},[1331,1336,1341,1346,1351,1356],{"type":43,"tag":80,"props":1332,"children":1333},{},[1334],{"type":48,"value":1335},"Understand the skill with concrete examples",{"type":43,"tag":80,"props":1337,"children":1338},{},[1339],{"type":48,"value":1340},"Plan reusable skill contents (scripts, references, assets)",{"type":43,"tag":80,"props":1342,"children":1343},{},[1344],{"type":48,"value":1345},"Initialize the skill (run init_skill.py)",{"type":43,"tag":80,"props":1347,"children":1348},{},[1349],{"type":48,"value":1350},"Edit the skill (implement resources and write SKILL.md)",{"type":43,"tag":80,"props":1352,"children":1353},{},[1354],{"type":48,"value":1355},"Validate the skill (run quick_validate.py)",{"type":43,"tag":80,"props":1357,"children":1358},{},[1359],{"type":48,"value":1360},"Iterate based on real usage",{"type":43,"tag":51,"props":1362,"children":1363},{},[1364],{"type":48,"value":1365},"Follow these steps in order, skipping only if there is a clear reason why they are not applicable.",{"type":43,"tag":69,"props":1367,"children":1369},{"id":1368},"skill-naming",[1370],{"type":48,"value":1371},"Skill Naming",{"type":43,"tag":216,"props":1373,"children":1374},{},[1375,1388,1393,1398,1417],{"type":43,"tag":80,"props":1376,"children":1377},{},[1378,1380,1386],{"type":48,"value":1379},"Use lowercase letters, digits, and hyphens only; normalize user-provided titles to hyphen-case (e.g., \"Plan Mode\" -> ",{"type":43,"tag":198,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":48,"value":1385},"plan-mode",{"type":48,"value":1387},").",{"type":43,"tag":80,"props":1389,"children":1390},{},[1391],{"type":48,"value":1392},"When generating names, generate a name under 64 characters (letters, digits, hyphens).",{"type":43,"tag":80,"props":1394,"children":1395},{},[1396],{"type":48,"value":1397},"Prefer short, verb-led phrases that describe the action.",{"type":43,"tag":80,"props":1399,"children":1400},{},[1401,1403,1409,1410,1416],{"type":48,"value":1402},"Namespace by tool when it improves clarity or triggering (e.g., ",{"type":43,"tag":198,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":48,"value":1408},"gh-address-comments",{"type":48,"value":286},{"type":43,"tag":198,"props":1411,"children":1413},{"className":1412},[],[1414],{"type":48,"value":1415},"linear-address-issue",{"type":48,"value":1387},{"type":43,"tag":80,"props":1418,"children":1419},{},[1420],{"type":48,"value":1421},"Name the skill folder exactly after the skill name.",{"type":43,"tag":69,"props":1423,"children":1425},{"id":1424},"step-1-understanding-the-skill-with-concrete-examples",[1426],{"type":48,"value":1427},"Step 1: Understanding the Skill with Concrete Examples",{"type":43,"tag":51,"props":1429,"children":1430},{},[1431],{"type":48,"value":1432},"Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.",{"type":43,"tag":51,"props":1434,"children":1435},{},[1436],{"type":48,"value":1437},"To create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.",{"type":43,"tag":51,"props":1439,"children":1440},{},[1441],{"type":48,"value":1442},"For example, when building an image-editor skill, relevant questions include:",{"type":43,"tag":216,"props":1444,"children":1445},{},[1446,1451,1456,1461],{"type":43,"tag":80,"props":1447,"children":1448},{},[1449],{"type":48,"value":1450},"\"What functionality should the image-editor skill support? Editing, rotating, anything else?\"",{"type":43,"tag":80,"props":1452,"children":1453},{},[1454],{"type":48,"value":1455},"\"Can you give some examples of how this skill would be used?\"",{"type":43,"tag":80,"props":1457,"children":1458},{},[1459],{"type":48,"value":1460},"\"I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?\"",{"type":43,"tag":80,"props":1462,"children":1463},{},[1464],{"type":48,"value":1465},"\"What would a user say that should trigger this skill?\"",{"type":43,"tag":51,"props":1467,"children":1468},{},[1469],{"type":48,"value":1470},"To avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.",{"type":43,"tag":51,"props":1472,"children":1473},{},[1474],{"type":48,"value":1475},"Conclude this step when there is a clear sense of the functionality the skill should support.",{"type":43,"tag":69,"props":1477,"children":1479},{"id":1478},"step-2-planning-the-reusable-skill-contents",[1480],{"type":48,"value":1481},"Step 2: Planning the Reusable Skill Contents",{"type":43,"tag":51,"props":1483,"children":1484},{},[1485],{"type":48,"value":1486},"To turn concrete examples into an effective skill, analyze each example by:",{"type":43,"tag":76,"props":1488,"children":1489},{},[1490,1495],{"type":43,"tag":80,"props":1491,"children":1492},{},[1493],{"type":48,"value":1494},"Considering how to execute on the example from scratch",{"type":43,"tag":80,"props":1496,"children":1497},{},[1498],{"type":48,"value":1499},"Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly",{"type":43,"tag":51,"props":1501,"children":1502},{},[1503,1505,1511],{"type":48,"value":1504},"Example: When building a ",{"type":43,"tag":198,"props":1506,"children":1508},{"className":1507},[],[1509],{"type":48,"value":1510},"pdf-editor",{"type":48,"value":1512}," skill to handle queries like \"Help me rotate this PDF,\" the analysis shows:",{"type":43,"tag":76,"props":1514,"children":1515},{},[1516,1521],{"type":43,"tag":80,"props":1517,"children":1518},{},[1519],{"type":48,"value":1520},"Rotating a PDF requires re-writing the same code each time",{"type":43,"tag":80,"props":1522,"children":1523},{},[1524,1526,1531],{"type":48,"value":1525},"A ",{"type":43,"tag":198,"props":1527,"children":1529},{"className":1528},[],[1530],{"type":48,"value":407},{"type":48,"value":1532}," script would be helpful to store in the skill",{"type":43,"tag":51,"props":1534,"children":1535},{},[1536,1538,1544],{"type":48,"value":1537},"Example: When designing a ",{"type":43,"tag":198,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":48,"value":1543},"frontend-webapp-builder",{"type":48,"value":1545}," skill for queries like \"Build me a todo app\" or \"Build me a dashboard to track my steps,\" the analysis shows:",{"type":43,"tag":76,"props":1547,"children":1548},{},[1549,1554],{"type":43,"tag":80,"props":1550,"children":1551},{},[1552],{"type":48,"value":1553},"Writing a frontend webapp requires the same boilerplate HTML\u002FReact each time",{"type":43,"tag":80,"props":1555,"children":1556},{},[1557,1559,1565],{"type":48,"value":1558},"An ",{"type":43,"tag":198,"props":1560,"children":1562},{"className":1561},[],[1563],{"type":48,"value":1564},"assets\u002Fhello-world\u002F",{"type":48,"value":1566}," template containing the boilerplate HTML\u002FReact project files would be helpful to store in the skill",{"type":43,"tag":51,"props":1568,"children":1569},{},[1570,1571,1577],{"type":48,"value":1504},{"type":43,"tag":198,"props":1572,"children":1574},{"className":1573},[],[1575],{"type":48,"value":1576},"big-query",{"type":48,"value":1578}," skill to handle queries like \"How many users have logged in today?\" the analysis shows:",{"type":43,"tag":76,"props":1580,"children":1581},{},[1582,1587],{"type":43,"tag":80,"props":1583,"children":1584},{},[1585],{"type":48,"value":1586},"Querying BigQuery requires re-discovering the table schemas and relationships each time",{"type":43,"tag":80,"props":1588,"children":1589},{},[1590,1591,1597],{"type":48,"value":1525},{"type":43,"tag":198,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":48,"value":1596},"references\u002Fschema.md",{"type":48,"value":1598}," file documenting the table schemas would be helpful to store in the skill",{"type":43,"tag":51,"props":1600,"children":1601},{},[1602],{"type":48,"value":1603},"To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.",{"type":43,"tag":69,"props":1605,"children":1607},{"id":1606},"step-3-initializing-the-skill",[1608],{"type":48,"value":1609},"Step 3: Initializing the Skill",{"type":43,"tag":51,"props":1611,"children":1612},{},[1613],{"type":48,"value":1614},"At this point, it is time to actually create the skill.",{"type":43,"tag":51,"props":1616,"children":1617},{},[1618],{"type":48,"value":1619},"Skip this step only if the skill being developed already exists. In this case, continue to the next step.",{"type":43,"tag":51,"props":1621,"children":1622},{},[1623,1625,1631],{"type":48,"value":1624},"When creating a new skill from scratch, always run the ",{"type":43,"tag":198,"props":1626,"children":1628},{"className":1627},[],[1629],{"type":48,"value":1630},"init_skill.py",{"type":48,"value":1632}," script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.",{"type":43,"tag":51,"props":1634,"children":1635},{},[1636],{"type":48,"value":1637},"Usage:",{"type":43,"tag":191,"props":1639,"children":1643},{"className":1640,"code":1641,"language":1642,"meta":200,"style":200},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","scripts\u002Finit_skill.py \u003Cskill-name> --path \u003Coutput-directory> [--resources scripts,references,assets] [--examples]\n","bash",[1644],{"type":43,"tag":198,"props":1645,"children":1646},{"__ignoreMap":200},[1647],{"type":43,"tag":755,"props":1648,"children":1649},{"class":757,"line":758},[1650,1654,1659,1664,1669,1674,1679,1683,1688,1693,1697,1702,1707],{"type":43,"tag":755,"props":1651,"children":1652},{"style":768},[1653],{"type":48,"value":329},{"type":43,"tag":755,"props":1655,"children":1656},{"style":762},[1657],{"type":48,"value":1658}," \u003C",{"type":43,"tag":755,"props":1660,"children":1661},{"style":890},[1662],{"type":48,"value":1663},"skill-nam",{"type":43,"tag":755,"props":1665,"children":1666},{"style":810},[1667],{"type":48,"value":1668},"e",{"type":43,"tag":755,"props":1670,"children":1671},{"style":762},[1672],{"type":48,"value":1673},">",{"type":43,"tag":755,"props":1675,"children":1676},{"style":890},[1677],{"type":48,"value":1678}," --path",{"type":43,"tag":755,"props":1680,"children":1681},{"style":762},[1682],{"type":48,"value":1658},{"type":43,"tag":755,"props":1684,"children":1685},{"style":890},[1686],{"type":48,"value":1687},"output-director",{"type":43,"tag":755,"props":1689,"children":1690},{"style":810},[1691],{"type":48,"value":1692},"y",{"type":43,"tag":755,"props":1694,"children":1695},{"style":762},[1696],{"type":48,"value":1673},{"type":43,"tag":755,"props":1698,"children":1699},{"style":810},[1700],{"type":48,"value":1701}," [--resources ",{"type":43,"tag":755,"props":1703,"children":1704},{"style":890},[1705],{"type":48,"value":1706},"scripts,references,assets]",{"type":43,"tag":755,"props":1708,"children":1709},{"style":810},[1710],{"type":48,"value":1711}," [--examples]\n",{"type":43,"tag":51,"props":1713,"children":1714},{},[1715],{"type":48,"value":1716},"Examples:",{"type":43,"tag":191,"props":1718,"children":1720},{"className":1640,"code":1719,"language":1642,"meta":200,"style":200},"scripts\u002Finit_skill.py my-skill --path skills\u002Fpublic\nscripts\u002Finit_skill.py my-skill --path skills\u002Fpublic --resources scripts,references\nscripts\u002Finit_skill.py my-skill --path skills\u002Fpublic --resources scripts --examples\n",[1721],{"type":43,"tag":198,"props":1722,"children":1723},{"__ignoreMap":200},[1724,1745,1775],{"type":43,"tag":755,"props":1725,"children":1726},{"class":757,"line":758},[1727,1731,1736,1740],{"type":43,"tag":755,"props":1728,"children":1729},{"style":768},[1730],{"type":48,"value":329},{"type":43,"tag":755,"props":1732,"children":1733},{"style":890},[1734],{"type":48,"value":1735}," my-skill",{"type":43,"tag":755,"props":1737,"children":1738},{"style":890},[1739],{"type":48,"value":1678},{"type":43,"tag":755,"props":1741,"children":1742},{"style":890},[1743],{"type":48,"value":1744}," skills\u002Fpublic\n",{"type":43,"tag":755,"props":1746,"children":1747},{"class":757,"line":774},[1748,1752,1756,1760,1765,1770],{"type":43,"tag":755,"props":1749,"children":1750},{"style":768},[1751],{"type":48,"value":329},{"type":43,"tag":755,"props":1753,"children":1754},{"style":890},[1755],{"type":48,"value":1735},{"type":43,"tag":755,"props":1757,"children":1758},{"style":890},[1759],{"type":48,"value":1678},{"type":43,"tag":755,"props":1761,"children":1762},{"style":890},[1763],{"type":48,"value":1764}," skills\u002Fpublic",{"type":43,"tag":755,"props":1766,"children":1767},{"style":890},[1768],{"type":48,"value":1769}," --resources",{"type":43,"tag":755,"props":1771,"children":1772},{"style":890},[1773],{"type":48,"value":1774}," scripts,references\n",{"type":43,"tag":755,"props":1776,"children":1777},{"class":757,"line":784},[1778,1782,1786,1790,1794,1798,1803],{"type":43,"tag":755,"props":1779,"children":1780},{"style":768},[1781],{"type":48,"value":329},{"type":43,"tag":755,"props":1783,"children":1784},{"style":890},[1785],{"type":48,"value":1735},{"type":43,"tag":755,"props":1787,"children":1788},{"style":890},[1789],{"type":48,"value":1678},{"type":43,"tag":755,"props":1791,"children":1792},{"style":890},[1793],{"type":48,"value":1764},{"type":43,"tag":755,"props":1795,"children":1796},{"style":890},[1797],{"type":48,"value":1769},{"type":43,"tag":755,"props":1799,"children":1800},{"style":890},[1801],{"type":48,"value":1802}," scripts",{"type":43,"tag":755,"props":1804,"children":1805},{"style":890},[1806],{"type":48,"value":1807}," --examples\n",{"type":43,"tag":51,"props":1809,"children":1810},{},[1811],{"type":48,"value":1812},"The script:",{"type":43,"tag":216,"props":1814,"children":1815},{},[1816,1821,1826,1862,1873],{"type":43,"tag":80,"props":1817,"children":1818},{},[1819],{"type":48,"value":1820},"Creates the skill directory at the specified path",{"type":43,"tag":80,"props":1822,"children":1823},{},[1824],{"type":48,"value":1825},"Generates a SKILL.md template with proper frontmatter and TODO placeholders",{"type":43,"tag":80,"props":1827,"children":1828},{},[1829,1831,1836,1838,1843,1844,1849,1850,1855,1857],{"type":48,"value":1830},"Creates ",{"type":43,"tag":198,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":48,"value":340},{"type":48,"value":1837}," using agent-generated ",{"type":43,"tag":198,"props":1839,"children":1841},{"className":1840},[],[1842],{"type":48,"value":284},{"type":48,"value":286},{"type":43,"tag":198,"props":1845,"children":1847},{"className":1846},[],[1848],{"type":48,"value":292},{"type":48,"value":294},{"type":43,"tag":198,"props":1851,"children":1853},{"className":1852},[],[1854],{"type":48,"value":300},{"type":48,"value":1856}," passed via ",{"type":43,"tag":198,"props":1858,"children":1860},{"className":1859},[],[1861],{"type":48,"value":313},{"type":43,"tag":80,"props":1863,"children":1864},{},[1865,1867],{"type":48,"value":1866},"Optionally creates resource directories based on ",{"type":43,"tag":198,"props":1868,"children":1870},{"className":1869},[],[1871],{"type":48,"value":1872},"--resources",{"type":43,"tag":80,"props":1874,"children":1875},{},[1876,1878,1884],{"type":48,"value":1877},"Optionally adds example files when ",{"type":43,"tag":198,"props":1879,"children":1881},{"className":1880},[],[1882],{"type":48,"value":1883},"--examples",{"type":48,"value":1885}," is set",{"type":43,"tag":51,"props":1887,"children":1888},{},[1889,1891,1896],{"type":48,"value":1890},"After initialization, customize the SKILL.md and add resources as needed. If you used ",{"type":43,"tag":198,"props":1892,"children":1894},{"className":1893},[],[1895],{"type":48,"value":1883},{"type":48,"value":1897},", replace or delete placeholder files.",{"type":43,"tag":51,"props":1899,"children":1900},{},[1901,1903,1908,1909,1914,1915,1920,1922,1927,1928,1933],{"type":48,"value":1902},"Generate ",{"type":43,"tag":198,"props":1904,"children":1906},{"className":1905},[],[1907],{"type":48,"value":284},{"type":48,"value":286},{"type":43,"tag":198,"props":1910,"children":1912},{"className":1911},[],[1913],{"type":48,"value":292},{"type":48,"value":294},{"type":43,"tag":198,"props":1916,"children":1918},{"className":1917},[],[1919],{"type":48,"value":300},{"type":48,"value":1921}," by reading the skill, then pass them as ",{"type":43,"tag":198,"props":1923,"children":1925},{"className":1924},[],[1926],{"type":48,"value":313},{"type":48,"value":315},{"type":43,"tag":198,"props":1929,"children":1931},{"className":1930},[],[1932],{"type":48,"value":1630},{"type":48,"value":1934}," or regenerate with:",{"type":43,"tag":191,"props":1936,"children":1938},{"className":1640,"code":1937,"language":1642,"meta":200,"style":200},"scripts\u002Fgenerate_openai_yaml.py \u003Cpath\u002Fto\u002Fskill-folder> --interface key=value\n",[1939],{"type":43,"tag":198,"props":1940,"children":1941},{"__ignoreMap":200},[1942],{"type":43,"tag":755,"props":1943,"children":1944},{"class":757,"line":758},[1945,1949,1953,1958,1963,1967,1972],{"type":43,"tag":755,"props":1946,"children":1947},{"style":768},[1948],{"type":48,"value":321},{"type":43,"tag":755,"props":1950,"children":1951},{"style":762},[1952],{"type":48,"value":1658},{"type":43,"tag":755,"props":1954,"children":1955},{"style":890},[1956],{"type":48,"value":1957},"path\u002Fto\u002Fskill-folde",{"type":43,"tag":755,"props":1959,"children":1960},{"style":810},[1961],{"type":48,"value":1962},"r",{"type":43,"tag":755,"props":1964,"children":1965},{"style":762},[1966],{"type":48,"value":1673},{"type":43,"tag":755,"props":1968,"children":1969},{"style":890},[1970],{"type":48,"value":1971}," --interface",{"type":43,"tag":755,"props":1973,"children":1974},{"style":890},[1975],{"type":48,"value":1976}," key=value\n",{"type":43,"tag":51,"props":1978,"children":1979},{},[1980],{"type":48,"value":1981},"Only include other optional interface fields when the user explicitly provides them. For full field descriptions and examples, see references\u002Fopenai_yaml.md.",{"type":43,"tag":69,"props":1983,"children":1985},{"id":1984},"step-4-edit-the-skill",[1986],{"type":48,"value":1987},"Step 4: Edit the Skill",{"type":43,"tag":51,"props":1989,"children":1990},{},[1991],{"type":48,"value":1992},"When editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Codex to use. Include information that would be beneficial and non-obvious to Codex. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Codex instance execute these tasks more effectively.",{"type":43,"tag":204,"props":1994,"children":1996},{"id":1995},"start-with-reusable-skill-contents",[1997],{"type":48,"value":1998},"Start with Reusable Skill Contents",{"type":43,"tag":51,"props":2000,"children":2001},{},[2002,2004,2009,2010,2015,2016,2021,2023,2029,2031,2036,2038,2043],{"type":48,"value":2003},"To begin implementation, start with the reusable resources identified above: ",{"type":43,"tag":198,"props":2005,"children":2007},{"className":2006},[],[2008],{"type":48,"value":371},{"type":48,"value":286},{"type":43,"tag":198,"props":2011,"children":2013},{"className":2012},[],[2014],{"type":48,"value":441},{"type":48,"value":294},{"type":43,"tag":198,"props":2017,"children":2019},{"className":2018},[],[2020],{"type":48,"value":551},{"type":48,"value":2022}," files. Note that this step may require user input. For example, when implementing a ",{"type":43,"tag":198,"props":2024,"children":2026},{"className":2025},[],[2027],{"type":48,"value":2028},"brand-guidelines",{"type":48,"value":2030}," skill, the user may need to provide brand assets or templates to store in ",{"type":43,"tag":198,"props":2032,"children":2034},{"className":2033},[],[2035],{"type":48,"value":551},{"type":48,"value":2037},", or documentation to store in ",{"type":43,"tag":198,"props":2039,"children":2041},{"className":2040},[],[2042],{"type":48,"value":441},{"type":48,"value":2044},".",{"type":43,"tag":51,"props":2046,"children":2047},{},[2048],{"type":48,"value":2049},"Added scripts must be tested by actually running them to ensure there are no bugs and that the output matches what is expected. If there are many similar scripts, only a representative sample needs to be tested to ensure confidence that they all work while balancing time to completion.",{"type":43,"tag":51,"props":2051,"children":2052},{},[2053,2055,2060],{"type":48,"value":2054},"If you used ",{"type":43,"tag":198,"props":2056,"children":2058},{"className":2057},[],[2059],{"type":48,"value":1883},{"type":48,"value":2061},", delete any placeholder files that are not needed for the skill. Only create resource directories that are actually required.",{"type":43,"tag":204,"props":2063,"children":2065},{"id":2064},"update-skillmd",[2066],{"type":48,"value":2067},"Update SKILL.md",{"type":43,"tag":51,"props":2069,"children":2070},{},[2071,2076],{"type":43,"tag":121,"props":2072,"children":2073},{},[2074],{"type":48,"value":2075},"Writing Guidelines:",{"type":48,"value":2077}," Always use imperative\u002Finfinitive form.",{"type":43,"tag":360,"props":2079,"children":2081},{"id":2080},"frontmatter",[2082],{"type":48,"value":226},{"type":43,"tag":51,"props":2084,"children":2085},{},[2086,2088,2093,2094,2099],{"type":48,"value":2087},"Write the YAML frontmatter with ",{"type":43,"tag":198,"props":2089,"children":2091},{"className":2090},[],[2092],{"type":48,"value":234},{"type":48,"value":236},{"type":43,"tag":198,"props":2095,"children":2097},{"className":2096},[],[2098],{"type":48,"value":242},{"type":48,"value":2100},":",{"type":43,"tag":216,"props":2102,"children":2103},{},[2104,2114],{"type":43,"tag":80,"props":2105,"children":2106},{},[2107,2112],{"type":43,"tag":198,"props":2108,"children":2110},{"className":2109},[],[2111],{"type":48,"value":234},{"type":48,"value":2113},": The skill name",{"type":43,"tag":80,"props":2115,"children":2116},{},[2117,2122,2124],{"type":43,"tag":198,"props":2118,"children":2120},{"className":2119},[],[2121],{"type":48,"value":242},{"type":48,"value":2123},": This is the primary triggering mechanism for your skill, and helps Codex understand when to use the skill.\n",{"type":43,"tag":216,"props":2125,"children":2126},{},[2127,2132,2137],{"type":43,"tag":80,"props":2128,"children":2129},{},[2130],{"type":48,"value":2131},"Include both what the Skill does and specific triggers\u002Fcontexts for when to use it.",{"type":43,"tag":80,"props":2133,"children":2134},{},[2135],{"type":48,"value":2136},"Include all \"when to use\" information here - Not in the body. The body is only loaded after triggering, so \"When to Use This Skill\" sections in the body are not helpful to Codex.",{"type":43,"tag":80,"props":2138,"children":2139},{},[2140,2142,2148],{"type":48,"value":2141},"Example description for a ",{"type":43,"tag":198,"props":2143,"children":2145},{"className":2144},[],[2146],{"type":48,"value":2147},"docx",{"type":48,"value":2149}," skill: \"Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when Codex needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks\"",{"type":43,"tag":51,"props":2151,"children":2152},{},[2153],{"type":48,"value":2154},"Do not include any other fields in YAML frontmatter.",{"type":43,"tag":360,"props":2156,"children":2158},{"id":2157},"body",[2159],{"type":48,"value":252},{"type":43,"tag":51,"props":2161,"children":2162},{},[2163],{"type":48,"value":2164},"Write instructions for using the skill and its bundled resources.",{"type":43,"tag":69,"props":2166,"children":2168},{"id":2167},"step-5-validate-the-skill",[2169],{"type":48,"value":2170},"Step 5: Validate the Skill",{"type":43,"tag":51,"props":2172,"children":2173},{},[2174],{"type":48,"value":2175},"Once development of the skill is complete, validate the skill folder to catch basic issues early:",{"type":43,"tag":191,"props":2177,"children":2179},{"className":1640,"code":2178,"language":1642,"meta":200,"style":200},"scripts\u002Fquick_validate.py \u003Cpath\u002Fto\u002Fskill-folder>\n",[2180],{"type":43,"tag":198,"props":2181,"children":2182},{"__ignoreMap":200},[2183],{"type":43,"tag":755,"props":2184,"children":2185},{"class":757,"line":758},[2186,2191,2195,2199,2203],{"type":43,"tag":755,"props":2187,"children":2188},{"style":768},[2189],{"type":48,"value":2190},"scripts\u002Fquick_validate.py",{"type":43,"tag":755,"props":2192,"children":2193},{"style":762},[2194],{"type":48,"value":1658},{"type":43,"tag":755,"props":2196,"children":2197},{"style":890},[2198],{"type":48,"value":1957},{"type":43,"tag":755,"props":2200,"children":2201},{"style":810},[2202],{"type":48,"value":1962},{"type":43,"tag":755,"props":2204,"children":2205},{"style":762},[2206],{"type":48,"value":2207},">\n",{"type":43,"tag":51,"props":2209,"children":2210},{},[2211],{"type":48,"value":2212},"The validation script checks YAML frontmatter format, required fields, and naming rules. If validation fails, fix the reported issues and run the command again.",{"type":43,"tag":69,"props":2214,"children":2216},{"id":2215},"step-6-iterate",[2217],{"type":48,"value":2218},"Step 6: Iterate",{"type":43,"tag":51,"props":2220,"children":2221},{},[2222],{"type":48,"value":2223},"After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.",{"type":43,"tag":51,"props":2225,"children":2226},{},[2227],{"type":43,"tag":121,"props":2228,"children":2229},{},[2230],{"type":48,"value":2231},"Iteration workflow:",{"type":43,"tag":76,"props":2233,"children":2234},{},[2235,2240,2245,2250],{"type":43,"tag":80,"props":2236,"children":2237},{},[2238],{"type":48,"value":2239},"Use the skill on real tasks",{"type":43,"tag":80,"props":2241,"children":2242},{},[2243],{"type":48,"value":2244},"Notice struggles or inefficiencies",{"type":43,"tag":80,"props":2246,"children":2247},{},[2248],{"type":48,"value":2249},"Identify how SKILL.md or bundled resources should be updated",{"type":43,"tag":80,"props":2251,"children":2252},{},[2253],{"type":48,"value":2254},"Implement changes and test again",{"type":43,"tag":2256,"props":2257,"children":2258},"style",{},[2259],{"type":48,"value":2260},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2262,"total":2393},[2263,2281,2290,2299,2310,2320,2333,2342,2351,2361,2370,2383],{"slug":2264,"name":2264,"fn":2265,"description":2266,"org":2267,"tags":2268,"stars":2278,"repoUrl":2279,"updatedAt":2280},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2269,2272,2275],{"name":2270,"slug":2271,"type":15},"Architecture","architecture",{"name":2273,"slug":2274,"type":15},"Configuration","configuration",{"name":2276,"slug":2277,"type":15},"Engineering","engineering",1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":2282,"name":2282,"fn":2283,"description":2284,"org":2285,"tags":2286,"stars":2278,"repoUrl":2279,"updatedAt":2289},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2287,2288],{"name":2270,"slug":2271,"type":15},{"name":2276,"slug":2277,"type":15},"2026-07-17T06:04:48.066901",{"slug":2291,"name":2291,"fn":2292,"description":2293,"org":2294,"tags":2295,"stars":2278,"repoUrl":2279,"updatedAt":2298},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2296,2297],{"name":2270,"slug":2271,"type":15},{"name":2276,"slug":2277,"type":15},"2026-07-13T06:45:21.757084",{"slug":2300,"name":2300,"fn":2301,"description":2302,"org":2303,"tags":2304,"stars":2278,"repoUrl":2279,"updatedAt":2309},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2305,2306],{"name":2270,"slug":2271,"type":15},{"name":2307,"slug":2308,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":2311,"name":2311,"fn":2312,"description":2313,"org":2314,"tags":2315,"stars":2278,"repoUrl":2279,"updatedAt":2319},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2316],{"name":2317,"slug":2318,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":2321,"name":2321,"fn":2322,"description":2323,"org":2324,"tags":2325,"stars":2278,"repoUrl":2279,"updatedAt":2332},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2326,2329],{"name":2327,"slug":2328,"type":15},"Design","design",{"name":2330,"slug":2331,"type":15},"UI Components","ui-components","2026-07-23T05:41:56.638151",{"slug":2334,"name":2334,"fn":2335,"description":2336,"org":2337,"tags":2338,"stars":2278,"repoUrl":2279,"updatedAt":2341},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2339,2340],{"name":2276,"slug":2277,"type":15},{"name":2330,"slug":2331,"type":15},"2026-07-23T05:41:49.666535",{"slug":2343,"name":2343,"fn":2344,"description":2345,"org":2346,"tags":2347,"stars":2278,"repoUrl":2279,"updatedAt":2350},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2348,2349],{"name":2270,"slug":2271,"type":15},{"name":2276,"slug":2277,"type":15},"2026-07-13T06:44:59.507855",{"slug":2352,"name":2352,"fn":2353,"description":2354,"org":2355,"tags":2356,"stars":2278,"repoUrl":2279,"updatedAt":2360},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2357,2358,2359],{"name":2270,"slug":2271,"type":15},{"name":2307,"slug":2308,"type":15},{"name":2276,"slug":2277,"type":15},"2026-07-17T06:06:58.042999",{"slug":2362,"name":2362,"fn":2363,"description":2364,"org":2365,"tags":2366,"stars":2278,"repoUrl":2279,"updatedAt":2369},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2367,2368],{"name":2270,"slug":2271,"type":15},{"name":2276,"slug":2277,"type":15},"2026-07-23T05:41:48.692899",{"slug":2371,"name":2371,"fn":2372,"description":2373,"org":2374,"tags":2375,"stars":2278,"repoUrl":2279,"updatedAt":2382},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2376,2379],{"name":2377,"slug":2378,"type":15},"Debugging","debugging",{"name":2380,"slug":2381,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":2384,"name":2384,"fn":2385,"description":2386,"org":2387,"tags":2388,"stars":2278,"repoUrl":2279,"updatedAt":2392},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2389],{"name":2390,"slug":2391,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188,{"items":2395,"total":2510},[2396,2415,2428,2441,2456,2479,2496],{"slug":2397,"name":2397,"fn":2398,"description":2399,"org":2400,"tags":2401,"stars":22,"repoUrl":23,"updatedAt":2414},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2402,2405,2408,2411],{"name":2403,"slug":2404,"type":15},"Creative","creative",{"name":2406,"slug":2407,"type":15},"Generative Art","generative-art",{"name":2409,"slug":2410,"type":15},"Graphics","graphics",{"name":2412,"slug":2413,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":2416,"name":2416,"fn":2417,"description":2418,"org":2419,"tags":2420,"stars":22,"repoUrl":23,"updatedAt":2427},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2421,2422,2423,2424],{"name":13,"slug":14,"type":15},{"name":2276,"slug":2277,"type":15},{"name":2412,"slug":2413,"type":15},{"name":2425,"slug":2426,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":2028,"name":2028,"fn":2429,"description":2430,"org":2431,"tags":2432,"stars":22,"repoUrl":23,"updatedAt":2440},"apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2433,2436,2437],{"name":2434,"slug":2435,"type":15},"Branding","branding",{"name":2327,"slug":2328,"type":15},{"name":2438,"slug":2439,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":2442,"name":2442,"fn":2443,"description":2444,"org":2445,"tags":2446,"stars":22,"repoUrl":23,"updatedAt":2455},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2447,2448,2449,2452],{"name":2403,"slug":2404,"type":15},{"name":2327,"slug":2328,"type":15},{"name":2450,"slug":2451,"type":15},"Images","images",{"name":2453,"slug":2454,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":2457,"name":2457,"fn":2458,"description":2459,"org":2460,"tags":2461,"stars":22,"repoUrl":23,"updatedAt":2478},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2462,2465,2468,2471,2472,2475],{"name":2463,"slug":2464,"type":15},"CI\u002FCD","ci-cd",{"name":2466,"slug":2467,"type":15},"Containers","containers",{"name":2469,"slug":2470,"type":15},"Deployment","deployment",{"name":2276,"slug":2277,"type":15},{"name":2473,"slug":2474,"type":15},"Kotlin","kotlin",{"name":2476,"slug":2477,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":2480,"name":2480,"fn":2481,"description":2482,"org":2483,"tags":2484,"stars":22,"repoUrl":23,"updatedAt":2495},"cloudflare-deploy","deploy applications to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2485,2488,2491,2494],{"name":2486,"slug":2487,"type":15},"Cloudflare","cloudflare",{"name":2489,"slug":2490,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2492,"slug":2493,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2469,"slug":2470,"type":15},"2026-07-17T06:04:42.853896",{"slug":2497,"name":2497,"fn":2498,"description":2499,"org":2500,"tags":2501,"stars":22,"repoUrl":23,"updatedAt":2509},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2502,2505,2508],{"name":2503,"slug":2504,"type":15},"Automation","automation",{"name":2506,"slug":2507,"type":15},"Desktop","desktop",{"name":2330,"slug":2331,"type":15},"2026-07-13T06:40:38.798626",128]