ppt
π―Skillfrom wayfind/origin-task
Generates modular PowerPoint presentations automatically by transforming input content into structured slide decks with customizable templates and layouts.
Installation
npx skills add https://github.com/wayfind/origin-task --skill pptSkill Details
Overview
# Origin Task
Claude Code Plugin Marketplace for AI-powered productivity tools.
Installation
```bash
# 1. Add marketplace
/plugin marketplace add wayfind/origin-task
# 2. Install plugin
/plugin install intent-engine
/plugin install nano-banana-image
/plugin install ppt-generator
```
Available Plugins
| Plugin | Description |
|--------|-------------|
| [intent-engine](#intent-engine) | Cross-session task tracking + Deep Research |
| [nano-banana-image](#nano-banana-image) | AI image generation with Nano Banana Pro style |
| [ppt-generator](#ppt-generator) | Modular PPT generation pipeline |
---
intent-engine
Cross-session task tracking and AI productivity tools for Claude Code.
Skills Included
| Skill | Description |
|-------|-------------|
| intent-engine | AI Long-Term Task Memory |
| openai-deep-research | Deep Research via browser automation |
Dashboard
```bash
ie dashboard
```
Features:
- Task Navigator with hierarchical tree view
- Full spec rendering (markdown, mermaid diagrams)
- Decision timeline with chronological logs
- Multi-project support via tabs
Quick Start
```bash
# View status
ie status
# Create task
echo '{"tasks":[{"name":"My Task","status":"doing"}]}' | ie plan
# Record decision
ie log decision "Chose X because Y"
# Search tasks
ie search "todo doing"
```
Deep Research
Browser automation for OpenAI's Deep Research feature.
```bash
# First time: login
python deep_research_browser.py --login
# Run queries
python deep_research_browser.py "Your research query" -o result.md --headless
# Parallel runs with different sessions
python deep_research_browser.py "Query 1" -o r1.md --session work &
python deep_research_browser.py "Query 2" -o r2.md --session personal &
```
---
nano-banana-image
AI image generation with Nano Banana Pro visual style using Gemini API.
Features
- Nano Banana Pro Style: Auto-applies signature dark navy, golden yellow, teal color palette
- Multi-Key Support: Manage multiple Gemini API keys
- Round-Robin Rotation: Automatically rotates keys to distribute API usage
- Multiple Aspect Ratios: 1:1, 16:9, 9:16, 4:3, 3:4
Quick Start
```bash
# First time: add API key
python scripts/generate_image.py keys add default "AIzaSy..."
# Generate image
python scripts/generate_image.py "a futuristic productivity device" output.png
# With aspect ratio
python scripts/generate_image.py "app icon" icon.png --aspect 1:1
```
Key Management (Round-Robin)
```bash
# List all keys
python scripts/generate_image.py keys list
# Add keys
python scripts/generate_image.py keys add default AIzaSy...
python scripts/generate_image.py keys add work AIzaSy...
# Remove key
python scripts/generate_image.py keys remove
# Reset rotation
python scripts/generate_image.py keys reset
```
Each image generation automatically uses the next key in rotation:
```
Call 1 β Using key: default
Call 2 β Using key: work
Call 3 β Using key: default
...
```
Style Applied
All images automatically include:
- Colors: Deep navy (#1C2833), golden yellow (#F4C430), teal (#00D9C0)
- Aesthetic: Dark mode, geometric shapes, high contrast, minimalist
---
ppt-generator
Modular PPT generation pipeline: outline β enrich β render.
Skills Included
| Skill | Description |
|-------|-------------|
| /ppt | Main orchestrator |
| /ppt-outline | Generate skeleton from context |
| /ppt-enrich | Fill content, run research |
| /ppt-render | Render to PPTX |
Quick Start
```bash
# Full pipeline
/ppt ./docs/ -o presentation.pptx
# Step by step
/ppt-outline --context ./docs/ -o skeleton.yaml
/ppt-enrich skeleton.yaml -o slides/
/ppt-render slides/ -o output.pptx
```
Architecture
```
/ppt (orchestrator)
β
ββββββββββββββββββΌβββββββββββββββββ
βΌ βΌ βΌ
/ppt-outline /ppt-enrich /ppt-render
(skeleton) (content) (PPTX)
β
More from this repository7
Tracks and manages complex, long-term tasks across multiple sessions, providing AI-powered task navigation, decision logging, and deep research capabilities to help users maintain context and progr...
Enriches PowerPoint presentations by automatically adding context, insights, and visual improvements to existing slide decks, likely using AI-driven analysis and content generation techniques.
Generates structured PowerPoint presentation outlines by creating hierarchical content sections and suggesting key talking points for different presentation topics.
Renders individual PowerPoint slides with AI-generated content, likely extracting key information and transforming it into visually structured presentation slides.
Generates AI images in a distinctive Nano Banana Pro visual style using Gemini API, with support for multiple aspect ratios and automatic API key rotation.
skill-test skill from wayfind/origin-task
Performs browser-automated deep research queries for OpenAI, enabling automated web searching, data collection, and result compilation through headless browser sessions with multi-session support a...