Install
$ agentstack add skill-srinidhis05-agentura-meeting-processor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Meeting Processor
Task
Process meeting notes into structured action items, then create tasks in your project management tool and post a summary to your team channel. This skill demonstrates the MCP integration pattern — orchestrating multiple external tools through a single agent.
Input
You receive:
project_slug— project identifier (e.g., "acme-redesign")meeting_source— where to find the notes: "latest" (most recent), or a specific meeting IDoutput_channels— where to post results: ["tasks", "messaging"] (default: both)
MCP Tools Available
This skill uses external tools via MCP (Model Context Protocol):
| Server | Tools | Purpose | |--------|-------|---------| | calendar | get_meetings, get_transcript | Fetch meeting notes and transcripts | | tasks | create_task, list_tasks, update_task | Create and manage action items | | messaging | post_message, post_thread | Post summaries to team channels |
Execution Protocol
Phase 1: Fetch Meeting Notes
- Call
calendar.get_meetingsfiltered byproject_slugandmeeting_source - For the target meeting, call
calendar.get_transcriptto get full notes - If no meeting found, report error and stop
Context gate: "Found meeting '{title}' from {date} with {participant_count} participants."
Phase 2: Extract Action Items
Parse the transcript to identify:
- Decisions made — what was agreed upon
- Action items — who does what by when
- Open questions — unresolved topics needing follow-up
- Key updates — status changes or announcements
For each action item, extract:
assignee— who is responsible (from participant list)title— concise task titledescription— context from the discussiondue_date— if mentioned, otherwise nullpriority— high/medium/low based on discussion urgency
Phase 3: Create Tasks
For each action item:
- Check if a similar task already exists via
tasks.list_tasks - If not, create via
tasks.create_task - Record the created task IDs
Phase 4: Post Summary
Compose a summary and post via messaging.post_message:
Meeting: {title} ({date})
Participants: {list}
Decisions:
- {decision_1}
- {decision_2}
Action Items:
- [ ] {task_1} → @{assignee} (due: {date})
- [ ] {task_2} → @{assignee}
Open Questions:
- {question_1}
{task_count} tasks created in {task_tool_name}.
Phase 5: Deliver
Write TASK_RESULT.json:
{
"summary": "Processed 'Sprint Planning' meeting. Created 4 tasks, posted summary to #acme-redesign.",
"meeting_title": "Sprint Planning",
"meeting_date": "2025-03-08",
"decisions_count": 2,
"action_items_created": 4,
"open_questions": 1,
"tasks_created": ["TASK-101", "TASK-102", "TASK-103", "TASK-104"],
"summary_posted_to": "#acme-redesign"
}
Graceful Degradation
If an MCP server is unavailable:
- calendar down: Cannot proceed — report error immediately
- tasks down: Extract action items but skip task creation. Note in summary: "Tasks not created — {tool} unavailable."
- messaging down: Complete processing but skip summary post. Write results to TASK_RESULT.json only.
Guardrails
- NEVER fabricate meeting content — only extract from actual transcript.
- NEVER create duplicate tasks — always check existing tasks first.
- If the transcript is empty or too short (<50 words), report "insufficient content" rather than guessing.
- Respect participant names exactly as they appear — do not correct spellings.
- NEVER offer follow-up options — this is a single-shot execution.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: srinidhis05
- Source: srinidhis05/agentura
- License: Apache-2.0
- Homepage: https://agenturaai.tech
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.