skills$openclaw/smalltalk
johnmci6.3k

by johnmci

smalltalk – OpenClaw Skill

smalltalk is an OpenClaw Skills integration for coding workflows. Interact with live Smalltalk image (Cuis or Squeak). Use for evaluating Smalltalk code, browsing classes, viewing method source, defining classes/methods, querying hierarchy and categories.

6.3k stars4.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namesmalltalk
descriptionInteract with live Smalltalk image (Cuis or Squeak). Use for evaluating Smalltalk code, browsing classes, viewing method source, defining classes/methods, querying hierarchy and categories. OpenClaw Skills integration.
ownerjohnmci
repositoryjohnmci/smalltalk
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @johnmci/smalltalk
last updatedFeb 7, 2026

Maintainer

johnmci

johnmci

Maintains smalltalk in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
271 B
SKILL.md
3.4 KB
smalltalk.py
16.1 KB
SKILL.md

name: smalltalk description: Interact with live Smalltalk image (Cuis or Squeak). Use for evaluating Smalltalk code, browsing classes, viewing method source, defining classes/methods, querying hierarchy and categories. metadata: {"clawdbot":{"emoji":"💎","requires":{"bins":["python3","xvfb-run"]}}}

Smalltalk Skill

Execute Smalltalk code and browse live Squeak/Cuis images via MCP.

Prerequisites

Get the ClaudeSmalltalk repo first:

git clone https://github.com/CorporateSmalltalkConsultingLtd/ClaudeSmalltalk.git

This repo contains:

  • MCP server code for Squeak (MCP-Server-Squeak.st)
  • Setup documentation (SQUEAK-SETUP.md, CLAWDBOT-SETUP.md)
  • This Clawdbot skill (clawdbot/)

Setup

  1. Set up Squeak with MCP server — see SQUEAK-SETUP.md
  2. Configure Clawdbot — see CLAWDBOT-SETUP.md

Usage

# Check setup
python3 smalltalk.py --check

# Evaluate code
python3 smalltalk.py evaluate "3 factorial"
python3 smalltalk.py evaluate "Date today"

# Browse a class
python3 smalltalk.py browse OrderedCollection

# View method source
python3 smalltalk.py method-source String asUppercase

# List classes (with optional prefix filter)
python3 smalltalk.py list-classes Collection

# Get class hierarchy
python3 smalltalk.py hierarchy OrderedCollection

# Get subclasses  
python3 smalltalk.py subclasses Collection

# List all categories
python3 smalltalk.py list-categories

# List classes in a category
python3 smalltalk.py classes-in-category "Collections-Sequenceable"

# Define a new class
python3 smalltalk.py define-class "Object subclass: #Counter instanceVariableNames: 'count' classVariableNames: '' poolDictionaries: '' category: 'MyApp'"

# Define a method
python3 smalltalk.py define-method Counter "increment
    count := (count ifNil: [0]) + 1.
    ^ count"

# Delete a method
python3 smalltalk.py delete-method Counter increment

# Delete a class
python3 smalltalk.py delete-class Counter

Commands

CommandDescription
--checkVerify VM/image paths and dependencies
--debugDebug hung system (sends SIGUSR1, captures stack trace)
evaluate <code>Execute Smalltalk code, return result
browse <class>Get class metadata (superclass, ivars, methods)
method-source <class> <selector>View method source code
define-class <definition>Create or modify a class
define-method <class> <source>Add or update a method
delete-method <class> <selector>Remove a method
delete-class <class>Remove a class
list-classes [prefix]List classes, optionally filtered
hierarchy <class>Get superclass chain
subclasses <class>Get immediate subclasses
list-categoriesList all system categories
classes-in-category <cat>List classes in a category

Environment Variables

VariableDescription
SQUEAK_VM_PATHPath to Squeak/Cuis VM executable
SQUEAK_IMAGE_PATHPath to Smalltalk image with MCP server

Notes

  • Requires xvfb for headless operation on Linux servers
  • Uses Squeak 6.0 MCP server (GUI stays responsive if display available)
  • saveImage intentionally excluded for safety
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

**Get the ClaudeSmalltalk repo first:** ```bash git clone https://github.com/CorporateSmalltalkConsultingLtd/ClaudeSmalltalk.git ``` This repo contains: - MCP server code for Squeak (`MCP-Server-Squeak.st`) - Setup documentation (`SQUEAK-SETUP.md`, `CLAWDBOT-SETUP.md`) - This Clawdbot skill (`clawdbot/`)

FAQ

How do I install smalltalk?

Run openclaw add @johnmci/smalltalk in your terminal. This installs smalltalk into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/johnmci/smalltalk. Review commits and README documentation before installing.