一键导入
ncgr-abufai-template
Use when creating Arabic/RTL NCGR Abufai decks from the employee POTX system: offline 16:9 HTML slides, local assets, optional imagegen.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when creating Arabic/RTL NCGR Abufai decks from the employee POTX system: offline 16:9 HTML slides, local assets, optional imagegen.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | ncgr-abufai-template |
| description | Use when creating Arabic/RTL NCGR Abufai decks from the employee POTX system: offline 16:9 HTML slides, local assets, optional imagegen. |
Use this skill to create production-grade NCGR presentation decks from outlines, source documents, or rough slide content. The output is an offline HTML deck that follows the POTX-derived Abufai design system, includes speaker notes, and can use generated imagery for illustrative non-official visuals.
This is a separate skill. Do not edit or depend on the Claude ncgr-presentation skill at runtime. Reuse only the assets and references packaged inside this skill directory.
Create a deck folder with this shape:
deck-name/
index.html
assets/
ncgr-logo.png
ncgr-logo-white.png
ncgr-favicon.png
generated/
extracted-media/
QA.md
Required behavior:
assets/template.html as the starting point unless the user explicitly asks for a different artifact type.data-notes on every slide with concise speaker notes.assets/generated/ and cite the prompt or intent in QA.md.Scaffold the deck:
python3 /path/to/ncgr-abufai-template/scripts/new_deck.py /absolute/output/deck-name --title "عنوان العرض"
Read the relevant references before writing slides:
references/design-system.md for visual tokens, layout rules, and typography.references/slide-patterns.md for supported slide compositions.references/imagegen-guidelines.md when generated images are needed.references/template-map.md when translating from the source POTX slide roles.Draft the full deck in index.html:
data-chart-detail and data-chart-point hooks instead of exporting them as flat screenshots.assets/, especially assets/extracted-media/ and assets/generated-samples/.Generate or prepare support images when useful:
imagegen skill/tool for raster imagery.assets/generated/ folder and record the prompt in QA.md.Validate:
python3 /path/to/ncgr-abufai-template/scripts/qa_deck.py /absolute/output/deck-name
Fix every error before delivery. Warnings are acceptable only if they are intentionally documented in QA.md.
ncgr-presentation system.references/design-system.md.Create a new deck:
python3 ~/.codex/skills/ncgr-abufai-template/scripts/new_deck.py ./outputs/my-deck --title "تقرير الأداء"
Validate a deck:
python3 ~/.codex/skills/ncgr-abufai-template/scripts/qa_deck.py ./outputs/my-deck
Enable presenter remote on an existing generated deck:
python3 ~/.codex/skills/ncgr-abufai-template/scripts/enable_remote.py ./outputs/my-deck
Generated decks include a local, optional phone remote integration for https://remote.ploy.jsa.sa. The deck still opens and navigates offline with keyboard controls, deck buttons, speaker notes, print behavior, and local assets intact. No network request is made until the presenter clicks the share button in the controls.
When online, the share button creates a temporary remote session, opens a host WebSocket, and shows a QR code for the phone remote. Incoming commands map to the generic window.PresentationRemote API: next, prev, goTo(index), first, last, and toggleBlackout(). The host sends state after authentication and slide changes. Speaker notes are not sent unless a deck explicitly defines window.PRESENTER_REMOTE_CONFIG = { notesAllowed: true } before assets/remote/presenter-remote.js loads.
Optional configuration can be set before the remote script:
<script>
window.PRESENTER_REMOTE_CONFIG = {
serviceUrl: "https://remote.ploy.jsa.sa",
notesAllowed: false,
autoReconnect: true
};
</script>
assets/template.html: browser deck starter and runtime.assets/ncgr-logo.png, assets/ncgr-logo-white.png, assets/ncgr-favicon.png: local NCGR brand assets.assets/remote/: local presenter remote helpers (presentation-api.js, presenter-remote.js, presenter-remote.css, qrcode.min.js).assets/extracted-media.zip: archived media extracted from the source POTX. scripts/new_deck.py expands this into the generated deck's assets/extracted-media/ folder.assets/generated-samples/: generated examples that show acceptable image direction.assets/previews/template-contact-sheet.png: visual contact sheet of the extracted POTX.references/source-template-extraction.json.gz: compressed raw extraction metadata for deeper inspection.