feat: add /jira-my-tasks workflow#25
Merged
Merged
Conversation
Fetches open (not Done) Jira issues assigned to the user via the REST API, groups them by status, and writes a dated markdown snapshot to ~/src/my_tasks/YYYY-MM-DD.md for daily standup/planning use. Credentials are passed to curl via a chmod 600 config file instead of -u on the command line to avoid leaking them through ps/process listings, and prerequisite tools are checked before running.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/jira-my-tasksslash command: fetches open (not Done) Jira issues assigned to the user via the REST API, groups them by status (In Progress / Ready for Testing / Backlog), and writes a dated markdown snapshot to~/src/my_tasks/YYYY-MM-DD.md.curlvia a chmod 600 config file (-K) instead of-uon the command line, avoiding exposure throughps/process listings.curl/python3and an explicit idempotency note (safe to rerun — only overwrites today's snapshot).Note: this workflow intentionally deviates from the repo's
./<name>-reports/<name>-<timestamp>.mdreport convention — it produces a running daily snapshot file rather than a one-off diagnostic report, which fits its "check my tasks each day" use case.Test plan
./scripts/validate-repo.shpasses (frontmatter, README links, script executability, settings.json).workflow-authorsubagent; all must-fix findings (credential leakage via command-line args, missing prerequisite checks, missing idempotency note) addressed.~/.jira-credentials+ Jira project to confirm output formatting (not run in this session — no live credentials).