Interactive daily standup/meeting update generator. Use when user says 'daily', 'standup', 'scrum update', 'status update', 'what did I do yesterday', 'prepare for meeting', 'morning update', or 'team sync'. Pulls activity from GitHub, Jira, and Claude Code session history. Conducts 4-question interview (yesterday, today, blockers, discussion topics) and generates formatted Markdown update.
View on GitHubsoftaworks/agent-toolkit
naming-analyzer
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/softaworks/agent-toolkit/blob/main/skills/daily-meeting-update/SKILL.md -a claude-code --skill daily-meeting-updateInstallation paths:
.claude/skills/daily-meeting-update/# Daily Meeting Update Generate a daily standup/meeting update through an **interactive interview**. Never assume tools are configured—ask first. --- ## Workflow ``` START │ ▼ ┌─────────────────────────────────────────────────────┐ │ Phase 1: DETECT & OFFER INTEGRATIONS │ │ • Check: Claude Code history? gh CLI? jira CLI? │ │ • Claude Code → Pull yesterday's session digest │ │ → User selects relevant items via multiSelect │ │ • GitHub/Jira → Ask user, pull if approved │ │ • Pull data NOW (before interview) │ ├─────────────────────────────────────────────────────┤ │ Phase 2: INTERVIEW (with insights) │ │ • Show pulled data as context │ │ • Yesterday: "I see you merged PR #123, what else?" │ │ • Today: What will you work on? │ │ • Blockers: Anything blocking you? │ │ • Topics: Anything to discuss at end of meeting? │ ├─────────────────────────────────────────────────────┤ │ Phase 3: GENERATE UPDATE │ │ • Combine interview answers + tool data │ │ • Format as clean Markdown │ │ • Present to user │ └─────────────────────────────────────────────────────┘ ``` --- ## Phase 1: Detect & Offer Integrations ### Step 1: Silent Detection Check for available integrations **silently** (suppress errors, don't show to user): | Integration | Detection | |-------------|-----------| | **Claude Code History** | `~/.claude/projects` directory exists with `.jsonl` files | | GitHub CLI | `gh auth status` succeeds | | Jira CLI | `jira` command exists | | Atlassian MCP | `mcp__atlassian__*` tools available | | Git | Inside a git repository | ### Step 2: Offer GitHub/Jira Integrations (if available) > **Claude Code users:** Use `AskUserQuestionTool` tool for all questions in this phase. **GitHub/Git:** If `HAS_GH` or `HAS_GIT`: ``` "I detected you h