## Summary
- mirror the OpenAI docs skill changes from
[openai/codex#24914](https://github.com/openai/codex/pull/24914) into
both the system and curated `openai-docs` copies
- add Codex self-knowledge routing, manual-first lookup guidance, and
updated skill metadata
- add the cached Codex manual fetch helper with temp-cache
auto-discovery and hash verification
## Why
The standalone skills repository should ship the same Codex-aware OpenAI
docs behavior already merged into the Codex bundled skill while
preserving the existing `.system` and `.curated` distinction.
## Impact
OpenAI docs lookups can now route broad Codex questions through the
current Codex manual before using Docs MCP fallback. The helper works
without requiring an explicit `--cache-dir` override.
## Validation
- `git diff --check`
- `node --check
skills/.curated/openai-docs/scripts/fetch-codex-manual.mjs`
- `node --check
skills/.system/openai-docs/scripts/fetch-codex-manual.mjs`
- live `curl -fsSI https://developers.openai.com/codex/codex-manual.md`
verification returned `x-content-sha256`
- helper smoke test without `--cache-dir`: fresh fetch returned
`cacheStatus: "updated"`, second run returned `cacheStatus: "hit"`
- exact helper and agent metadata comparison across `.system` and
`.curated` copies
## What changed
- replace the bundled Apache license text in `skills/.curated/figma` and
`skills/.curated/figma-implement-design` with the Figma Developer Terms
notice
- add the same Figma license notice to the other curated Figma skill
directories that were missing a per-skill license file
## Why
These curated Figma partner skills need to ship with the correct
Figma-specific licensing notice in each skill directory instead of a
generic Apache license or no per-skill license file.
## Impact
Consumers of the curated Figma skills now see the correct terms directly
in each affected package.
## Validation
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-implement-design`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-use`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-code-connect-components`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-create-design-system-rules`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-create-new-file`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-generate-design`
- `python3 skills/.system/skill-creator/scripts/quick_validate.py
skills/.curated/figma-generate-library`
Co-authored-by: Ashwin Mathews <ashwinm@openai.com>
## What changed
- add six curated Figma skills: `figma-use`, `figma-generate-design`,
`figma-generate-library`, `figma-code-connect-components`,
`figma-create-design-system-rules`, and `figma-create-new-file`
- refresh the existing `figma` and `figma-implement-design` skill
metadata to match the imported partner workflow split
- import the referenced assets, maintainers files, docs, and helper
scripts that those skills depend on
- add a small follow-up cleanup commit to remove repo-unsupported
`disable-model-invocation` frontmatter and strip imported trailing
whitespace
## Why
- Figma asked for the latest skills from `figma/mcp-server-guide` to be
available in `openai/skills`
- the provided patch needed a small repo-specific cleanup pass to
satisfy this repository's skill validation rules
## Impact
- makes the expanded Figma skill set available from the curated skills
catalog
- keeps the imported skills structurally compatible with the current
`openai/skills` validation expectations
## Validation
- `python3 skills/.system/skill-creator/scripts/quick_validate.py` for
`skills/.curated/figma-code-connect-components`,
`skills/.curated/figma-create-design-system-rules`,
`skills/.curated/figma-create-new-file`,
`skills/.curated/figma-generate-design`,
`skills/.curated/figma-generate-library`, `skills/.curated/figma-use`,
and `skills/.curated/figma-implement-design`
- `git diff --check origin/main...HEAD`
- `python3 -m py_compile
skills/.curated/figma-code-connect-components/scripts/normalize_node_id.py`
- `bash -n
skills/.curated/figma-create-design-system-rules/scripts/check_agents_md.sh`
- `node --check skills/.curated/figma-generate-library/scripts/*.js`
---------
Co-authored-by: Ashwin Mathews <ashwinm@openai.com>
## Summary
- Add curated skills from internal: `atlas`, `develop-web-game`,
`figma-implement-design`, `jupyter-notebook`, `openai-docs`,
`playwright`, `sentry`, and `transcribe`
- Normalize repo-root script paths to `skills/.curated/...` within the
copied skill docs
- Remove `dependencies.tools` blocks from all new `agents/openai.yaml`
files (matching the cleanup approach from PR #64)
## Notes
- Atlas validation succeeds via `uv run --python 3.12`
- Develop web game/playwright scripts require local Playwright
dependencies to run