insightslisted
Install: claude install-skill lttr/claude-marketplace
# Insights
Multi-op skill. Dispatch on first word of `$ARGUMENTS`.
## Dispatch
| Op | First word | Reference |
| ----------- | ------------------ | ----------------------- |
| **daily** | `daily [date]` | `references/daily.md` |
| **weekly** | `weekly [date]` | `references/weekly.md` |
| **catchup** | `catchup` | `references/catchup.md` |
| **view** | `view` (dashboard) | `references/view.md` |
Empty / unknown → ask user.
## Data Sources
| Source | Tool | Data |
| ---------------- | ------------------ | --------------------------------------- |
| Azure PRs | `az repos pr list` | PRs opened, merged, reviewed |
| Azure Work Items | `az boards query` | Tickets started, completed, in progress |
| Local Git | `git log` | Commits in current repo |
| Confluence | Atlassian MCP | Recently modified pages |
## Workflow
1. Parse op from `$ARGUMENTS`
2. Read corresponding `references/<op>.md`
3. Execute steps — collectors live in `${CLAUDE_SKILL_DIR}/collectors/`, templates in `${CLAUDE_SKILL_DIR}/templates/`, dashboard in `${CLAUDE_SKILL_DIR}/dashboard/`
## Prerequisites
```bash
az devops configure --defaults organization=https://dev.azure.com/YOUR_ORG project=YOUR_PROJECT
az login
```
Confluence integration: requires Atlassian MCP server. Skipped silently if absent.
## Output Struc