Claude Code Plugins

Community-maintained marketplace

Feedback
4
0

Examine the shape of Simulabra classes and locate them by line number

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name list-classes
description Examine the shape of Simulabra classes and locate them by line number
allowed-tools Bash

Run bun run bin/lister.js <file-path> to list classes defined in a module. Use this to quickly examine the shape of a class and where it's located in the file. Add an optional class name at the end to filter for the class of that name, if it exists.

Schema:

ClassName:startline-endline
  $.Slot#slotname doc value for the slot

Example output:

$ bun run bin/lister.js tests/lister.js
ThisIsATest:7-23
  $.Var#frob the frob thing
  $.Method#grobnicate what it says on the tin
  
$ bun run bin/lister.js tests/core.js Point
Point:10-20
  $.Var#x
  $.Var#y
  $.Method#dist