# AI Meeting Notes to Action Tracker with n8n + Jodoo

Use this workflow when meeting notes contain decisions, follow-up items, owners, due dates, and blockers that should become tracked work in Jodoo.

## What The Workflow Does

1. An n8n Webhook node receives a meeting-note payload.
2. A Code or AI Agent step returns structured action fields.
3. HTTP Request posts the action object to the Jodoo writeback layer.
4. Jodoo stores the follow-up item in a shared tracker with owner queues, due-date views, and blocker review.

## Jodoo App Pattern

App: AI Meeting Action Tracker  
Form: Meeting Action Record

Recommended fields:

- Meeting Title
- Meeting Date
- Source Notes
- Decision Summary
- Action Item
- Owner
- Due Date
- Priority
- Risk or Blocker
- Follow-up Status
- Source Platform
- Agent Confidence
- Original Agent Output

Recommended views:

- Open action items
- Due this week
- Blocked or at risk
- Owner queue
- All meeting actions

## n8n Workflow Notes

Keep the first version compact and inspectable:

- Webhook receives the source note or transcript summary.
- Code, Set, or AI Agent node returns one action-item object.
- HTTP Request sends the structured JSON payload to the Jodoo writeback layer.
- Execution view confirms each node completed and the response includes a Jodoo data ID.

When sending the previous node output as a body field, use a JSON string expression such as:

```txt
{{ JSON.stringify($json) }}
```

This keeps the request body parseable instead of sending `[object Object]`.

## Production Notes

Use synthetic meeting notes for the first test run. Before using production transcripts, confirm data retention, access control, and who is allowed to review generated follow-up items.

For production use, add retry handling, error notifications, and a review queue for missing owners, unclear dates, or low-confidence output.

## Reuse Checklist

- Replace the sample meeting note with your real meeting source.
- Keep the output schema stable before connecting more transcript sources.
- Match priority and follow-up status values to your Jodoo options.
- Confirm the HTTP Request body remains valid JSON after editing expressions.
- Review the first several runs before enabling automated notifications.
