# Send Attendance Sheet to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "attendance-sheet",
    "name": "Attendance Sheet",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/gykdly/attendance-sheet",
    "canonicalUrl": "https://clawhub.ai/gykdly/attendance-sheet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/attendance-sheet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attendance-sheet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/generate_attendance.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "attendance-sheet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T04:42:00.078Z",
      "expiresAt": "2026-05-06T04:42:00.078Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attendance-sheet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attendance-sheet",
        "contentDisposition": "attachment; filename=\"attendance-sheet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "attendance-sheet"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/attendance-sheet"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/attendance-sheet",
    "downloadUrl": "https://openagent3.xyz/downloads/attendance-sheet",
    "agentUrl": "https://openagent3.xyz/skills/attendance-sheet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attendance-sheet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attendance-sheet/agent.md"
  }
}
```
## Documentation

### Overview

Generate professional attendance sheets (考勤表) in xlsx format based on employee work information. Input employee names, dates, and attendance status (normal, late, absent, leave, etc.) to automatically create formatted Excel files ready for HR or management use.

### When to Use

Use this skill when:

Creating monthly attendance reports
Generating employee attendance sheets
Converting raw attendance data to formatted Excel
HR needs standardized attendance documentation

### Input Format

Provide the following information:

员工: 张三, 李四, 王五
日期范围: 2024-01-01 至 2024-01-31
考勤类型: 正常出勤, 迟到, 早退, 缺勤, 请假, 加班

Or structured format:

{
  "employees": ["张三", "李四", "王五"],
  "start_date": "2024-01-01",
  "end_date": "2024-01-31",
  "attendance_types": ["正常出勤", "迟到", "早退", "缺勤", "请假", "加班"]
}

### Output

Generates an xlsx file with:

Employee names in rows
Dates in columns
Attendance status cells with color coding
Summary statistics (total days, late count, etc.)
Professional formatting

### Usage Examples

Example 1 - Monthly Report:

Input: 员工列表 + 1月考勤数据
Output: 2024年1月考勤表.xlsx

Example 2 - Simple Attendance:

Input: 今天出勤人员: 张三, 李四
Output: 出勤记录_20240101.xlsx

Example 3 - Full Month with Multiple Types:

Input: 全体员工12月考勤数据（含迟到、请假）
Output: 2024年12月考勤统计表.xlsx

### scripts/

generate_attendance.py - Main Python script for generating attendance sheets
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: gykdly
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T04:42:00.078Z
- Expires at: 2026-05-06T04:42:00.078Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/attendance-sheet)
- [Send to Agent page](https://openagent3.xyz/skills/attendance-sheet/agent)
- [JSON manifest](https://openagent3.xyz/skills/attendance-sheet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/attendance-sheet/agent.md)
- [Download page](https://openagent3.xyz/downloads/attendance-sheet)