一键导入
codex-mcp-config-format-matrix
Use when generating or reviewing MCP configuration snippets for Codex (CLI/TOML) to enforce Codex-native auth and format rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when generating or reviewing MCP configuration snippets for Codex (CLI/TOML) to enforce Codex-native auth and format rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
After correction/feedback: propose new skill or update existing to capture reusable pattern. Covers knowledge, tools, policies, preferred style. Trigger immediately for critical issues, on repetition for trivial patterns.
Prepare patch/minor/major release publishing in this repository by inserting a dated version header under `## [Unreleased]` in `CHANGELOG.md`, bumping `package.json` with `npm version`, and verifying both files are consistent. Use when asked with prompts like "prepare patch publishing", "prepare minor release", or "prepare major publish".
Create a new CRUD MCP profile from an OpenAPI spec in this repository. Use when a user asks for a profile equivalent to existing CRUD-style profiles (for example YouTrack, Grafana, GitLab, GitHub Security), including action mapping, parameter modeling, profile tests, docs updates, and validation.
Run an interactive pre-implementation plan review with explicit tradeoffs, opinionated recommendations, and user checkpoints before any code changes. Use when asked to review a plan, challenge architecture, assess quality/testing/performance risks, or decide implementation direction.
Enforce schema-correct enum values when posting GitHub PR review comments via MCP tools. Use when creating inline review comments or handling tool validation errors for review-thread parameters.
Use when generating or reviewing Gemini CLI MCP configuration snippets in this repository (profile index/docs). Enforce Gemini-native settings.json mcpServers format and gemini mcp add/list/remove command syntax for stdio and streamable HTTP servers.
基于 SOC 职业分类
| name | codex-mcp-config-format-matrix |
| description | Use when generating or reviewing MCP configuration snippets for Codex (CLI/TOML) to enforce Codex-native auth and format rules. |
Generate correct Codex MCP snippets without mixing conventions from other clients.
[mcp_servers.<name>] sections:
bearer_token_env_var = "<ENV_VAR_NAME>" - do not encode bearer auth in TOML as Authorization header values.bearer_token_env_var is set, do not duplicate the same variable in env_vars.http_headers = { "Header-Name" = "value" }.env_http_headers = { "Header-Name" = "<ENV_VAR_NAME>" }.env_vars =["<ENV_VAR_NAME>", ...].--bearer-token-env-var <ENV_VAR_NAME>.custom-header or query authentication types and also doesn't support environment variables mapping from host.env TOML snippets should be used to define environment variables:
[mcp_servers.<server_name>.env]
ENV_VAR_NAME = "value"
[mcp_servers.<name>].codex mcp add <mcp_server_name> --url "https://..." for HTTP streamable MCP servers and codex mcp add <mcp_server_name> -- npx -y mpc4openapi --profile <profile_name> ... for stdio MCP servers.${VAR} style values when variable interpolation is shown.bearer_token_env_var and no embedded bearer header.env_vars.http_headers.