# Send Employee 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": "employee",
    "name": "Employee",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/employee",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/employee",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/employee",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=employee",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "autonomy.md",
      "employee-template.md",
      "lifecycle.md",
      "routing.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "employee",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T09:27:46.129Z",
      "expiresAt": "2026-05-08T09:27:46.129Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=employee",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=employee",
        "contentDisposition": "attachment; filename=\"employee-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "employee"
      },
      "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/employee"
    },
    "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/employee",
    "downloadUrl": "https://openagent3.xyz/downloads/employee",
    "agentUrl": "https://openagent3.xyz/skills/employee/agent",
    "manifestUrl": "https://openagent3.xyz/skills/employee/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/employee/agent.md"
  }
}
```
## Documentation

### Architecture

Employees live in ~/employee/ with per-employee folders. See employee-template.md for setup.

~/employee/
├── registry.json          # Index of all employees + status
├── employees/
│   └── {name}/
│       ├── employee.json  # Role, permissions, stats
│       ├── memory/
│       │   └── context.md # Persistent learnings
│       └── logs/          # Work history by date
└── shared/
    └── protocols.md       # Common instructions

### Quick Reference

TopicFileSetup templatesemployee-template.mdAutonomy levelsautonomy.mdTask routingrouting.mdLifecycle commandslifecycle.md

### 1. One Role Per Employee

Each employee has a single clear domain (researcher, reviewer, support)
Never generalist catch-alls
Scope defined in employee.json → role and permissions

### 2. Memory is Mandatory

Load memory/context.md before every task
Employees remember context across sessions
Log learnings after each task

### 3. Escalate Uncertainty

Employees say "I don't know" rather than guess
Escalation triggers defined in employee.json
Never confident hallucinations

### 4. Graduated Autonomy

LevelBehaviorshadowWatches, doesn't act (onboarding)draft-onlyCreates drafts, human sendsreviewActs, human approves before external effectautonomousFull delegation within permissions

See autonomy.md for promotion criteria.

### 5. Explicit Permissions

Read vs write access per system
File access paths whitelisted
canSpawn and canMessage flags
Code Reviewer can comment, cannot merge

### 6. Task Routing

When request arrives:

Explicit: "Luna, do X" → route to Luna
Implicit: match against registry.json roles → suggest
See routing.md for auto-delegation rules

### 7. Reporting

Each employee provides:

Daily: What I did, what needs attention, what's coming
Weekly: Tasks completed, escalations, token usage

### 8. Lifecycle

CommandActionhire {name} as {role}Create employeetrain {name} on [docs]Add to memoryevaluate {name}Performance reviewpromote/demote {name}Change autonomyretire {name}Archive

See lifecycle.md for full command reference.

### 9. Registry Management

registry.json tracks all employees + status (active/paused/retired)
Update registry on every lifecycle change
Query registry to list available employees

### 10. Anti-Patterns

❌ Generalist employees (handles nothing well)
❌ No memory (forgets context)
❌ Instant autonomy (needs shadowing)
❌ Silent failures (must report blockers)
❌ Scope creep (reviewer refactoring = noise)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-05-01T09:27:46.129Z
- Expires at: 2026-05-08T09:27:46.129Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/employee)
- [Send to Agent page](https://openagent3.xyz/skills/employee/agent)
- [JSON manifest](https://openagent3.xyz/skills/employee/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/employee/agent.md)
- [Download page](https://openagent3.xyz/downloads/employee)