smalltalk-dev-plugin
Health Warn
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 9 GitHub stars
Code Fail
- rm -rf — Recursive force deletion command in extra/setup-antigravity.sh
- rm -rf — Recursive force deletion command in extra/setup-copilot.sh
- rm -rf — Recursive force deletion command in extra/setup-cursor.sh
- rm -rf — Recursive force deletion command in extra/setup-opencode.sh
- rm -rf — Recursive force deletion command in extra/setup-windsurf.sh
Permissions Pass
- Permissions — No dangerous permissions requested
This is a Model Context Protocol (MCP) plugin that enables AI agents like Claude Code to interact directly with a Pharo Smalltalk development environment. It automates the workflow of editing code files, importing them into Pharo, and running tests.
Security Assessment
Overall Risk: Medium. The tool primarily executes shell commands to facilitate development and connect to a local Pharo server, which is standard for this type of developer tool. However, the audit flagged multiple recursive force deletion commands (`rm -rf`) located within the setup scripts for various AI agents (Cursor, Windsurf, Copilot, etc.). While deleting directories is common in setup scripts to clear old files, hardcoded `rm -rf` commands in shell scripts always require a manual review to ensure they are targeting the correct, restricted paths rather than sensitive root directories. The tool does not request explicitly dangerous permissions, and no hardcoded secrets were found. Users should be aware that it requires local network access to communicate with the Pharo server (or Docker container).
Quality Assessment
The project is actively maintained, with its most recent code push occurring today. It is properly licensed under the permissive MIT license, which is excellent for open-source adoption. However, it suffers from very low community visibility. With only 9 GitHub stars, it is either a new or highly niche project, meaning it has not been widely vetted by the broader developer community.
Verdict
Use with caution: The tool is active and legally clear, but developers must manually review the `rm -rf` commands in the setup scripts before executing them to prevent accidental data loss.
Claude Code plugin for AI-driven Smalltalk (Pharo) development
smalltalk-dev Plugin
Claude Code plugin for AI-driven Smalltalk (Pharo) development.
Also available for Cursor, Windsurf, Antigravity, GitHub Copilot CLI, and OpenCode.
Overview
This plugin provides a minimal, practical toolkit for Smalltalk development using AI skills. It focuses on the essential workflow of editing Tonel files, importing them into Pharo, and running tests.
Features
- Commands: Essential slash commands for import, test, eval, and validation
- Skills: AI-powered development workflow, debugging expertise, and documentation
- MCP Integration: Seamless connection to Pharo and validation servers
- Hooks: Automatic suggestions after file changes
Usage
Quick Start
The easiest way to use this plugin is to use the /st-buddy command:
# Start Smalltalk Buddy (once per session)
/st-buddy
# Then ask questions naturally
You: "I want to create a Person class with name and age"
AI: I'll help you create that! [Creates Tonel files and guides you through the process]
You: "How do I test this?"
AI: Let me run the tests for you... [Executes tests and shows results]
You: "The test failed, can you help?"
AI: I'll debug this... [Investigates, identifies issue, and fixes it]
https://github.com/user-attachments/assets/7d27ac29-e696-4a7b-8c71-d1404f67c67a
/st-buddy is your friendly development partner that:
- Understands what you want to do and routes to the right tools
- Guides you through development, testing, and debugging
- Helps you learn AI-assisted Smalltalk development
- Works naturally through conversation
Development Workflow
- Run /st-buddy once at the start of your session
- Ask questions naturally about what you want to do
- AI implements and manages the workflow (editing Tonel, importing, testing)
- Review results and continue the conversation
- Iterate until you're satisfied
For experienced users who prefer direct commands, see Commands.md.
Prerequisites
1. Pharo with PharoSmalltalkInteropServer
Choose one of the following options:
Option A: Use Docker (Easy)
Run a pre-configured Pharo image using smalltalk-interop-docker:
docker compose up -d
Option B: Local Pharo Setup
Install PharoSmalltalkInteropServer in your Pharo image.
2. Claude Code
Install Claude Code.
Other AI agents: If you use Cursor, Windsurf, Antigravity, GitHub Copilot CLI, or OpenCode instead of Claude Code, see Other AI Agents Setup Guide.
3. uv
Install uv, which is used in MCP.
Installation
Option 1: Install from GitHub (Recommended)
# Add marketplace from GitHub
claude plugin marketplace add mumez/smalltalk-dev-plugin
# Install the plugin
claude plugin install smalltalk-dev
Option 2: Local Development
For local testing and development:
# Clone the repository
git clone https://github.com/mumez/smalltalk-dev-plugin.git
cd smalltalk-dev-plugin
# Add local directory as marketplace
claude plugin marketplace add ./
# Install the plugin
claude plugin install smalltalk-dev
Verify Installation
After installation, you should see the custom commands starting with /st-.
Commands
The plugin provides essential commands for Smalltalk development:
/st-buddy- Start your friendly Smalltalk development assistant (recommended starting point)/st-init- Load smalltalk-developer skill and explain workflow/st-setup-project- Set up Pharo project structure/st-eval- Execute Smalltalk code snippets/st-lint- Check code quality and best practices/st-import- Import Tonel packages to Pharo/st-export- Export packages from Pharo/st-test- Run SUnit tests/st-validate- Validate Tonel syntax
Most users should start with /st-buddy - it will guide you and use the other commands as needed.
For command details and advanced usage, see Commands.md.
Skills
The plugin includes specialized AI skills that activate automatically based on your needs:
- smalltalk-developer - Development workflow and best practices
- smalltalk-debugger - Error handling and debugging procedures
- smalltalk-usage-finder - Code usage exploration and analysis
- smalltalk-implementation-finder - Implementation discovery and patterns
- smalltalk-commenter - CRC-style class documentation generation
These skills work behind the scenes when you use /st-buddy, providing specialized knowledge for each task.
/smalltalk-commenter (Documentation Skill)
Automatically suggests class documentation improvements:
- Detects undocumented classes after file changes (occasionally, not every time)
- Generates CRC-style class comments
- Can be invoked directly:
/smalltalk-commenter
Works quietly in the background - you'll get occasional suggestions to improve documentation.
MCP Tools
The plugin exposes all tools from both MCP servers:
pharo-interop (22 tools):
eval: Execute Smalltalk expressionsimport_package,export_package: Package managementrun_class_test,run_package_test: Test executionget_class_source,get_method_source: Code inspectionsearch_implementors,search_references: Code navigation- And more...
smalltalk-validator (5 tools):
validate_tonel_smalltalk_from_file: File validationvalidate_tonel_smalltalk: Content validationvalidate_smalltalk_method_body: Method validationlint_tonel_smalltalk_from_file: File lintinglint_tonel_smalltalk: Content linting
Configuration
The plugin uses two MCP servers:
- pharo-interop: Communication with Pharo image
- smalltalk-validator: Tonel syntax validation
These are configured automatically via .mcp.json. You can customize the Pharo port:
export PHARO_SIS_PORT=8086 # default
Uninstallation
Uninstall Plugin
# Remove the plugin
claude plugin uninstall smalltalk-dev
Remove Marketplace (Optional)
If you also want to remove the marketplace entry:
claude plugin marketplace remove smalltalk-dev-marketplace
Note: The marketplace name depends on how you added it. Use claude plugin marketplace list to see the exact name.
Clean Reinstall (Local Development)
When developing locally and need to test changes:
# Uninstall current version
claude plugin uninstall smalltalk-dev
# Remove marketplace
claude plugin marketplace remove smalltalk-dev-marketplace
# Re-add marketplace
claude plugin marketplace add ./
# Reinstall plugin
claude plugin install smalltalk-dev
Best Practices
Development Workflow
- Edit Tonel files (AI editor is the source of truth)
- Lint code with
/st-lintto check quality - Import to Pharo with absolute paths
- Test after every import
Code Quality
- Use
/st-lintbefore importing to catch issues early - Add class prefixes to avoid name collisions
- Keep methods focused (15 lines standard, 40 for UI/tests)
- Limit instance variables (max 10 per class)
- Access instance variables through methods, not directly
Path Management
- Always use absolute paths for imports
- Import multiple packages individually
File Editing
- AI editor is the source of truth (Tonel files)
- Avoid editing in Pharo directly
- Use
export_packageonly when necessary
Import Timing
- Re-import after every change
- Import main package before test package
- Don't forget to import test packages
Testing
- Run tests after every import
- Use
run_class_testfor specific classes - Use
run_package_testfor full packages
Debugging
- Use
/st-evalfor quick partial execution - Capture both results and errors in Array
- Use
printStringfor object serialization - Debug step-by-step
Troubleshooting
"Connection refused" error
Make sure PharoSmalltalkInteropServer is running:
SisServer current start.
SisServer current. "Should show running server"
"Package not found" after import
- Verify absolute path is correct
- Check that .st files are in correct directory
- Ensure package.st exists
Tests fail after import
- Check test error message
- Use
/st-validateto check syntax - Use
/st-evalto debug specific code - Fix in Tonel file
- Re-import and re-test
Import seems to do nothing
- Check Pharo Transcript for error messages
- Verify server port matches configuration:
SisServer teapotConfig - Try
/st-eval Smalltalk versionto test connection
Project Structure
smalltalk-dev-plugin/
├── .claude-plugin/
│ ├── plugin.json # Plugin metadata
│ └── marketplace.json # Marketplace configuration
├── .mcp.json # MCP server configuration
├── commands/
│ ├── st-buddy.md # /st-buddy - Friendly development assistant
│ ├── st-init.md # /st-init - Start development session
│ ├── st-setup-project.md # /st-setup-project - Project boilerplate
│ ├── st-eval.md # /st-eval - Execute Smalltalk code
│ ├── st-import.md # /st-import - Import Tonel packages
│ ├── st-export.md # /st-export - Export packages
│ ├── st-test.md # /st-test - Run SUnit tests
│ ├── st-lint.md # /st-lint - Check code quality
│ └── st-validate.md # /st-validate - Validate Tonel syntax
├── skills/
│ ├── smalltalk-commenter/
│ │ └── SKILL.md # Documentation specialist skill
│ ├── smalltalk-developer/
│ │ ├── SKILL.md # Development workflow
│ │ ├── examples/ # Development sessions
│ │ └── references/ # Best practices, Tonel format
│ ├── smalltalk-debugger/
│ │ ├── SKILL.md # Debugging techniques
│ │ ├── examples/ # Debug scenarios
│ │ └── references/ # Error patterns, inspection, UI debugging
│ ├── smalltalk-usage-finder/
│ │ ├── SKILL.md # Usage exploration
│ │ ├── examples/ # Usage scenarios
│ │ └── references/ # Usage analysis
│ └── smalltalk-implementation-finder/
│ ├── SKILL.md # Implementation analysis
│ ├── examples/ # Implementation scenarios
│ └── references/ # Implementation analysis
├── hooks/
│ └── hooks.json # PostToolUse hook configuration
├── scripts/
│ └── suggest-class-comment.sh # PostToolUse hook for documentation suggestions
├── extra/
│ ├── setup-cursor.sh # Setup script for Cursor
│ ├── setup-windsurf.sh # Setup script for Windsurf
│ ├── setup-antigravity.sh # Setup script for Antigravity
│ ├── setup-copilot.sh # Setup script for GitHub Copilot CLI
│ ├── setup-opencode.sh # Setup script for OpenCode
│ ├── opencode.json # MCP config for OpenCode
│ └── suggest-class-comment_cursor.sh # Hook script for Cursor
├── doc/
│ ├── Commands.md # Commands quick reference
│ └── setup-other-agents.md # Setup guide for other AI agents
├── README.md # This file
└── claudedocs/
└── test-scenarios.md # Testing documentation
Presentation
Examples
Projects built with this plugin:
- smalltalk-dev-plugin-money-example - Multi-currency Money class with arithmetic operations and exchange rate conversion
- smalltalk-dev-plugin-graph-example - Directed weighted graph with Dijkstra's shortest-path algorithm
- smalltalk-dev-plugin-gui-example - Interactive to-do list app built with the Spec2 framework
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Test with Claude Code
- Submit a pull request
License
MIT License - see LICENSE file for details
Links
- MCP Servers:
- pharo-smalltalk-interop-mcp-server by mumez
- smalltalk-validator-mcp-server by mumez
- Claude Code: Anthropic
- Pharo: Pharo Project
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found