A Clawdbot skill for processing client call transcripts into actionable ClickUp tasks.
- Pulls transcripts from Fathom (call recording tool)
- Extracts actionable items — features, bugs, enhancements, action items
- Deduplicates against ClickUp — checks for existing tasks before creating new ones
- Confirms with user — shows full ticket preview, asks for approval
- Creates tasks — with proper notation matching your project's existing style
clawdhub install call-processorClone to your skills directory:
git clone https://github.com/YOUR_ORG/call-processor.git ~/clawd/skills/call-processorEdit references/projects.json with your project aliases:
{
"PROJECT_NAME": {
"aliases": ["alias1", "alias2"],
"contacts": ["Contact Name"]
}
}This skill depends on the ClickUp skill being installed and configured.
This skill uses the Fathom skill to pull transcripts.
"Process the MHP Pros call from today"
"Process yesterday's standup with The Key team"
The agent will:
- Find the call in Fathom
- Pull and analyze the transcript
- For each extracted item:
- Search ClickUp for existing similar tasks
- Show you the match (if found) with options
- Show full ticket preview
- Wait for your approval (Y/N/Comment/Update/Skip)
- Create approved tasks with correct notation
call-processor/
├── SKILL.md # Main skill instructions (loaded by Clawdbot)
├── README.md # This file
├── .gitignore # Excludes private data
├── scripts/ # Utility scripts
│ ├── context.py # Get project context
│ ├── tickets.py # List/search ClickUp tickets
│ └── roadmap.py # Get feature roadmap
├── references/ # Reference data (customize for your org)
│ └── projects.json # Project aliases and contacts
├── templates/ # Output templates (optional)
├── cache/ # [GITIGNORED] Cached ClickUp structure
└── calls/ # [GITIGNORED] Call transcripts & extractions
These directories contain client-specific data and should NOT be committed:
cache/— Contains your ClickUp workspace IDs and list mappingscalls/— Contains actual call transcripts and extracted items with client discussions
These can be safely shared with your team:
SKILL.md— The workflow instructionsscripts/— Utility scripts (no hardcoded IDs)references/projects.json— Template with placeholder valuestemplates/— Output templates
- ClickUp skill — Task management
- Fathom skill — Call transcripts
MIT