Agent Skills: Gong Pipeline

Run Gong to Jira/Notion pipeline to extract call insights and action items. Use when user says "process Gong call", "gong pipeline", "gong to jira", "запусти пайплайн", or provides a Gong call URL for processing.

UncategorizedID: tekliner/improvado-agentic-frameworks-and-skills/gong-to-jira-notion

Install this agent skill to your local

pnpm dlx add-skill https://github.com/tekliner/improvado-agentic-frameworks-and-skills/tree/HEAD/skills/gong-to-jira-notion

Skill Files

Browse the full folder contents for gong-to-jira-notion.

Download Skill

Loading file tree…

skills/gong-to-jira-notion/SKILL.md

Skill Metadata

Name
gong-to-jira-notion
Description
Run Gong to Jira/Notion pipeline to extract call insights and action items. Use when user says "process Gong call", "gong pipeline", "gong to jira", "запусти пайплайн", or provides a Gong call URL for processing.

Gong Pipeline

Full Documentation: Obsidian: Gong - Notion - Jira Pipeline

Troubleshooting: Obsidian: Gong Pipeline Troubleshooting

Trigger Words

  • "process Gong call", "analyze call", "gong to jira"
  • "run pipeline", "gong pipeline", "запусти пайплайн"
  • "test pipeline for [client]", "debug pipeline"
  • Gong URL asking to extract action items

Quick Start

# 1. Check if Motia running
lsof -i :3000

# 2. Start if needed
cd $PROJECT_ROOT/data_sources/motia
npx motia dev

# 3. Trigger (auto-finds latest call!)
curl -s -X POST http://localhost:3000/gong/trigger \
  -H "Content-Type: application/json" \
  -d '{"dim_domain_id": "hp.com"}' | jq .

What It Does

Gong Call → Claude + Gemini → Opus Arbiter → Notion + Jira
  1. Fetch transcript from ClickHouse
  2. Discover client (agency, Epic)
  3. Parallel analysis (Claude + Gemini)
  4. Opus Arbiter merge (Rule 8 anti-hallucination)
  5. Create Notion page
  6. Add Jira comments (with Notion link)
  7. Create new Jira tickets

Monitor

# Quick status
redis-cli GET "motia:state:pipelines:p-ID" | python3 -m json.tool

# Or open Workbench
open http://localhost:3000

Test Clients

curl -s POST :3000/gong/trigger -d '{"dim_domain_id":"hp.com"}'
curl -s POST :3000/gong/trigger -d '{"dim_domain_id":"earthjustice.org"}'
curl -s POST :3000/gong/trigger -d '{"dim_domain_id":"kaiserpermanente.org"}'

Key Files

| File | Purpose | |------|---------| | data_sources/motia/src/gong/trigger-pipeline.step.ts | API | | data_sources/motia/src/analysis/synthesize_step.py | Opus Arbiter | | data_sources/motia/src/jira/jira_executor.py | Jira API |


Version: 2026-01-24 — Consolidated from gong-to-jira-notion + motia-gong-pipeline