Vibe Index
🎯

intent-engine

🎯Skill

from wayfind/origin-task

VibeIndex|
AI Summary

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...

intent-engine

Installation

Install skill:
npx skills add https://github.com/wayfind/origin-task --skill intent-engine
Stars2
AddedJan 27, 2026

Skill Details

SKILL.md

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)

β”‚