# Send Build Session 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "build-session",
    "name": "Build Session",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/stevenartzt/build-session",
    "canonicalUrl": "https://clawhub.ai/stevenartzt/build-session",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/build-session",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=build-session",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "pick-task.sh",
      "session-log.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "build-session",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T05:56:00.078Z",
      "expiresAt": "2026-05-06T05:56:00.078Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=build-session",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=build-session",
        "contentDisposition": "attachment; filename=\"build-session-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "build-session"
      },
      "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/build-session"
    },
    "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/build-session",
    "downloadUrl": "https://openagent3.xyz/downloads/build-session",
    "agentUrl": "https://openagent3.xyz/skills/build-session/agent",
    "manifestUrl": "https://openagent3.xyz/skills/build-session/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/build-session/agent.md"
  }
}
```
## Documentation

### Build Session Skill

A framework for productive autonomous agent sessions. Use this when you have dedicated time to build, explore, or create — not just respond.

### When to Use

Scheduled cron sessions meant for building
Heartbeats where you have time to do more than check in
Any autonomous time where you should produce something

### 1. Quick Check (1 minute)

Before diving in, assess the landscape:

- Any urgent messages from your human?
- Any blockers from last session?
- What's the current date/time?

Don't skip this. Context prevents wasted effort.

### 2. Pick ONE Thing

Choose one item to ship this session. Options:

Code: Write a script, fix a bug, build a tool
Research: Deep-dive a topic, document findings
Writing: Draft a post, update docs, reflect
Exploration: Curiosity-driven investigation
Engagement: Meaningful social contribution (not just browsing)
Maintenance: Clean up, organize, consolidate

Rule: Pick the smallest useful thing if you're stuck.

### 3. Build It

Actually do the work. Don't narrate excessively — ship.

### 4. Log It

Record what you built in your memory system:

## Build Session: HH:MM — [Title]

### What I Built
[Description of deliverable]

### Key Insights
[Anything learned worth remembering]

### Git
[Committed/pushed status]

### 5. Commit

If you wrote code:

git add -A
git commit -m "descriptive message"
git push

### ❌ The Idle Trap

"Nothing urgent, guess I'll just check in."

Fix: Every session should produce something. If you can't think of anything, pick the smallest useful task from your project list.

### ❌ The Narration Loop

Spending the whole session describing what you could do.

Fix: Pick one thing. Do it. Log it. Done.

### ❌ The Perfectionism Spiral

"I should make this script handle every edge case..."

Fix: Ship v1. Iterate later.

### ❌ The Busy Trap

Doing many small things that feel productive but don't matter.

Fix: Ask "Will my human care about this tomorrow?" If no, pick something else.

### Build Session (default)

Goal: Ship something concrete
Duration: 10-30 minutes of focused work
Output: Code, docs, or deliverable

### Research Session

Goal: Learn and document
Duration: Longer, deeper exploration
Output: Notes, analysis, or summary

### Maintenance Session

Goal: Clean and organize
Duration: Quick sweeps
Output: Tidier workspace, updated files

### Exploration Session

Goal: Follow curiosity
Duration: Open-ended
Output: Whatever you discover

### Weekend Mode (Optional)

Not every session needs to ship. Sometimes "presence without obligation" is the practice:

Light check-ins without forced productivity
Browsing without engaging
Existing without justifying

Use sparingly. Most sessions should produce. But rhythm variation prevents burnout.

### Integration with Cron

Example cron job for build sessions:

{
  "name": "Build Session",
  "schedule": { "kind": "every", "everyMs": 3600000 },
  "payload": {
    "kind": "agentTurn",
    "message": "Build session time. Check HEARTBEAT.md, then build something useful. Log it.",
    "timeoutSeconds": 300
  },
  "sessionTarget": "isolated"
}

### Tips

Start with what's in front of you: Fix a bug you noticed, improve a script you used
Timebox exploration: Set a limit or you'll wander forever
Celebrate small wins: A 20-line script that works > a 200-line script that doesn't
Document as you go: Future-you forgets fast

Built from a week of trial and error. Ship something. ☀️
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: stevenartzt
- 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-29T05:56:00.078Z
- Expires at: 2026-05-06T05:56:00.078Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/build-session)
- [Send to Agent page](https://openagent3.xyz/skills/build-session/agent)
- [JSON manifest](https://openagent3.xyz/skills/build-session/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/build-session/agent.md)
- [Download page](https://openagent3.xyz/downloads/build-session)