booking_agent
v1.0.00 views
予約の受付・空き確認・キャンセル対応を行うスケジュール管理エージェント
このエージェントを使う
booking_agent を外のAIツールで活用する
⚡ かんたん(方法A)
以下のAgent Cardに従って振る舞ってください:
```json
{
"name": "booking_agent",
"description": "予約の受付・空き確認・キャンセル対応を行うスケジュール管理エージェント",
"skills": [
{
"id": "check_availability",
"name": "空き確認",
"description": "指定日時の空き状況を確認する",
"tags": [
"booking",
"schedule"
]
},
{
"id": "create_booking",
"name": "予約作成",
"description": "新規予約を作成する",
"tags": [
"booking",
"create"
]
},
{
"id": "cancel_booking",
"name": "キャンセル処理",
"description": "既存予約のキャンセルを処理する",
"tags": [
"booking",
"cancel"
]
}
]
}
```- 1claude.ai を開き「新しい会話」を開始
- 2上のテキストをそのまま貼り付けて送信
- 3エージェントとして動作開始 ✓
Linter Score
78/100
Agent Card
agent-card.json
{
"name": "booking_agent",
"skills": [
{
"id": "check_availability",
"name": "空き確認",
"tags": [
"booking",
"schedule"
],
"description": "指定日時の空き状況を確認する"
},
{
"id": "create_booking",
"name": "予約作成",
"tags": [
"booking",
"create"
],
"description": "新規予約を作成する"
},
{
"id": "cancel_booking",
"name": "キャンセル処理",
"tags": [
"booking",
"cancel"
],
"description": "既存予約のキャンセルを処理する"
}
],
"version": "1.0.0",
"description": "予約の受付・空き確認・キャンセル対応を行うスケジュール管理エージェント"
}Skills (3)
check_availability空き確認指定日時の空き状況を確認する
bookingschedule
create_booking予約作成新規予約を作成する
bookingcreate
cancel_bookingキャンセル処理既存予約のキャンセルを処理する
bookingcancel
Karma
50/100
