researcher
Use when asked to create research documents, generate PDFs, make one-pagers, or create cheatsheets. Triggers: "research document", "generate PDF", "one-pager", "cheatsheet", "distinctive design". Provides HTML/Markdown/PDF with Terminal, Editorial, Corporate, Industrial, Fresh aesthetic presets.
What this skill does
# Researcher
Create distinctive, memorable HTML one-pagers that avoid generic "AI slop" aesthetics.
## Setup Required
Before using this skill, configure your output directory:
```bash
# Add to your shell profile (~/.zshrc or ~/.bashrc)
export RESEARCHER_DIR="$HOME/research"
# Create the directory structure
mkdir -p "$RESEARCHER_DIR/html" "$RESEARCHER_DIR/md" "$RESEARCHER_DIR/pdf"
```
**Requirements:**
- macOS, Linux, or Windows with WSL
- Brave Browser or Google Chrome installed
## Instructions
When the user asks to research a topic and create a PDF:
1. **Research the topic** and gather key information
2. **Choose an aesthetic preset** based on content type (see Document Aesthetics below)
3. **Create an HTML file** in `$RESEARCHER_DIR/html/` with:
- Filename: `{topic-slug}-YYYYMMDD.html` (lowercase, hyphens, date suffix)
- Example: `python-web-frameworks-20251212.html`
- Date is the creation date; keep original date if updating later
- Compact, print-friendly design (max 1-2 pages)
- Follow the design standards below
4. **Generate the PDF** by running:
```bash
research-pdf-generate
```
Or if the command isn't in PATH:
```bash
$RESEARCHER_DIR/generate-pdfs.sh
```
5. **Verify** the PDF was created in `$RESEARCHER_DIR/pdf/`
## File Locations
All paths relative to `$RESEARCHER_DIR` (defaults to `~/research`):
| Purpose | Path |
|---------|------|
| HTML source files | `$RESEARCHER_DIR/html/` |
| Markdown source files | `$RESEARCHER_DIR/md/` |
| Generated PDFs | `$RESEARCHER_DIR/pdf/` |
| Conversion script | `$RESEARCHER_DIR/generate-pdfs.sh` |
---
## Output Modes
### HTML Mode (Default)
Full-featured output with curated CSS aesthetics. Best for:
- Visually distinctive documents
- Browser viewing with micro-interactions
- Print-quality PDFs
### Markdown Mode
Lightweight plaintext output. Best for:
- Version control (git-friendly)
- Easy editing
- Cross-platform compatibility
- Quick notes and drafts
When user requests Markdown output:
1. Create file in `$RESEARCHER_DIR/md/{topic-slug}-YYYYMMDD.md`
2. Use clean Markdown formatting (no HTML)
3. Include YAML frontmatter for metadata
**Markdown Template:**
```markdown
---
title: [Document Title]
date: YYYY-MM-DD
author: Researcher by @jontsai
tags: [tag1, tag2]
---
# [Document Title]
[Brief summary/abstract]
## Section 1
Content...
## Section 2
Content...
---
## References
1. [Source Name](url) — Description
2. [Source Name](url) — Description
---
*Generated by [Researcher](https://github.com/jontsai/claude-plugins) — Claude Code plugin by [@jontsai](https://github.com/jontsai)*
```
---
## Design Philosophy
**CRITICAL: Avoid generic AI aesthetics.** Every document should have distinctive character.
### What to AVOID (Generic AI Slop)
- System font stacks (`-apple-system, BlinkMacSystemFont, Roboto`)
- Flat white/gray backgrounds with no texture
- Purple gradients on white (overused AI default)
- Identical layouts across all document types
- No motion or interactivity in browser view
### What to EMBRACE
- **Intentional typography** - Fonts chosen for the content's personality
- **Texture and atmosphere** - Paper grain, subtle patterns, depth
- **Micro-interactions** - Hover states, transitions (for browser viewing)
- **Layout surprise** - Break the grid occasionally for emphasis
- **Cohesive theming** - CSS variables for consistency
---
## Document Aesthetics (Choose Based on Content Type)
### 1. TERMINAL - For Dev Tools, CLI, Technical Cheatsheets
Dark theme with hacker aesthetic. Think terminal green on dark.
```css
:root {
--font-display: 'JetBrains Mono', 'Fira Code', monospace;
--font-body: 'JetBrains Mono', 'Fira Code', monospace;
--color-ink: #e6edf3;
--color-ink-bright: #00ff88;
--color-ink-dim: #7d8590;
--color-paper: #0d1117;
--color-paper-elevated: #161b22;
--color-accent: #58a6ff;
--color-accent-soft: rgba(88, 166, 255, 0.1);
--color-border: #30363d;
--color-muted: #484f58;
}
body {
background: var(--color-paper);
color: var(--color-ink);
/* CRT scanline effect */
background-image: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0, 255, 136, 0.03) 2px,
rgba(0, 255, 136, 0.03) 4px
);
}
```
### 2. EDITORIAL - For Restaurant Guides, Reviews, Lifestyle
Warm, magazine-like. Serif headlines, refined spacing.
```css
:root {
--font-display: 'Playfair Display', 'Crimson Pro', Georgia, serif;
--font-body: 'Source Sans 3', 'Libre Franklin', sans-serif;
--color-ink: #1a1a1a;
--color-paper: #fefcf9;
--color-accent: #c41e3a; /* Carmine red */
--color-accent-soft: #fef0f2;
--color-muted: #6b7280;
}
body {
background: var(--color-paper);
/* Subtle paper texture */
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
h1 {
font-family: var(--font-display);
font-weight: 700;
letter-spacing: -0.02em;
border-bottom: 3px double var(--color-accent);
}
```
### 3. CORPORATE - For Business Analysis, Board Docs, Professional
Navy + gold accents. Refined, trustworthy, premium feel.
```css
:root {
--font-display: 'Fraunces', 'Source Serif Pro', Georgia, serif;
--font-body: 'Inter', 'Source Sans 3', sans-serif;
--color-ink: #1e293b;
--color-paper: #ffffff;
--color-accent: #1e40af; /* Deep blue */
--color-accent-gold: #b8860b;
--color-accent-soft: #eff6ff;
--color-muted: #64748b;
}
body {
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
h1 {
color: var(--color-accent);
border-bottom: 2px solid var(--color-accent-gold);
}
.section h2 {
background: linear-gradient(135deg, var(--color-accent), #1e3a8a);
color: white;
}
```
### 4. INDUSTRIAL - For Automotive, Hardware, Specs
Bold, utilitarian, data-forward. Wide headers, strong lines.
```css
:root {
--font-display: 'Oswald', 'Bebas Neue', Impact, sans-serif;
--font-body: 'Barlow', 'Roboto Condensed', sans-serif;
--color-ink: #111827;
--color-paper: #f3f4f6;
--color-accent: #dc2626; /* Industrial red */
--color-accent-alt: #fbbf24; /* Warning yellow */
--color-stripe: #1f2937;
}
body {
background: var(--color-paper);
/* Subtle grid pattern */
background-image:
linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
background-size: 20px 20px;
}
h1 {
font-family: var(--font-display);
text-transform: uppercase;
letter-spacing: 0.1em;
background: var(--color-stripe);
color: white;
padding: 12px 20px;
margin: -20px -20px 20px -20px;
}
```
### 5. FRESH - For Health, Eco, Nature Topics
Organic feel, soft greens, breathing space.
```css
:root {
--font-display: 'DM Serif Display', Georgia, serif;
--font-body: 'DM Sans', 'Nunito', sans-serif;
--color-ink: #1a3d2e;
--color-paper: #f0fdf4;
--color-accent: #16a34a;
--color-accent-soft: #dcfce7;
--color-earth: #78716c;
}
body {
background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf9 100%);
}
.section {
border-radius: 16px;
border: 1px solid #bbf7d0;
}
```
---
## Required CSS Foundation
Every document MUST include this foundation:
```css
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-body);
font-size: 11px;
line-height: 1.5;
padding: 20px;
max-width: 8.5in;
margin: 0 auto;
color: var(--color-ink);
background: var(--color-paper);
}
/* Micro-interactions for browser viewing */
.section {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
tr {
transition: background 0.15s ease;
}
tr:hover {
background: var(--color-accent-soft) !impRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.