replace Oishii example with time orchestrator built by agent teams
Agent teams now bootstrap a self-contained time orchestration workflow inside agent-teams/.claude/ (command, agent, skill). The prompt, diagram, and How to Use section all reference the new time-orchestrator pattern with cd agent-teams && claude → /time-orchestrator. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
---
|
||||
name: time-fetcher
|
||||
description: Instructions for fetching current Dubai time via bash command
|
||||
user-invocable: false
|
||||
---
|
||||
|
||||
## Dubai Time Fetcher
|
||||
|
||||
### Command
|
||||
|
||||
```bash
|
||||
TZ='Asia/Dubai' date '+%Y-%m-%d %H:%M:%S %Z'
|
||||
```
|
||||
|
||||
### Expected Output Format
|
||||
|
||||
`YYYY-MM-DD HH:MM:SS +04` (Gulf Standard Time)
|
||||
|
||||
### Timezone Details
|
||||
|
||||
- Timezone: Asia/Dubai
|
||||
- Offset: UTC+4
|
||||
- Abbreviation: GST (Gulf Standard Time)
|
||||
- Dubai does not observe daylight saving time
|
||||
|
||||
### Return Format
|
||||
|
||||
Provide the following fields:
|
||||
- `time`: Just the time portion (HH:MM:SS)
|
||||
- `timezone`: "GST (UTC+4)"
|
||||
- `formatted`: The full output string from the command
|
||||
@@ -0,0 +1,30 @@
|
||||
---
|
||||
name: time-svg-creator
|
||||
description: Creates an SVG time card showing the current time for Dubai. Writes the SVG to agent-teams/output/dubai-time.svg and updates agent-teams/output/output.md.
|
||||
allowed-tools: Write, Read
|
||||
---
|
||||
|
||||
# Time SVG Creator Skill
|
||||
|
||||
Creates a visual SVG time card for Dubai, UAE and writes the output files.
|
||||
|
||||
## Task
|
||||
|
||||
You will receive three fields from the calling context: `time`, `timezone`, and `formatted`. Create an SVG time card and write both the SVG and a markdown summary.
|
||||
|
||||
## Instructions
|
||||
|
||||
1. **Create SVG** — Use the SVG template from [reference.md](reference.md), replacing placeholders with actual values
|
||||
2. **Write SVG file** — Write to `agent-teams/output/dubai-time.svg`
|
||||
3. **Write summary** — Write to `agent-teams/output/output.md` using the markdown template from [reference.md](reference.md)
|
||||
|
||||
## Rules
|
||||
|
||||
- Use the EXACT time values provided — NEVER re-fetch or recalculate
|
||||
- The SVG must be self-contained and valid
|
||||
- Both output files go in the `agent-teams/output/` directory
|
||||
|
||||
## Additional resources
|
||||
|
||||
- For SVG template, output template, and design specs, see [reference.md](reference.md)
|
||||
- For example input/output pairs, see [examples.md](examples.md)
|
||||
@@ -0,0 +1,89 @@
|
||||
# Time SVG Creator — Examples
|
||||
|
||||
## Example 1: Afternoon
|
||||
|
||||
### Input
|
||||
|
||||
```
|
||||
time: 14:30:45
|
||||
timezone: GST (UTC+4)
|
||||
formatted: 2026-03-12 14:30:45 +04
|
||||
```
|
||||
|
||||
### SVG Output (`agent-teams/output/dubai-time.svg`)
|
||||
|
||||
```svg
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250" width="400" height="250">
|
||||
<defs>
|
||||
<linearGradient id="bg" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#0a1628"/>
|
||||
<stop offset="100%" style="stop-color:#1a2744"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect width="400" height="250" rx="16" fill="url(#bg)"/>
|
||||
<text x="200" y="50" text-anchor="middle" fill="#8892b0" font-family="sans-serif" font-size="16" font-weight="600">Dubai Time</text>
|
||||
<text x="200" y="120" text-anchor="middle" fill="#ffffff" font-family="sans-serif" font-size="52" font-weight="bold">14:30:45</text>
|
||||
<text x="200" y="160" text-anchor="middle" fill="#64ffda" font-family="sans-serif" font-size="16">GST (UTC+4)</text>
|
||||
<text x="200" y="195" text-anchor="middle" fill="#ccd6f6" font-family="sans-serif" font-size="14">Dubai, UAE</text>
|
||||
<text x="200" y="225" text-anchor="middle" fill="#8892b0" font-family="sans-serif" font-size="12">2026-03-12</text>
|
||||
</svg>
|
||||
```
|
||||
|
||||
### Markdown Output (`agent-teams/output/output.md`)
|
||||
|
||||
```markdown
|
||||
# Dubai Time Card
|
||||
|
||||
- **Time**: 14:30:45
|
||||
- **Timezone**: GST (UTC+4)
|
||||
- **Date**: 2026-03-12
|
||||
- **Full**: 2026-03-12 14:30:45 +04
|
||||
- **SVG**: `agent-teams/output/dubai-time.svg`
|
||||
|
||||
Generated by time-svg-creator skill.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Example 2: Morning
|
||||
|
||||
### Input
|
||||
|
||||
```
|
||||
time: 08:15:02
|
||||
timezone: GST (UTC+4)
|
||||
formatted: 2026-03-12 08:15:02 +04
|
||||
```
|
||||
|
||||
### SVG Output (`agent-teams/output/dubai-time.svg`)
|
||||
|
||||
```svg
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250" width="400" height="250">
|
||||
<defs>
|
||||
<linearGradient id="bg" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#0a1628"/>
|
||||
<stop offset="100%" style="stop-color:#1a2744"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect width="400" height="250" rx="16" fill="url(#bg)"/>
|
||||
<text x="200" y="50" text-anchor="middle" fill="#8892b0" font-family="sans-serif" font-size="16" font-weight="600">Dubai Time</text>
|
||||
<text x="200" y="120" text-anchor="middle" fill="#ffffff" font-family="sans-serif" font-size="52" font-weight="bold">08:15:02</text>
|
||||
<text x="200" y="160" text-anchor="middle" fill="#64ffda" font-family="sans-serif" font-size="16">GST (UTC+4)</text>
|
||||
<text x="200" y="195" text-anchor="middle" fill="#ccd6f6" font-family="sans-serif" font-size="14">Dubai, UAE</text>
|
||||
<text x="200" y="225" text-anchor="middle" fill="#8892b0" font-family="sans-serif" font-size="12">2026-03-12</text>
|
||||
</svg>
|
||||
```
|
||||
|
||||
### Markdown Output (`agent-teams/output/output.md`)
|
||||
|
||||
```markdown
|
||||
# Dubai Time Card
|
||||
|
||||
- **Time**: 08:15:02
|
||||
- **Timezone**: GST (UTC+4)
|
||||
- **Date**: 2026-03-12
|
||||
- **Full**: 2026-03-12 08:15:02 +04
|
||||
- **SVG**: `agent-teams/output/dubai-time.svg`
|
||||
|
||||
Generated by time-svg-creator skill.
|
||||
```
|
||||
@@ -0,0 +1,69 @@
|
||||
# Time SVG Creator — Reference
|
||||
|
||||
## SVG Template
|
||||
|
||||
```svg
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250" width="400" height="250">
|
||||
<defs>
|
||||
<linearGradient id="bg" x1="0%" y1="0%" x2="0%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#0a1628"/>
|
||||
<stop offset="100%" style="stop-color:#1a2744"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect width="400" height="250" rx="16" fill="url(#bg)"/>
|
||||
<text x="200" y="50" text-anchor="middle" fill="#8892b0" font-family="sans-serif" font-size="16" font-weight="600">Dubai Time</text>
|
||||
<text x="200" y="120" text-anchor="middle" fill="#ffffff" font-family="sans-serif" font-size="52" font-weight="bold">{{TIME}}</text>
|
||||
<text x="200" y="160" text-anchor="middle" fill="#64ffda" font-family="sans-serif" font-size="16">{{TIMEZONE}}</text>
|
||||
<text x="200" y="195" text-anchor="middle" fill="#ccd6f6" font-family="sans-serif" font-size="14">Dubai, UAE</text>
|
||||
<text x="200" y="225" text-anchor="middle" fill="#8892b0" font-family="sans-serif" font-size="12">{{DATE}}</text>
|
||||
</svg>
|
||||
```
|
||||
|
||||
### Placeholders
|
||||
|
||||
| Placeholder | Replace with | Example |
|
||||
|-------------|-------------|---------|
|
||||
| `{{TIME}}` | The `time` value from input | `14:30:45` |
|
||||
| `{{TIMEZONE}}` | The `timezone` value from input | `GST (UTC+4)` |
|
||||
| `{{DATE}}` | Date extracted from `formatted` (first 10 chars) | `2026-03-12` |
|
||||
| `{{FORMATTED}}` | The full `formatted` string (used in markdown only) | `2026-03-12 14:30:45 +04` |
|
||||
|
||||
### Design Specs
|
||||
|
||||
| Property | Value |
|
||||
|----------|-------|
|
||||
| Dimensions | 400 x 250 px |
|
||||
| Corner radius | 16 px |
|
||||
| Background | Linear gradient: `#0a1628` → `#1a2744` (deep navy to dark blue) |
|
||||
| Title | `#8892b0` (muted blue), 16px semibold |
|
||||
| Time display | `#ffffff` (white), 52px bold |
|
||||
| Timezone | `#64ffda` (teal accent), 16px |
|
||||
| Location | `#ccd6f6` (light blue), 14px |
|
||||
| Date | `#8892b0` (muted blue), 12px |
|
||||
| Font | `sans-serif` |
|
||||
| All text | Centered (`text-anchor="middle"` at x=200) |
|
||||
|
||||
---
|
||||
|
||||
## Output Markdown Template
|
||||
|
||||
```markdown
|
||||
# Dubai Time Card
|
||||
|
||||
- **Time**: {{TIME}}
|
||||
- **Timezone**: {{TIMEZONE}}
|
||||
- **Date**: {{DATE}}
|
||||
- **Full**: {{FORMATTED}}
|
||||
- **SVG**: `agent-teams/output/dubai-time.svg`
|
||||
|
||||
Generated by time-svg-creator skill.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Output Paths
|
||||
|
||||
| File | Path |
|
||||
|------|------|
|
||||
| SVG card | `agent-teams/output/dubai-time.svg` |
|
||||
| Markdown summary | `agent-teams/output/output.md` |
|
||||
Reference in New Issue
Block a user