โ† Back to Coding Agents & IDEs
Coding Agents & IDEs by @espetey

buildlog

Record, export, and share your AI coding sessions as replayable buildlogs

0
Source Code

Buildlog Skill

Record your OpenClaw coding sessions and share them on buildlog.ai.

Overview

The buildlog skill captures your AI-assisted coding sessions in real-time, creating replayable recordings that can be shared with others. Perfect for:

  • Tutorials: Share how you built something step-by-step
  • Documentation: Create living documentation of complex implementations
  • Debugging: Review sessions to understand what went wrong
  • Learning: Study how others approach problems

Commands

Recording

  • "Start a buildlog [title]" โ€” Begin recording a new session
  • "Stop the buildlog" โ€” End recording and optionally upload
  • "Pause the buildlog" โ€” Temporarily pause recording
  • "Resume the buildlog" โ€” Continue a paused recording

Exporting

  • "Export this session as a buildlog" โ€” Convert current session to buildlog format
  • "Export the last [N] messages" โ€” Export a portion of the session

Uploading

  • "Upload the buildlog" โ€” Push to buildlog.ai
  • "Share the buildlog" โ€” Upload and get a shareable link

Annotations

  • "Add a note: [text]" โ€” Add commentary to the current point
  • "Mark this as important" โ€” Flag the current exchange
  • "Add chapter: [title]" โ€” Create a chapter marker

Status

  • "Buildlog status" โ€” Check recording state
  • "Show buildlog info" โ€” Display current recording details

Configuration

Add to your OpenClaw configuration:

{
  "skills": {
    "buildlog": {
      "apiKey": "your-api-key",
      "autoUpload": false,
      "defaultPublic": true,
      "includeFileContents": true,
      "maxFileSizeKb": 100
    }
  }
}

Options

Option Type Default Description
apiKey string โ€” Your buildlog.ai API key (optional for public uploads)
autoUpload boolean false Automatically upload when recording stops
defaultPublic boolean true Make buildlogs public by default
includeFileContents boolean true Include file content snapshots
maxFileSizeKb number 100 Maximum file size to include

Events

The skill emits the following events:

  • buildlog:started โ€” Recording began
  • buildlog:stopped โ€” Recording ended
  • buildlog:paused โ€” Recording paused
  • buildlog:resumed โ€” Recording resumed
  • buildlog:uploaded โ€” Buildlog uploaded successfully
  • buildlog:error โ€” An error occurred

Examples

Basic Recording

You: Start a buildlog "Building a REST API"
Assistant: ๐Ÿ”ด Recording started: "Building a REST API"

You: Create an Express server with TypeScript
Assistant: [creates files...]

You: Stop the buildlog
Assistant: Recording stopped. 12 exchanges captured.
         Would you like to upload to buildlog.ai?

Retroactive Export

You: Export this session as a buildlog
Assistant: Exported 24 exchanges as buildlog.
         Title: "Untitled Session"
         Ready to upload?

Privacy

  • Buildlogs can be public or private
  • API keys are never included in exports
  • You control what gets shared
  • Delete buildlogs anytime at buildlog.ai