myslide

myslide is a skill for Claude Code, Codex from kyopark2014/agent-plugins. It costs 117 tokens per session (11,101 once invoked), scanned A, original, MIT.

A tool for creating and editing PowerPoint presentations with an AWS-themed visual style based on the AWS re:Invent 2023 design system. It uses dark gradients, AWS colours, diagrams, icons, and reusable slide layouts.

In plain words
What is it for?
Use it to create AWS architecture presentations, add diagrams and service icons, edit existing slides, and generate presentation graphics and animations.
Why use it?
It gives presentations a consistent visual system and provides ready-made guidance for layouts, diagrams, animations, and AWS service imagery. It also supports editing particular slides instead of rebuilding an entire deck.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/kyopark2014/agent-plugins/myslide
Any agent
npx skills add kyopark2014/agent-plugins --skill myslide
Clone the repo
git clone --depth 1 https://github.com/kyopark2014/agent-plugins

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for myslide

README.md
[![agentmods](https://agentmods.dev/badge/skills/kyopark2014/agent-plugins/myslide.svg)](https://agentmods.dev/skills/kyopark2014/agent-plugins/myslide)
Your own site
<a href="https://agentmods.dev/skills/kyopark2014/agent-plugins/myslide"><img src="https://agentmods.dev/badge/skills/kyopark2014/agent-plugins/myslide.svg" alt="Measured on agentmods" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 11,101 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00117 $0.11101
Opus 5 $0.00059 $0.05550
Sonnet 5 $0.00023 $0.02220
Haiku 4.5 $0.00012 $0.01110

Measured 3d ago against content hash 6f75c86a3a70, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

myslide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

application/skills/myslide/SKILL.md · 941 lines

How it starts

The opening of the file, as written. The whole thing — 941 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MySlide - AWS-Themed Presentation Generator

Create visually compelling presentations that follow the AWS reInvent 2023 design system. Every slide should look like it was crafted by the AWS brand team.

Quick Start

  1. Read references/aws-theme.md for colors, fonts, and spacing rules
  2. Read references/slide-patterns.md for layout templates
  3. Read references/pptxgenjs.md for PptxGenJS creation guide
  4. Read references/editing.md for editing existing PPTX files
  5. Read references/animations.md for animation primitives
  6. Use scripts/create_aws_slide.py to generate background/SVG assets
  7. Official AWS service icons are in icons/ (248 icons extracted from AWS Architecture Icon Deck)

All references and scripts are self-contained within this skill directory. No external skill dependencies required.

Directory Convention — All generated assets go under artifacts/ (sibling to the skill directory), never /tmp:

ASSETS_DIR  = {workspace}/artifacts/myslide-assets/   # backgrounds, SVG/PNG assets, generated images
PARTS_DIR   = {workspace}/artifacts/myslide-parts/    # individual slide JS snippets
QA_DIR      = {workspace}/artifacts/myslide-qa/       # QA render outputs (PDF, JPEG)

{workspace} is the project root (the directory containing application/).

Skill root (this repo)

The system prompt exposes WORKING_DIR as the application/ directory. This skill lives only here:

Path Meaning
{WORKING_DIR}/skills/myslide Root of this skill (SKILL.md, scripts/, icons/, references/)
  • Use {WORKING_DIR}/skills/myslide for every script path, read_file, and cd.
  • Optional helper skills (sd35l, nova2-omni, kiro, etc.) must be resolved under {WORKING_DIR}/skills/<name> (same pattern as myslide).
# Example: locate sd35l under application/skills
SD35L_SCRIPT=$(find "${WORKING_DIR}/skills" -path "*/sd35l/scripts/generate_image.py" 2>/dev/null | head -1)

Read the full file on GitHub · 941 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 941 lines · 117 tokens per session scan A 6f75c86a3a70

Subscribe to this mod's changes

myslide is a skill published in the GitHub repository kyopark2014/agent-plugins (4 stars, last pushed 26d ago), licensed MIT. It adds 117 tokens to every session and 11,101 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

gpu-document-processing

Use when processing large PDFs, document collections, or bulk text extraction tasks that benefit from GPU-accelerated processing. Triggers when the user provides large documents or needs bulk document analysis.

langchain-ai/deepagents · 41 tokens

convex-authz

Audit and harden Convex authorization: identity-from-arg impersonation, missing per-document ownership checks, PII-leaking public queries, and writes into containers the caller doesn't own. Deterministic scan + canonical requireIdentity/requireOwner fix + tsc verify. Use for 'secure my app' / 'audit auth' / 'who can…

openclaw/clawhub · 84 tokens

iflytek-ocr-invoice

Use when user asks to recognize invoices, extract receipt data, or OCR bills and tickets. Recognize and extract structured data from invoices, receipts, and bills using iFlytek OCR API (科大讯飞票据识别). Supports VAT invoices, taxi receipts, train tickets, toll invoices, medical bills, bank receipts, and more.

iflytek/iFly-Skills · 77 tokens

ssotize

Audit and consolidate a fact that's scattered across places into one canonical source, after approval, and replace the rest with references. Use when asked to find duplication, check consistency, locate the source of truth, deduplicate, consolidate, unify, or establish SSOT across artifacts or platforms. Starts…

LilMGenius/paperthin · 78 tokens

iflytek-pdf-image-ocr

AI-powered OCR service for images and PDF documents using iFlytek's advanced recognition APIs.

iflytek/iFly-Skills · 81 tokens

iflytek-contract-intelligence-review

Use when user asks to review contracts, detect contract risks, or perform compliance checks. 合同智能审核 - 对合同扫描件、图片合同、双语合同进行完整审核。 覆盖 OCR 识别、条款分析、风险检测、合规校对、翻译摘要全流程。 适用于法务审核、采购合同审查、供应链合规检查等场景。 关键词:合同审核、风险检测、条款分析、合规校对、contract review、risk detection。.

iflytek/iFly-Skills · 116 tokens