List Claudia Tasks

VerifiedSafe

Lists all tasks in the Claudia orchestrator via the test CLI. Use this skill to view running, completed, or errored tasks along with their IDs, names, statuses, and workspaces. Optionally, pass a specific task ID to get detailed information about that task.

Sby Skills Guide Bot
DevelopmentIntermediate
506/2/2026
Claude Code
#claudia#orchestrator#task-list#cli

Recommended for

Our review

Lists all running or completed tasks in the Claudia orchestrator via a test CLI.

Strengths

  • Quickly shows an overview of tasks with ID, name, status, and workspace
  • Supports detailed info for a specific task when an ID is provided
  • Integrated within the Claudia backend project

Limitations

  • Depends on a local absolute path specific to the machine
  • Requires the Claudia orchestrator to be running
  • Not intended for generic use outside the project
When to use it

When you need to inspect the state of tasks in the Claudia orchestrator during development.

When not to use it

In a production environment or when the Claudia orchestrator is unavailable.

Security analysis

Safe
Quality score75/100

The skill executes a local TypeScript script using npx tsx to list tasks, with no destructive actions, network downloads, or exfiltration. The command is benign and confined to a project directory.

No concerns found

Examples

List all tasks in Claudia orchestrator
Run the test CLI to list all tasks in the Claudia orchestrator at /Users/I850333/projects/experiments/claudia/backend
Get detailed info for a specific task
List tasks in Claudia orchestrator and show details for task with ID 'abc123'

name: list-tasks description: List all tasks in the Claudia orchestrator using the test CLI. Use when you need to see running or completed tasks. allowed-tools: Bash, Read

List Claudia Tasks

Run the test CLI to list all tasks in the orchestrator:

cd /Users/I850333/projects/experiments/claudia/backend && npx tsx test-cli.ts --list-tasks

Format the output nicely showing:

  • Task ID
  • Task name
  • Status (running/completed/error)
  • Workspace

If $ARGUMENTS contains a task ID, also show detailed info for that specific task.

Related skills