pipeline
Installation
SKILL.md
Pipeline Orchestration
Chain multiple tools and operations together.
Basic Pipelines
Research → Summarize
# Research a topic then summarize
RESEARCH=$(gemini -m pro -o text -e "" "Research: [topic]. Be comprehensive.")
SUMMARY=$(echo "$RESEARCH" | gemini -m pro -o text -e "" "Summarize this research in 5 bullet points")
echo "$SUMMARY"