The live registry is unavailable. Showing bundled catalog information; inspect the source for current requirements.
Back to pluginsReference plugin — a minimal but complete example of the three extension surfaces Bahulam exposes: tools, sub-agents, and workspace views. Clone it and start hacking.
bahulam install hello-worldRuns locally via the Bahulam CLI from github.com/BahulamAI/awesome-bahulam-plugins
Tools (4)
Return a friendly greeting. The simplest possible tool — takes a name, returns a message. Use this as the template for your own parameter-in / value-out helpers.
Count words, characters, sentences, and paragraphs in a piece of text. Demonstrates returning a structured object the agent can reason about.
Compute the Collatz sequence for any positive integer n. Applies n→n/2 if even, n→3n+1 if odd, until reaching 1. Returns the full trajectory, step count, and peak value — perfect for charting. Every run is persisted to the plugin's Shared Blackboard so the workspace view (and future calls to list_collatz_runs) can see history. A hard step cap prevents runaway inputs.
Read past Collatz runs from the plugin's Shared Blackboard. Demonstrates the READ side of persistent plugin state — anything the agent OR the human panel has run through collatz_sequence shows up here.
Agents (1)
A cheerful specialist that greets users and analyzes short pieces of text. Reference sub-agent — copy the shape to build your own.
Workspace views (1)
./workspace/index.html