Project Files
README
Some usefull tools:
get_date_time — Returns current date and timecount_letters — Count specific letter in a word/stringget_word_length — Get the total number of characters in a wordget_myip — Get your external IP address/ test internet connectionget_anagram — Get Anagram of a wordts_to_date — Get full Date-time from Unix TSscan_plugins — Get List of installed Plugins with author, revision, Date. Save to file list.jsonupdated_plugins — Get the up-to-date revision of each plugin from HTML in manifest. Then adds it to the file list.json - and returns what plugins needed to renew (del/run)read_list — Get file list.json (just implemented)Tree Structure: 1 plugins/ 2 ├── alex/ 3 │ └── myplugin/ 4 │ └── manifest.json 5 ├── lmstudio/ 6 │ └── chatbot/ 7 │ └── manifest.json - depth=0: plugins/ - depth=1: alex/ i.e. author - depth=2: myplugin/ here is manifest.json Returns in list.json: 1 { 2 "plugins": [ 3 { 4 "author": "alex", 5 "name": "myplugin", 6 "revision": "1", 7 "installDate": "2025-04-07" 8 } 9 ] 10 }
Available at: lmstudio.ai/tupik rev.11
# 1. Install dependencies npm install # 2. Install plugin to LM Studio lms dev --install
lms dev -i -y
The -y flag automatically confirms overwrite without prompting.
lms push -y
lms CLI)With the plugin enabled, the AI assistant can perform some serious shit.
Also you can run Qwen Code to add extra functions.