Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/jack-tar-msft-smartart:catalogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List available SmartArt layouts.
List available SmartArt layouts.
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
PYTHONPATH="$PLUGIN_ROOT" python3 -c "
import json
from src.layouts.catalog import load_catalog, list_entries, get_layout_id_for_graphic_type
catalog = load_catalog()
entries = list_entries(v1_only=True)
for e in entries:
print(f'{e[\"id\"]:20} {e.get(\"category\",\"\"):12} {e.get(\"data_shape\",\"\"):12} min={e.get(\"min_items\",\"?\")}-max={e.get(\"max_items\",\"?\")}')
"
Present the results as a formatted table:
| Layout ID | Category | Shape | Capacity | Use Case |
|---|
Include usage guidance: which graphic_type to pass, example items count.
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.