Skip to main content

yc-bench task-inspect

Get comprehensive details about a specific task including requirements, progress, timeline, and assignment information.

Usage

yc-bench task-inspect <task-id>

Parameters

task-id
string
required
The ID of the task to inspect

Response

Returns detailed task information:
id
string
Unique task identifier
title
string
Task title/description
status
string
Current status: planned, in_progress, completed, or cancelled
payment
number
Payment in dollars upon completion
prestigeReward
number
Prestige points gained upon completion
requiredHours
number
Total hours required to complete
hoursCompleted
number
Hours of work completed so far
progress
number
Completion percentage (0-100)
requiredTier
string
Minimum employee tier required
assignedEmployee
object | null
Details of assigned employee, or null if unassigned
acceptedAt
string
When task was accepted (ISO 8601 format)
startedAt
string | null
When work began, or null if not started
deadline
string
Task deadline (ISO 8601 format)
daysUntilDeadline
number
Days remaining until deadline
expectedCompletion
string | null
Estimated completion date based on current progress
onTrack
boolean
Whether task is on track to meet deadline

Example

# Inspect a specific task
yc-bench task-inspect task_123
Example Output
{
  "id": "task_123",
  "title": "Build React dashboard for analytics",
  "status": "in_progress",
  "payment": 8000,
  "prestigeReward": 3,
  "requiredHours": 120,
  "hoursCompleted": 54,
  "progress": 45,
  "requiredTier": "mid",
  "assignedEmployee": {
    "id": "emp_002",
    "name": "Bob Smith",
    "tier": "mid",
    "productivity": 0.95
  },
  "acceptedAt": "2024-01-10T00:00:00.000Z",
  "startedAt": "2024-01-15T00:00:00.000Z",
  "deadline": "2024-02-15T00:00:00.000Z",
  "daysUntilDeadline": 20,
  "expectedCompletion": "2024-02-12T00:00:00.000Z",
  "onTrack": true
}

Use Cases

  • Monitor task progress and timeline
  • Check if task will meet deadline
  • Verify employee assignment and productivity
  • Evaluate task value (payment vs. effort)
  • Track completion percentage

Build docs developers (and LLMs) love