Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/llm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ atl config list # shows Aliases section with (current) marker

Aliases can be used with the \`--hostname\` flag to target an environment for a single command: \`atl auth status --hostname prod\`

Jira commands are under \`atl jira\` (\`atl jira issue\`, \`atl jira board\`, \`atl jira sm\`, \`atl jira sprint\`). The bare \`atl issue\`/\`atl board\`/\`atl sm\` forms still work as deprecated aliases (they warn) and may be removed.

### Jira Issues

\`\`\`bash
Expand Down Expand Up @@ -237,6 +239,16 @@ atl jira issue sprint PROJ-1234 --sprint-id 123
atl jira issue sprint PROJ-1234 --backlog
atl jira issue sprint --list-sprints --board 42

# Sprint lifecycle (atl jira sprint)
atl jira sprint create --board 42 --name "Sprint 30" --goal "..." # future sprint
atl jira sprint create --board 42 --name "Sprint 30" --start --duration 14d # create + start
atl jira sprint edit 123 --goal "Updated goal"
atl jira sprint start 123 --duration 14d
atl jira sprint close 123 # prompts unless --force
atl jira sprint list --board 42 [--state active,future,closed]
Comment thread
Hinne1 marked this conversation as resolved.
atl jira sprint move NX-1 NX-2 --to 123 # or --sprint "name" --board 42
atl jira sprint backlog NX-1

# Comments (subcommand pattern, supports Markdown)
atl jira issue comment list PROJ-1234 # List comments
atl jira issue comment add PROJ-1234 --body "Comment with **bold** and \`code\`"
Expand Down