From prezento
List the user's shared presentations on prezento-app — id, title, version, view count, share URL. Use when the user asks 'what presentations have I shared', 'show me my decks', 'do I already have a share link for X', or before deciding whether to create a new share or update an existing one with update-presentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prezento:list-presentationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Wraps the prezento-app `listMyPresentationsPublic` Cloud Function. Returns up to 100 of the user's most recently created shared presentations.
Wraps the prezento-app listMyPresentationsPublic Cloud Function. Returns up to 100 of the user's most recently created shared presentations.
PREZENTO_API_KEY in ~/.codika/.env (run setup-prezento if you don't have one)presentations:read (or presentations:write which implicitly grants read)source ~/.codika/.env
curl -sS \
-H "X-Process-Manager-Key: $PREZENTO_API_KEY" \
"https://europe-west1-prezento-app.cloudfunctions.net/listMyPresentationsPublic"
{
"presentations": [
{
"id": "01a3b…",
"title": "Q4 board deck",
"version": 3,
"createdAt": "2026-04-18T12:34:56.000Z",
"updatedAt": "2026-04-18T15:00:00.000Z",
"archived": false,
"totalViews": 12,
"lastViewedAt": "2026-04-19T08:00:00.000Z",
"shareUrl": "https://europe-west1-prezento-app.cloudfunctions.net/getSharedPresentation/01a3b…?token=…"
}
]
}
Sorted by createdAt descending. shareUrl is null for archived presentations or those with no active token.
generate-presentation and share it with share-presentation."v3), totalViews (12 views), and the share URL. Markdown table works well.shareId so they can pass it to update-presentation or get-presentation.cursor parameter. If a power user has more, they'll only see the latest 100.setup-prezento and grant presentations:read (or presentations:write).shareId is highlighted so they can act on itnpx claudepluginhub prezento-ai/prezento-marketplace --plugin prezentoCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.