App-karr
view release on metacpan or search on metacpan
lib/App/karr/Cmd/Show.pm view on Meta::CPAN
# ABSTRACT: Show full details of a task
package App::karr::Cmd::Show;
our $VERSION = '0.303';
use Moo;
use MooX::Cmd;
use MooX::Options (
usage_string => 'USAGE: karr show [ID] [--me] [--agent NAME] [--last N] [--json]',
);
use App::karr::Role::BoardAccess;
use App::karr::Role::Output;
use App::karr::Task;
with 'App::karr::Role::BoardAccess', 'App::karr::Role::Output';
option last => (
is => 'ro',
format => 'i',
default => sub { 1 },
doc => 'Number of recent tasks to show (default: 1)',
);
option me => (
is => 'ro',
doc => 'Show the task(s) my identity most recently acted on',
);
option agent => (
is => 'ro',
format => 's',
doc => 'Show the task(s) most recently claimed by this agent name',
);
sub _show_task {
my ($self, $task) = @_;
if ($self->json) {
my $data = $task->to_frontmatter;
$data->{body} = $task->body if $task->body;
$self->print_json($data);
return;
}
printf "Task #%d: %s\n", $task->id, $task->title;
printf "Status: %s\n", $task->status;
printf "Priority: %s\n", $task->priority;
printf "Class: %s\n", $task->class;
printf "Assignee: %s\n", $task->assignee if $task->has_assignee;
printf "Tags: %s\n", join(', ', @{$task->tags}) if @{$task->tags};
printf "Due: %s\n", $task->due if $task->has_due;
printf "Estimate: %s\n", $task->estimate if $task->has_estimate;
printf "Claimed: %s\n", $task->claimed_by if $task->has_claimed_by;
printf "Blocked: %s\n", $task->blocked if $task->has_blocked;
printf "Created: %s\n", $task->created;
printf "Updated: %s\n", $task->updated;
if ($task->body) {
print "\n" . $task->body . "\n";
}
}
# Tasks sorted most-recently-updated first.
sub _by_updated {
my ($self, @tasks) = @_;
return sort { ($b->updated // '') cmp ($a->updated // '') } @tasks;
}
# Task ids the current identity most recently acted on, newest first, deduped.
sub _my_recent_ids {
my ($self, $limit) = @_;
my @ids;
my %seen;
for my $entry (reverse $self->activity_log->entries) {
my $tid = $entry->{task_id};
next unless defined $tid;
next if $seen{$tid}++;
push @ids, $tid;
last if @ids >= $limit;
}
return @ids;
}
sub _select_tasks {
my ($self, $id) = @_;
# Explicit id always wins.
if (defined $id) {
my $task = $self->find_task($id);
die "Task $id not found\n" unless $task;
return ($task);
}
my $limit = $self->last > 0 ? $self->last : 1;
if ($self->me) {
my @tasks = grep { defined } map { $self->find_task($_) } $self->_my_recent_ids($limit);
return @tasks;
}
if (defined $self->agent) {
my @claimed = grep { $_->has_claimed_by && $_->claimed_by eq $self->agent } $self->load_tasks;
my @sorted = $self->_by_updated(@claimed);
return splice(@sorted, 0, $limit);
}
my @sorted = $self->_by_updated($self->load_tasks);
return splice(@sorted, 0, $limit);
}
sub execute {
my ($self, $args_ref, $chain_ref) = @_;
my @tasks = $self->_select_tasks($args_ref->[0]);
unless (@tasks) {
print "No tasks found.\n" unless $self->json;
$self->print_json([]) if $self->json;
return;
}
if ($self->json) {
my @data = map {
my $d = $_->to_frontmatter;
$d->{body} = $_->body if $_->body;
$d;
} @tasks;
# A single explicit lookup stays a bare object for backward compatibility.
$self->print_json(@data == 1 ? $data[0] : \@data);
return;
}
for my $i (0 .. $#tasks) {
$self->_show_task($tasks[$i]);
print "\n" . ('=' x 60) . "\n\n" if $i < $#tasks;
}
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::karr::Cmd::Show - Show full details of a task
=head1 VERSION
version 0.303
=head1 SYNOPSIS
karr show 12 # a specific task
karr show # the most recently updated task
karr show --last 5 # the 5 most recently updated tasks
karr show --me # the last task my identity acted on
karr show --agent fox-owl # the last task claimed by that agent
karr show 12 --json
=head1 DESCRIPTION
Shows the full details of a task, including optional metadata such as tags, due
date, estimate, claim state, and the Markdown body. This is the most complete
human-readable view of an individual card.
With no C<ID>, shows the most recently updated task. C<--last N> widens that to
the C<N> most recently updated. C<--me> instead resolves the task(s) the
current identity most recently acted on (via the activity log). C<--agent NAME>
shows the task(s) most recently claimed by that agent name. C<ID> always wins
over the selector options.
=head1 SEE ALSO
L<karr>, L<App::karr>, L<App::karr::Cmd::List>, L<App::karr::Cmd::Edit>,
L<App::karr::Cmd::Move>, L<App::karr::Cmd::Archive>, L<App::karr::Cmd::Log>
=head1 SUPPORT
=head2 Issues
Please report bugs and feature requests on GitHub at
L<https://github.com/Getty/karr/issues>.
=head2 IRC
Join C<#langertha> on C<irc.perl.org> or message Getty directly.
=head1 CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
=head1 AUTHOR
Torsten Raudssus <getty@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Torsten Raudssus <torsten@raudssus.de> L<https://raudssus.de/>.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
( run in 0.377 second using v1.01-cache-2.11-cpan-bbe5e583499 )