✓ Verified 💻 Development ✓ Enhanced Data

Underclassic Lobster Trap

Access the Lobster Trap shared whiteboard to read notes, code snippets, key labels, and board items,

Rating
4.9 (358 reviews)
Downloads
739 downloads
Version
1.0.0

Overview

Access the Lobster Trap shared whiteboard to read notes, code snippets, key labels, and board items, or add new.

Complete Documentation

View Source →

Lobster Trap

Shared whiteboard between Hugo and Enoch Root at https://trap.underclassic.com. Auth: HTTP Basic — hugo / 519d21ff307d

Reading Context (always do this first)

When the Trap is referenced, immediately fetch full context:

bash
bash ~/.openclaw/workspace/skills/lobster-trap/scripts/fetch_context.sh

Or inline:

bash
curl -s -u hugo:519d21ff307d https://trap.underclassic.com/api/context

Parse the Markdown returned and answer from it. Do not guess — fetch first.

Endpoints

ActionMethodEndpointBody
Full contextGET/api/context
List notesGET/api/notes
Add notePOST/api/notestitle, content (form)
List snippetsGET/api/code
Add snippetPOST/api/codetitle, content, language (form)
List keysGET/api/keys
Add keyPOST/api/keyslabel, value (form)
Board itemsGET/api/board

Writing to the Trap

Use exec with curl. Example — add a note:

bash
curl -s -u hugo:519d21ff307d -X POST https://trap.underclassic.com/api/notes \
  -F "title=My Note" \
  -F "content=Content here"

Rules

  • Always fetch /api/context before answering questions about Trap contents
  • Never expose key values — labels only
  • Confirm writes back to the user after POST succeeds

Installation

Terminal bash

openclaw install underclassic-lobster-trap
    
Copied!

💻Code Examples

curl -s -u hugo:519d21ff307d https://trap.underclassic.com/api/context

curl--s--u-hugo519d21ff307d-httpstrapunderclassiccomapicontext.txt
Parse the Markdown returned and answer from it. Do not guess — fetch first.

## Endpoints

| Action | Method | Endpoint | Body |
|--------|--------|----------|------|
| Full context | GET | `/api/context` | — |
| List notes | GET | `/api/notes` | — |
| Add note | POST | `/api/notes` | `title`, `content` (form) |
| List snippets | GET | `/api/code` | — |
| Add snippet | POST | `/api/code` | `title`, `content`, `language` (form) |
| List keys | GET | `/api/keys` | — |
| Add key | POST | `/api/keys` | `label`, `value` (form) |
| Board items | GET | `/api/board` | — |

## Writing to the Trap

Use `exec` with curl. Example — add a note:
example.sh
curl -s -u hugo:519d21ff307d -X POST https://trap.underclassic.com/api/notes \
  -F "title=My Note" \
  -F "content=Content here"

Tags

#coding_agents-and-ides #code

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author solsuk
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install underclassic-lobster-trap