From 32daf5394f36781d23ac810682082752eeb9cfeb Mon Sep 17 00:00:00 2001 From: Hinne Stolzenberg Date: Tue, 23 Jun 2026 09:52:35 +0200 Subject: [PATCH] docs: refresh atl Jira docs to `atl jira` namespace + add sprint lifecycle - Add one-line note before ### Jira Issues clarifying that bare atl issue/board/sm are deprecated aliases - Add sprint lifecycle block (atl jira sprint create/edit/start/close/list/move/backlog) from atl v1.8.0 Claude-Session: https://claude.ai/code/session_01BtsGd9FVEFf5L7FZZJvrLu --- lib/llm/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/llm/index.js b/lib/llm/index.js index 9c89cfa..61627ae 100644 --- a/lib/llm/index.js +++ b/lib/llm/index.js @@ -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 @@ -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] +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\`"