Recipes¶
Real-world workflows and use cases for atlcli.
Workflows¶
- Team Docs Sync - Sync team documentation with Confluence
- Sprint Reporting - Automated sprint reports
- CI/CD Docs - Publish documentation from CI/CD
- Issue Triage - Bulk issue triage workflow
Common Patterns¶
Daily Standup Prep¶
#!/bin/bash
# standup.sh - Show what you worked on yesterday and today's plan
echo "=== Yesterday ==="
atlcli jira search --assignee me --updated 1d --status Done
echo "=== In Progress ==="
atlcli jira search --assignee me --status "In Progress"
echo "=== Time Logged ==="
atlcli jira worklog report --user me --from yesterday
Release Notes¶
#!/bin/bash
# release-notes.sh - Generate release notes from fixed issues
VERSION=$1
atlcli jira search --jql "fixVersion = '$VERSION' AND status = Done" --json | \
jq -r '.issues[] | "- \(.fields.summary) (\(.key))"'