Skip to main content
ClaudeWave
Slash Command57.6k repo starsupdated today

time-orchestrator

The time-orchestrator command retrieves the current time in Dubai (GST, UTC+4) using a time-agent subagent, then generates a visual SVG time card displaying the fetched time data. Use this command when you need to display Dubai's current time in a formatted, visually styled card format for dashboards, reports, or time-zone-specific applications.

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/shanraisshan/claude-code-best-practice/HEAD/agent-teams/.claude/commands/time-orchestrator.md -o ~/.claude/commands/time-orchestrator.md
Then start a new Claude Code session; the slash command loads automatically.

time-orchestrator.md

# Time Orchestrator Command

Fetch the current time for Dubai (Asia/Dubai, UTC+4) and create a visual SVG time card.

## Workflow

### Step 1: Fetch Current Dubai Time

Use the Agent tool to invoke the time agent:
- subagent_type: time-agent
- description: Fetch current Dubai time
- prompt: Fetch the current time for Dubai (Asia/Dubai, UTC+4). Return exactly three fields: `time` (the time portion, e.g. "14:30:45"), `timezone` ("GST (UTC+4)"), and `formatted` (full formatted string, e.g. "2026-03-12 14:30:45 +04"). The agent has a preloaded skill (time-fetcher) that provides the detailed instructions.
- model: haiku

Wait for the agent to complete and capture the returned time data.

### Data Contract

The time-agent MUST return these three fields:
- **time**: The time portion (e.g., "14:30:45")
- **timezone**: "GST (UTC+4)"
- **formatted**: Full formatted string (e.g., "2026-03-12 14:30:45 +04")

### Step 2: Create SVG Time Card

Use the Skill tool to invoke the time-svg-creator skill:
- skill: time-svg-creator
- args: Pass the time data from Step 1 — include `time`, `timezone`, and `formatted` values

The skill will use the time data from Step 1 (available in the current context) to create the SVG card and write output files.

## Critical Requirements

1. **Use Agent Tool for time-agent**: DO NOT use bash commands to invoke agents. You must use the Agent tool with `subagent_type: "time-agent"`.
2. **Use Skill Tool for SVG Creator**: Invoke the SVG creator via the Skill tool with `skill: "time-svg-creator"`, not the Agent tool.
3. **Sequential Flow**: The agent MUST complete and return time data before the skill is invoked. Do not run them in parallel.
4. **Data Passing**: Ensure all three fields (time, timezone, formatted) from the agent response are available in context when invoking the skill.

## Output Summary

After both steps complete, provide a clear summary to the user showing:
- Current Dubai time fetched
- Timezone: GST (UTC+4)
- Full formatted timestamp
- SVG card created at `agent-teams/output/dubai-time.svg`
- Summary written to `agent-teams/output/output.md`
development-workflows-research-agentSubagent

Research agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositories

presentation-claude-codeSubagent

PROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-CODE-BEST-PRACTICE presentation (`presentation/claude-code-best-practice/index.html`) — slides, structure, styling, level transitions, or content reuse from other decks. This is the canonical reusable Claude Code best-practices deck. Do NOT use this agent for the vibe-coding presentation (use `presentation-vibe-coding`) or the GDG Kolachi claude-gemini presentation (use `presentation-claude-gemini`).

presentation-claude-geminiSubagent

PROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-GEMINI presentation (`presentation/2026-04-25-gdg-kolachi-cli-claude-code-gemini/index.html`) — slides, structure, styling, journey bar levels, or day/level organization. Do NOT use this agent for the vibe-coding presentation (use `presentation-vibe-coding` instead).

presentation-vibe-codingSubagent

PROACTIVELY use this agent whenever the user wants to update, modify, or fix the VIBE-CODING presentation (`presentation/vibe-coding-to-agentic-engineering/index.html`) — slides, structure, styling, or level transitions. Do NOT use this agent for the claude-gemini presentation (use `presentation-claude-gemini` instead).

time-agent-pktSubagent

Use this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)

weather-agentSubagent

Use this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.

time-commandSlash Command

Display the current time in Pakistan Standard Time (PKT, UTC+5)

weather-orchestratorSlash Command

Fetch Dubai weather and create an SVG weather card