Provide real-time visibility into workflow execution, showing current step, progress, blockers, and full execution trace for debugging and monitoring.
/plugin marketplace add marcel-Ngan/ai-dev-team/plugin install marcel-ngan-ai-dev-team@marcel-Ngan/ai-dev-teamThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Provide real-time visibility into workflow execution, showing current step, progress, blockers, and full execution trace for debugging and monitoring.
| Status | Icon | Description |
|---|---|---|
| Not Started | āŖ | Workflow queued |
| In Progress | š | Currently executing |
| Blocked | š« | Waiting on input/dependency |
| Completed | ā | Successfully finished |
| Failed | ā | Error occurred |
| Cancelled | ā¹ļø | Manually cancelled |
| Status | Icon | Description |
|---|---|---|
| Pending | ā³ | Not yet started |
| Active | š | Currently executing |
| Blocked | š« | Waiting on something |
| Completed | ā | Step finished |
| Skipped | āļø | Conditionally skipped |
| Failed | ā | Step failed |
interface WorkflowTrace {
// Identity
trace_id: string;
workflow_name: string;
workflow_version: string;
// Timing
started_at: string;
ended_at?: string;
duration_ms?: number;
// Status
status: WorkflowStatus;
current_step?: string;
current_agent?: string;
// Progress
steps: Array<{
step_number: number;
step_name: string;
agent: string;
status: StepStatus;
started_at?: string;
ended_at?: string;
duration_ms?: number;
// Step details
input?: any;
output?: any;
decisions?: string[];
artifacts?: string[];
error?: string;
}>;
// Blockers
blockers: Array<{
step: string;
description: string;
waiting_for: string;
since: string;
resolution?: string;
}>;
// Artifacts
artifacts_created: string[];
// Context
trigger: string;
initiator: string;
related_tickets: string[];
}
## Workflow: {{workflow_name}}
**Status:** {{status_icon}} {{status}}
**Started:** {{start_time}}
**Duration:** {{duration}}
### Progress
{{step_visualization}}
Example: ā Step 1: Orchestrator Receives (5 min) ā Step 2: BA Analyzes (25 min) š Step 3: PO Validates (in progress) ā³ Step 4: Architect Reviews ā³ Step 5: QA Reviews ā³ Step 6: Orchestrator Finalizes
### Current Step
**Agent:** {{current_agent}}
**Step:** {{current_step}}
**Started:** {{step_start}}
**Duration:** {{step_duration}}
## Workflow Timeline
Time (minutes) 0 5 10 15 20 25 30 35 40 |----|----|----|----|----|----|----|----| [Orchestrator ] [ Business Analyst ] [PO...]
### Step Details
| Step | Agent | Start | End | Duration | Status |
|------|-------|-------|-----|----------|--------|
{{step_table}}
### Performance
- Total Duration: {{total_duration}}
- Longest Step: {{longest_step}} ({{longest_duration}})
- Average Step: {{avg_duration}}
## Current Blockers
### š« Blocker: {{blocker_description}}
**Step:** {{blocked_step}}
**Agent:** {{blocked_agent}}
**Since:** {{blocked_since}} ({{blocked_duration}})
**Waiting For:**
{{waiting_for}}
**Impact:**
- Workflow delayed by {{delay}}
- Downstream steps affected: {{affected_steps}}
**Resolution Options:**
1. {{resolution_1}}
2. {{resolution_2}}
**Escalated To:** {{escalation_target}}
## Active Workflows
| Workflow | Status | Current Step | Agent | Duration |
|----------|--------|--------------|-------|----------|
{{active_workflows}}
### Summary
- Active: {{active_count}}
- Blocked: {{blocked_count}}
- Avg Duration: {{avg_duration}}
## Workflow History: {{workflow_name}}
### Last 10 Executions
| Trace ID | Started | Status | Duration | Artifacts |
|----------|---------|--------|----------|-----------|
{{history_table}}
### Statistics
- Success Rate: {{success_rate}}%
- Avg Duration: {{avg_duration}}
- Common Blockers: {{common_blockers}}
## Trace: {{trace_id}}
### Overview
- Workflow: {{workflow_name}}
- Status: {{status}}
- Duration: {{duration}}
- Artifacts: {{artifact_count}}
### Execution Log
{{execution_log}}
### Decisions Made
{{decisions_list}}
### Artifacts Created
{{artifacts_list}}
interface TraceEvent {
event_type: 'step_started' | 'step_completed' | 'blocked' | 'decision' | 'completed';
trace_id: string;
timestamp: string;
data: {
step?: string;
agent?: string;
details?: any;
};
}
## Status Check
**Endpoint:** /workflow/{{trace_id}}/status
**Response:**
```json
{
"status": "in_progress",
"current_step": "PO Validates",
"progress": 3,
"total_steps": 6,
"percent_complete": 50,
"estimated_remaining": "15 minutes",
"blockers": []
}
---
## Performance Analysis
### Step Performance
```markdown
## Step Performance Analysis
### {{workflow_name}} - Last 30 Days
| Step | Avg Duration | P50 | P95 | Trend |
|------|--------------|-----|-----|-------|
{{step_performance}}
### Bottlenecks Identified
1. **{{bottleneck_step}}**: {{bottleneck_analysis}}
- Recommendation: {{recommendation}}
### Performance Trends
{{trend_chart}}
observability-activity-log - Detailed activityobservability-decision-trail - Decision trackingjira-reporting - Status reportingAtlassian:addCommentToJiraIssue - Progress updatesAtlassian:createConfluencePage - Trace documentationThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.