Skip to main content

daily-meeting-update

Generates interactive daily standup updates by pulling data from GitHub, Jira, and Claude Code session history.

Install this skill

or
60/100

Security score

The daily-meeting-update skill was audited on Mar 6, 2026 and we found 8 security issues across 2 threat categories, including 1 critical. Review the findings below before installing.

Categories Tested

Security Issues

critical line 283

Piping content to bash shell

SourceSKILL.md
281| Phase | Action | Tool |
282|-------|--------|------|
283| 1. Detect & Offer | Check gh/jira/claude history, ask user, pull data | Bash (silent), AskUserQuestionTool* |
284| 2. Interview | Ask 4 questions with insights | AskUserQuestionTool* |
285| 3. Generate | Format Markdown | Output text |
medium line 51

Access to home directory dotfiles

SourceSKILL.md
49| Integration | Detection |
50|-------------|-----------|
51| **Claude Code History** | `~/.claude/projects` directory exists with `.jsonl` files |
52| GitHub CLI | `gh auth status` succeeds |
53| Jira CLI | `jira` command exists |
low line 112

Access to home directory dotfiles

SourceSKILL.md
110**Detection:**
111```bash
112ls ~/.claude/projects/*/*.jsonl 2>/dev/null | head -1
113```
114
low line 128

Access to home directory dotfiles

SourceSKILL.md
126
127```bash
128python3 ~/.claude/skills/daily-meeting-update/scripts/claude_digest.py --format json
129```
130
medium line 150

Access to home directory dotfiles

SourceSKILL.md
148- User explicitly says "No" to Claude Code history
149- User says they'll provide everything manually
150- `~/.claude/projects` directory doesn't exist
151
152**If digest script fails:**
low line 293

Access to home directory dotfiles

SourceSKILL.md
291```bash
292# Get yesterday's sessions as JSON
293python3 ~/.claude/skills/daily-meeting-update/scripts/claude_digest.py --format json
294
295# Get today's sessions
low line 296

Access to home directory dotfiles

SourceSKILL.md
294
295# Get today's sessions
296python3 ~/.claude/skills/daily-meeting-update/scripts/claude_digest.py --date today --format json
297
298# Filter to specific project
low line 299

Access to home directory dotfiles

SourceSKILL.md
297
298# Filter to specific project
299python3 ~/.claude/skills/daily-meeting-update/scripts/claude_digest.py --project ~/my-app --format json
300```
301
Scanned on Mar 6, 2026
View Security Dashboard