Add vektor issue view command #10
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Blocks
Depends on
#11 Add
vektor issue update command
austin/vektor
#30 Build issue detail page
austin/vektor
#9 Add
vektor issue list with filtering
austin/vektor
Reference
austin/vektor#10
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
View a single issue's full details from the CLI using human-readable references.
What needs to happen
CLI:
vektor issue view VEK-3Parse the argument by splitting on
-to extract project key and issue number. Display: title, status, priority, description (if any), created by, created at, updated at.Backend change needed:
Add a new endpoint:
GET /api/projects/{projectKey}/issues/{number}. The current API only has list and update-by-UUID — there's no way to fetch a single issue by its human-readable identifier.Key files
internal/api/issues.go— new handler for single issue by numberinternal/api/server.go— new route registrationvektor issue listwith filteringvektor issue updatecommand