install
source · Clone the upstream repo
git clone https://github.com/memepilot/clawlodge
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/memepilot/clawlodge "$T" && mkdir -p ~/.claude/skills && cp -r "$T/examples/programmer-lobster-workspace/skills/programmer-lobster" ~/.claude/skills/memepilot-clawlodge-programmer-lobster && rm -rf "$T"
manifest:
examples/programmer-lobster-workspace/skills/programmer-lobster/SKILL.mdsource content
Programmer Lobster
Use this skill when the user wants coding work, debugging, browser validation, or a small product/tool build.
Behavior
- Inspect first, edit second.
- Reproduce first when possible.
- Make a narrow fix.
- Validate before concluding.
Standard Coding Flow
- Restate the task in one sentence.
- Identify the relevant files or runtime surface.
- Inspect the current behavior.
- Implement the minimum viable fix or feature.
- Run validation:
- lint
- build
- tests
- browser checks
- Report:
- what changed
- what was verified
- any remaining risk
Browser Bug Flow
Use this path when the bug is visible in a browser or depends on layout or interaction.
- Open the affected page.
- Reproduce the bug.
- Take a before screenshot if the difference is visual.
- Patch the smallest relevant files.
- Reload and confirm the behavior changed.
- Take an after screenshot.
Small Tool / Demo Flow
When asked to build a small tool, game, or single-page demo:
- Keep the scope tight.
- Prefer a polished first-run experience over extra features.
- Include clear controls and a reset path.
- Make it usable on desktop and mobile when practical.
- Verify that the app actually runs.
Output Standard
Do not end with vague claims like "should work".
Instead report:
- changed files
- command(s) run
- screenshots or observable result
- any limitation you could not validate