Post-process an assembled deck — graft SmartArt from carrier files into the host .pptx. Reads smartart-spec.json from the deck directory to find carrier files and target slides.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jack-tar-msft-smartart:injectThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Graft editable SmartArt diagrams into an assembled PowerPoint deck. This skill runs AFTER the deck assembler has produced a .pptx. It reads the SmartArtSpec to find which slides need SmartArt injected and performs the OOXML surgery.
Graft editable SmartArt diagrams into an assembled PowerPoint deck. This skill runs AFTER the deck assembler has produced a .pptx. It reads the SmartArtSpec to find which slides need SmartArt injected and performs the OOXML surgery.
PLUGIN_ROOT=$(python3 -c "
from pathlib import Path
import sys, os
if os.environ.get('JACK_TAR_MSFT_SMARTART_ROOT'):
print(os.environ['JACK_TAR_MSFT_SMARTART_ROOT']); sys.exit()
home = Path.home()
for base in [home / '.claude' / 'plugins' / 'cache']:
for p in base.rglob('jack-tar-msft-smartart/.claude-plugin/plugin.json'):
print(str(p.parent.parent)); sys.exit()
dev = Path.cwd() / 'plugins' / 'jack-tar-msft-smartart'
if dev.exists():
print(str(dev)); sys.exit()
print('NOT_FOUND')
" 2>/dev/null)
if [ -z "$PLUGIN_ROOT" ] || [ "$PLUGIN_ROOT" = "NOT_FOUND" ]; then echo "ERROR: jack-tar-msft-smartart not found" && exit 1; fi
./tmp/deck/)PYTHONPATH="$PLUGIN_ROOT" python3 -c "
import json
from src.pipeline import run_injection_step, format_delivery_message
deck_dir = '$DECK_DIR'
result = run_injection_step(deck_dir)
print(json.dumps(result, indent=2))
"
If the result shows injected > 0 slides, report success. If skipped > 0, explain which slides were skipped and why.
PYTHONPATH="$PLUGIN_ROOT" python3 -c "
from src.pipeline import format_delivery_message
msg = format_delivery_message('$DECK_DIR')
print(msg)
"
Display the speaker-facing delivery message.
npx claudepluginhub stevegjones/jack-tar-deckhand --plugin jack-tar-msft-smartartCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.