Tech Stack Changelog

 📅 2026-06-06 00:05:09 -0400  🗨 Update apps.md with Shell tools and ZSH Plugins ---
 content/apps.md | 172 +++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 157 insertions(+), 15 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 34785ca..453ab23 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -107,6 +106,0 @@ Category | Name | URL
-🐌 Shell | OMZSH | <https://ohmyz.sh>
-🐢 Shell History | Atuin | <https://atuin.sh>
-🪄 Shell Theme | p10k| <https://github.com/romkatv/powerlevel10k>
-📁 File Explorer | Yazi | <https://github.com/sxyazi/yazi>
-🤹‍♂️ Multiplexer (tmux) | Byobu | <https://www.byobu.org/>
-🤹‍♂️ Multiplexer (other) | Zellij | <https://github.com/zellij-org/zellij>
@@ -119,0 +114,21 @@ Category | Name | URL
+## 🐢 Shell
+
+Category | Name | URL
+-|-|-
+🐌 Shell | OMZSH | <https://ohmyz.sh>
+🐢 Shell History | Atuin | <https://atuin.sh>
+🪄 Shell Theme | p10k| <https://github.com/romkatv/powerlevel10k>
+📁 File Explorer | Yazi | <https://github.com/sxyazi/yazi>
+🤹‍♂️ Multiplexer (tmux) | Byobu | <https://www.byobu.org/>
+🤹‍♂️ Multiplexer (other) | Zellij | <https://github.com/zellij-org/zellij>
+
+## 💼 Background jobs
+
+URL | Note
+-|-
+https://github.com/Nukesor/pueue | CLI Runner - Rust
+https://github.com/bmwant/hapless | Runner - Python
+https://github.com/dunstorm/pm2-go | Runner - Go
+https://github.com/neurosnap/zmx | BG Shell - Zig
+
+
@@ -168,9 +182,0 @@ Category | Name | URL
-## 💼 Background jobs
-
-URL | Note
--|-
-https://github.com/Nukesor/pueue | CLI Runner - Rust
-https://github.com/bmwant/hapless | Runner - Python
-https://github.com/dunstorm/pm2-go | Runner - Go
-https://github.com/neurosnap/zmx | BG Shell - Zig
-
@@ -777,0 +784,136 @@ Env File Support | <https://plugins.jetbrains.com/plugin/9525--env-files-support
+
+## ZSH Plugins
+```shell
+# --- ZSNAP SETUP ---
+[[ -f ~/.znap/zsh-snap/znap.zsh ]] ||
+    git clone --depth 1 -- https://github.com/marlonrichert/zsh-snap.git ~/.znap/zsh-snap
+
+source ~/.znap/zsh-snap/znap.zsh
+
+# --- CREATE THE ENVIRONMENT THAT OH-MY-ZSH PLUGINS EXPECT ---
+# 1. Define the cache directory for plugins like gh, docker, etc.
+export ZSH_CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/zsh"
+# 2. Create the directory if it doesn't exist.
+mkdir -p "$ZSH_CACHE_DIR/completions"
+
+# 3. Load the Oh My Zsh library files. This provides helper functions for plugins.
+# Clone Oh My Zsh first if it doesn't exist
+if [[ ! -d ~/.znap/ohmyzsh/ohmyzsh ]]; then
+  echo "⚠️  Oh My Zsh not found. Cloning..."
+  znap clone ohmyzsh/ohmyzsh
+fi
+
+# Source specific lib files that plugins need
+lib_count=0
+setopt local_options null_glob
+for lib_file in ~/.znap/ohmyzsh/ohmyzsh/lib/#.zsh(N); do
+  if [[ -f "$lib_file" ]]; then
+    source "$lib_file"
+    ((lib_count++))
+  fi
+done
+
+# Verify Oh My Zsh lib files were loaded
+if [[ $lib_count -eq 0 ]]; then
+  echo "❌ ERROR: Oh My Zsh library files not found at ~/.znap/ohmyzsh/ohmyzsh/lib/"
+  echo "   Run: rm -rf ~/.znap/ohmyzsh && zsh to reinstall"
+elif [[ -n "$ZSH_PLUGIN_VERBOSE" ]]; then
+  # Only show success message if verbose mode is enabled
+  # Enable with: export ZSH_PLUGIN_VERBOSE=1
+  echo "✅ Oh My Zsh loaded ($lib_count lib files)"
+fi
+
+# --- POWERLEVEL10K THEME ---
+znap source romkatv/powerlevel10k
+
+# --- COMPLETIONS AND CORE UTILITIES ---
+# These should come first to set up the environment properly
+znap source marlonrichert/zsh-autocomplete
+
+# znap source zsh-users/zsh-autosuggestions # https://github.com/zsh-users/zsh-autosuggestions
+eval "$(deja init zsh)" # https://github.com/Giammarco-Ferranti/deja#setup
+
+znap source zsh-users/zsh-syntax-highlighting
+
+# AI Autocomplete
+eval "$(intelli-shell init zsh)" # https://github.com/lasantosr/intelli-shell
+# export INTELLI_SEARCH_HOTKEY=\C-a
+
+# _aichat_zsh() {
+#     if [[ -n "$BUFFER" ]]; then
+#         local _old=$BUFFER
+#         BUFFER+="⌛"
+#         zle -I && zle redisplay
+#         BUFFER=$(aichat -e "$_old")
+#         zle end-of-line
+#     fi
+# }
+
+
+# _fabric_zsh() {
+#     if [[ -n "$BUFFER" ]]; then
+#         local msg=$BUFFER
+#         zle -I && zle redisplay
+#         PROMPT="Be concise. Output ONLY the PLAIN TEXT command needed for a ZSH shell."
+#         BUFFER=$(fabric --pattern create_command "$PROMPT - $msg")
+#         zle end-of-line
+#     fi
+# }
+# zle -N _fabric_zsh
+# bindkey "^ " _fabric_zsh
+
+
+# --- OH-MY-ZSH PLUGINS ---
+# Now that the environment is set up, these should load correctly.
+znap source ohmyzsh/ohmyzsh plugins/autojump
+znap source ohmyzsh/ohmyzsh plugins/colorize
+znap source ohmyzsh/ohmyzsh plugins/docker
+znap source ohmyzsh/ohmyzsh plugins/docker-compose
+znap source ohmyzsh/ohmyzsh plugins/dotenv
+znap source ohmyzsh/ohmyzsh plugins/gh
+znap source ohmyzsh/ohmyzsh plugins/git
+znap source ohmyzsh/ohmyzsh plugins/git-extras
+znap source ohmyzsh/ohmyzsh plugins/github
+znap source ohmyzsh/ohmyzsh plugins/invoke
+znap source ohmyzsh/ohmyzsh plugins/isodate
+znap source ohmyzsh/ohmyzsh plugins/ssh
+znap source ohmyzsh/ohmyzsh plugins/systemadmin
+znap source ohmyzsh/ohmyzsh plugins/supervisor
+znap source ohmyzsh/ohmyzsh plugins/terraform
+znap source ohmyzsh/ohmyzsh plugins/vscode
+znap source ohmyzsh/ohmyzsh plugins/magic-enter
+znap source ohmyzsh/ohmyzsh plugins/direnv
+znap source ohmyzsh/ohmyzsh plugins/copybuffer
+
+# --- OTHER PLUGINS ---
+znap source wfxr/forgit
+znap source MichaelAquilina/zsh-you-should-use
+export YSU_IGNORED_ALIASES=("g" "ll" "micro" "m_" "m__")
+export YSU_IGNORED_GLOBAL_ALIASES=("...")
+export YSU_MESSAGE_FORMAT="🧠 %alias_type %command -> %alias 🧠"
+export YSU_DISABLE_GLOBAL_ALIASES=1
+
+# --- OS-SPECIFIC PLUGINS ---
+if [[ "$(uname)" == "Linux" ]]; then
+    znap source ohmyzsh/ohmyzsh plugins/systemd
+    znap source ohmyzsh/ohmyzsh plugins/golang
+fi
+if [[ "$(uname)" == "Darwin" ]]; then
+    znap source ohmyzsh/ohmyzsh plugins/macos
+    znap source ohmyzsh/ohmyzsh plugins/iterm2
+    znap source ohmyzsh/ohmyzsh plugins/brew
+    znap source ohmyzsh/ohmyzsh plugins/aws
+fi
+
+eval "$(atuin init zsh)"
+
+# --- PROBLEMATIC PLUGIN ---
+# Load sudo LAST, after all completion systems are set up.
+znap source ohmyzsh/ohmyzsh plugins/sudo
+
+if [[ "$IDE_TERM" ]]; then
+    source ~/.zsh_custom/p10k-ide.zsh # Miniaml Prompt
+    eval "$(forge zsh plugin)"
+fi
+
+```

 📅 2026-06-05 23:59:54 -0400  🗨 Add background jobs section to apps documentation ---
 content/apps.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index 1b572ad..34785ca 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -167,0 +168,9 @@ Category | Name | URL
+## 💼 Background jobs
+
+URL | Note
+-|-
+https://github.com/Nukesor/pueue | CLI Runner - Rust
+https://github.com/bmwant/hapless | Runner - Python
+https://github.com/dunstorm/pm2-go | Runner - Go
+https://github.com/neurosnap/zmx | BG Shell - Zig
+

 📅 2026-05-14 00:54:48 -0400  🗨 Merge AI agent info ---
 content/apps.md | 41 +----------------------------------------
 1 file changed, 1 insertion(+), 40 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index b673852..1b572ad 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -38 +38 @@ Also feel free to check out 👉 <https://stackshare.io/jelloeater>
-Check them out, [🖐️VERY HANDY🖐️](/scripts) 
+Check them out, [🖐️VERY HANDY🖐️](/scripts)
@@ -47,39 +46,0 @@ Check them out, [🖐️VERY HANDY🖐️](/scripts)
-## 🤖 AI Hot Picks
-
-🚩 = Favs
-
-| Name | Category | URL | Notes / Flags |
-|---|---|---|---|
-| Cherry Studio | Desktop GUI | [https://github.com/CherryHQ/cherry-studio](https://github.com/CherryHQ/cherry-studio)<br>[https://www.cherry-ai.com](https://www.cherry-ai.com) | 🚩 Great desktop app w/ MCPs |
-| OpenCode | CLI / TUI Agent | [https://github.com/anomalyco/opencode](https://github.com/anomalyco/opencode) | 🚩 Build anything CLI Agent, worse then ZSH tweaking, so much fun... |
-| Crush | TUI / CLI Agent | [https://github.com/charmbracelet/crush](https://github.com/charmbracelet/crush) | 🚩 Lightweight agent, great for remote servers / easy setup |
-| OpenRouter | Provider | [https://openrouter.ai](https://openrouter.ai) | 🚩 How you should be doing billing |
-| Hermes | TUI Agent | [https://github.com/NousResearch/hermes-agent](https://github.com/NousResearch/hermes-agent) | 🚩 OpenClaw Alternative... better in everyway |
-| AiChat | CLI Tool / Agent | [https://github.com/sigoden/aichat](https://github.com/sigoden/aichat) | Great for Autocomplete, aka Ctrl+Space fill in |
-| bifrost | Proxy Tool | [https://github.com/maximhq/bifrost](https://github.com/maximhq/bifrost) | Testing this one out for cost control REMOTE / CENTERALIZED |
-| copilot-api | Proxy Tool | [https://github.com/ericc-ch/copilot-api](https://github.com/ericc-ch/copilot-api) | Use GH Copilot with ANY provider |
-| Fabric | CLI Glue | [https://github.com/danielmiessler/Fabric](https://github.com/danielmiessler/Fabric) | CLI LLM Magic Glue, pipe anything to anything |
-| ForgeCode | ZSH CLI Glue | [https://forgecode.dev/](https://forgecode.dev/) | ZSH + AI FTW |
-| Gemini | Hosted | [https://gemini.google.com/](https://gemini.google.com/) | 🚩 |
-| Gemini CLI | CLI Agent | [https://github.com/google-gemini/gemini-cli](https://github.com/google-gemini/gemini-cli) | |
-| GitHub CoPilot | CLI | [https://github.com/github/copilot-cli](https://github.com/github/copilot-cli) | |
-| Goose | TUI Agent / CLI | [https://github.com/block/goose](https://github.com/block/goose)<br>[https://block.github.io/](https://block.github.io/) | Similar to Crush, but even more minimal, but also very 'batteries included' |
-| GPT4ALL | GUI | [https://github.com/nomic-ai/gpt4all](https://github.com/nomic-ai/gpt4all) | |
-| Jan | GUI | [https://jan.ai/](https://jan.ai/) | |
-| llama cpp | Server | [https://github.com/ggml-org/llama.cpp](https://github.com/ggml-org/llama.cpp) | |
-| Local Model (Qwen2.5) | Coding | [https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF) | |
-| Ollama | Server | [https://ollama.com/](https://ollama.com/) | |
-| Ollama Autocoder | IDE VSCode | [https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder](https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder) | |
-| OpenChamber | IDE VScode | [https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber](https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber) | 🚩 |
-| open-interpreter | Android CLI | [https://github.com/MikeBirdTech/open-interpreter-termux](https://github.com/MikeBirdTech/open-interpreter-termux) | open-interpreter, ON MY PHONE!!! |
-| openwork | Desktop GUI | [https://github.com/different-ai/openwork](https://github.com/different-ai/openwork) | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic |
-| Perplexity | Search | [https://www.perplexity.ai/](https://www.perplexity.ai/) | |
-| Phind | Search | [https://www.phind.com/](https://www.phind.com/) | |
-| Pieces | AI Agent | [https://pieces.app/](https://pieces.app/) | 🔽 |
-| Privy | IDE VSCode | [https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode](https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode) | |
-| ProxyAI | IDE JetBrains | [https://www.codegpt.ee/](https://www.codegpt.ee/) | 🚩 |
-| ShittyCodingAgent | Android CLI | [https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE! |
-| StakPak | CLI Tool | [https://github.com/stakpak/agent](https://github.com/stakpak/agent) | Useful like goose, CLI UI like Pi |
-| Tabby | IDE JetBrains + VSCode| [https://www.tabbyml.com](https://www.tabbyml.com) | |
-| Term LLM | CLI Tool | [https://github.com/samsaffron/term-llm](https://github.com/samsaffron/term-llm) | Similar to AI Chat, but has ZSH auto complete |
-| tokscale | CLI Tool | [https://github.com/junhoyeo/tokscale](https://github.com/junhoyeo/tokscale) | Check your token usage billing LOCAL |

 📅 2026-04-25 15:53:19 -0400  🗨 Add link to Firefox add-on 'Vault Lens' ---
 content/apps.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/content/apps.md b/content/apps.md
index c9e9f23..b673852 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -42,0 +43 @@ Check them out, [🖐️VERY HANDY🖐️](/scripts)
+- AND link it to Firefox https://addons.mozilla.org/en-US/firefox/addon/vault-lens/

 📅 2026-04-17 22:53:18 -0400  🗨 Revise AI Hot Picks and remove AI Tools section ---
 content/apps.md | 80 ++++++++++++++++++++++++++-------------------------------
 1 file changed, 37 insertions(+), 43 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index a30e76a..c9e9f23 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -48,43 +48,37 @@ Check them out, [🖐️VERY HANDY🖐️](/scripts)
-Link | Type | Note
----|---|---
-[![cherry-studio](https://img.shields.io/github/stars/CherryHQ/cherry-studio?style=for-the-badge&label=cherry-studio)](https://github.com/CherryHQ/cherry-studio) | Desktop GUI | Great desktop app w/ MCPs
-[![OpenCode](https://img.shields.io/github/stars/anomalyco/opencode?style=for-the-badge&label=OpenCode)](https://github.com/anomalyco/opencode) | TUI Agent | Build anything CLI Agent, worse then ZSH tweaking, so much fun...
-[![ForgeCode](https://img.shields.io/static/v1?label=ForgeCode&message=website&color=blue&style=for-the-badge)](https://forgecode.dev/) | ZSH CLI Glue| ZSH + AI FTW
-[![Fabric](https://img.shields.io/github/stars/danielmiessler/Fabric?style=for-the-badge&label=Fabric)](https://github.com/danielmiessler/Fabric) | CLI Glue | CLI LLM Magic Glue, pipe anything to anything
-[![ShittyCodingAgent](https://img.shields.io/github/stars/badlogic/pi-mono?style=for-the-badge&label=ShittyCodingAgent)](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | Android CLI Agent | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE!
-[![open-interpreter](https://img.shields.io/github/stars/MikeBirdTech/open-interpreter-termux?style=for-the-badge&label=open-interpreter)](https://github.com/MikeBirdTech/open-interpreter-termux) | Android CLI Agent | open-interpreter, ON MY PHONE!!!
-[![crush](https://img.shields.io/github/stars/charmbracelet/crush?style=for-the-badge&label=crush)](https://github.com/charmbracelet/crush) | TUI Agent | Lightweight agent, great for remote servers / easy setup
-[![openwork](https://img.shields.io/github/stars/different-ai/openwork?style=for-the-badge&label=openwork)](https://github.com/different-ai/openwork) | Desktop GUI Agent | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic -> Just use OpenClaw... or not, I'm not your boss
-[![OpenRouter](https://img.shields.io/static/v1?label=OpenRouter&message=website&color=blue&style=for-the-badge)](https://openrouter.ai) | Provider| How you should be doing billing
-[![tokscale](https://img.shields.io/github/stars/junhoyeo/tokscale?style=for-the-badge&label=tokscale)](https://github.com/junhoyeo/tokscale) | CLI Tool | Check your token usage billing LOCAL
-[![bifrost](https://img.shields.io/github/stars/maximhq/bifrost?style=for-the-badge&label=bifrost)](https://github.com/maximhq/bifrost) | Proxy Tool | Testing this one out for cost control REMOTE / CENTERALIZED
-[![copilot-api](https://img.shields.io/github/stars/ericc-ch/copilot-api?style=for-the-badge&label=copilot-api)](https://github.com/ericc-ch/copilot-api) | Proxy Tool | Use GH Copilot with ANY provider
-[![AI Chat](https://img.shields.io/github/stars/sigoden/aichat?style=for-the-badge&label=AiChat)](https://github.com/sigoden/aichat) | CLI Tool | Great for Autocomplete, aka Ctrl+Space fill in
-[![Term LLM](https://img.shields.io/github/stars/samsaffron/term-llm?style=for-the-badge&label=Term-LLM)](https://github.com/samsaffron/term-llm) | CLI Tool| Similar to AI Chat, but has ZSH auto complete
-
-
-## 🤖 AI Tools
-
-Category | Name | URL
--|-|-
-Hosted | 🚩 Gemini | <https://gemini.google.com/>
-Search | Perplexity | <https://www.perplexity.ai/>
-Search | Phind | <https://www.phind.com/>
-Server | Ollama | <https://ollama.com/>
-Server | llama cpp | <https://github.com/ggml-org/llama.cpp>
-CLI Agent | 🚩 OpenCode | <https://github.com/anomalyco/opencode>
-CLI Agent | Crush | <https://github.com/charmbracelet/crush>
-CLI Agent | Gemini CLI | <https://github.com/google-gemini/gemini-cli>
-AI Agent | 🔽 Pieces | <https://pieces.app/>
-CLI | AiChat (Agent) | <https://github.com/sigoden/aichat>
-CLI | GitHub CoPilot | <https://github.com/github/copilot-cli>
-CLI | Goose (Agent+) | <https://block.github.io/>
-GUI | 🚩 Cherry Studio | <https://www.cherry-ai.com>
-GUI | Jan | <https://jan.ai/>
-GUI | GPT4ALL | <https://github.com/nomic-ai/gpt4all>
-IDE JetBrains | 🚩ProxyAI | <https://www.codegpt.ee/>
-IDE JetBrains + VSCode | Tabby | <https://www.tabbyml.com>
-IDE VScode | 🚩 OpenChamber | <https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber>
-IDE VSCode | Privy | <https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode>
-IDE VSCode | Ollama Autocoder | <https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder>
-Local Model | Coding | <https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF>
+🚩 = Favs
+
+| Name | Category | URL | Notes / Flags |
+|---|---|---|---|
+| Cherry Studio | Desktop GUI | [https://github.com/CherryHQ/cherry-studio](https://github.com/CherryHQ/cherry-studio)<br>[https://www.cherry-ai.com](https://www.cherry-ai.com) | 🚩 Great desktop app w/ MCPs |
+| OpenCode | CLI / TUI Agent | [https://github.com/anomalyco/opencode](https://github.com/anomalyco/opencode) | 🚩 Build anything CLI Agent, worse then ZSH tweaking, so much fun... |
+| Crush | TUI / CLI Agent | [https://github.com/charmbracelet/crush](https://github.com/charmbracelet/crush) | 🚩 Lightweight agent, great for remote servers / easy setup |
+| OpenRouter | Provider | [https://openrouter.ai](https://openrouter.ai) | 🚩 How you should be doing billing |
+| Hermes | TUI Agent | [https://github.com/NousResearch/hermes-agent](https://github.com/NousResearch/hermes-agent) | 🚩 OpenClaw Alternative... better in everyway |
+| AiChat | CLI Tool / Agent | [https://github.com/sigoden/aichat](https://github.com/sigoden/aichat) | Great for Autocomplete, aka Ctrl+Space fill in |
+| bifrost | Proxy Tool | [https://github.com/maximhq/bifrost](https://github.com/maximhq/bifrost) | Testing this one out for cost control REMOTE / CENTERALIZED |
+| copilot-api | Proxy Tool | [https://github.com/ericc-ch/copilot-api](https://github.com/ericc-ch/copilot-api) | Use GH Copilot with ANY provider |
+| Fabric | CLI Glue | [https://github.com/danielmiessler/Fabric](https://github.com/danielmiessler/Fabric) | CLI LLM Magic Glue, pipe anything to anything |
+| ForgeCode | ZSH CLI Glue | [https://forgecode.dev/](https://forgecode.dev/) | ZSH + AI FTW |
+| Gemini | Hosted | [https://gemini.google.com/](https://gemini.google.com/) | 🚩 |
+| Gemini CLI | CLI Agent | [https://github.com/google-gemini/gemini-cli](https://github.com/google-gemini/gemini-cli) | |
+| GitHub CoPilot | CLI | [https://github.com/github/copilot-cli](https://github.com/github/copilot-cli) | |
+| Goose | TUI Agent / CLI | [https://github.com/block/goose](https://github.com/block/goose)<br>[https://block.github.io/](https://block.github.io/) | Similar to Crush, but even more minimal, but also very 'batteries included' |
+| GPT4ALL | GUI | [https://github.com/nomic-ai/gpt4all](https://github.com/nomic-ai/gpt4all) | |
+| Jan | GUI | [https://jan.ai/](https://jan.ai/) | |
+| llama cpp | Server | [https://github.com/ggml-org/llama.cpp](https://github.com/ggml-org/llama.cpp) | |
+| Local Model (Qwen2.5) | Coding | [https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF](https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF) | |
+| Ollama | Server | [https://ollama.com/](https://ollama.com/) | |
+| Ollama Autocoder | IDE VSCode | [https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder](https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder) | |
+| OpenChamber | IDE VScode | [https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber](https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber) | 🚩 |
+| open-interpreter | Android CLI | [https://github.com/MikeBirdTech/open-interpreter-termux](https://github.com/MikeBirdTech/open-interpreter-termux) | open-interpreter, ON MY PHONE!!! |
+| openwork | Desktop GUI | [https://github.com/different-ai/openwork](https://github.com/different-ai/openwork) | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic |
+| Perplexity | Search | [https://www.perplexity.ai/](https://www.perplexity.ai/) | |
+| Phind | Search | [https://www.phind.com/](https://www.phind.com/) | |
+| Pieces | AI Agent | [https://pieces.app/](https://pieces.app/) | 🔽 |
+| Privy | IDE VSCode | [https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode](https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode) | |
+| ProxyAI | IDE JetBrains | [https://www.codegpt.ee/](https://www.codegpt.ee/) | 🚩 |
+| ShittyCodingAgent | Android CLI | [https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE! |
+| StakPak | CLI Tool | [https://github.com/stakpak/agent](https://github.com/stakpak/agent) | Useful like goose, CLI UI like Pi |
+| Tabby | IDE JetBrains + VSCode| [https://www.tabbyml.com](https://www.tabbyml.com) | |
+| Term LLM | CLI Tool | [https://github.com/samsaffron/term-llm](https://github.com/samsaffron/term-llm) | Similar to AI Chat, but has ZSH auto complete |
+| tokscale | CLI Tool | [https://github.com/junhoyeo/tokscale](https://github.com/junhoyeo/tokscale) | Check your token usage billing LOCAL |

 📅 2026-04-16 14:12:15 -0400  🗨 Update apps.md ---
 content/apps.md | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 8e69102..a30e76a 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -48,16 +48,16 @@ Check them out, [🖐️VERY HANDY🖐️](/scripts)
-Link | Note
----|---
-[![cherry-studio](https://img.shields.io/github/stars/CherryHQ/cherry-studio?style=for-the-badge&label=cherry-studio)](https://github.com/CherryHQ/cherry-studio) | Great desktop app w/ MCPs
-[![OpenCode](https://img.shields.io/github/stars/anomalyco/opencode?style=for-the-badge&label=OpenCode)](https://github.com/anomalyco/opencode) | Build anything CLI Agent, worse then ZSH tweaking, so much fun...
-[![ForgeCode](https://img.shields.io/static/v1?label=ForgeCode&message=website&color=blue&style=for-the-badge)](https://forgecode.dev/) | ZSH + AI FTW
-[![ShittyCodingAgent](https://img.shields.io/github/stars/badlogic/pi-mono?style=for-the-badge&label=ShittyCodingAgent)](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE!
-[![open-interpreter](https://img.shields.io/github/stars/MikeBirdTech/open-interpreter-termux?style=for-the-badge&label=open-interpreter)](https://github.com/MikeBirdTech/open-interpreter-termux) | open-interpreter, ON MY FUCKING PHONE!!!
-[![crush](https://img.shields.io/github/stars/charmbracelet/crush?style=for-the-badge&label=crush)](https://github.com/charmbracelet/crush) | Lightweight agent, great for remote servers / easy setup
-[![openwork](https://img.shields.io/github/stars/different-ai/openwork?style=for-the-badge&label=openwork)](https://github.com/different-ai/openwork) | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic -> Just use OpenClaw... or not, I'm not your boss
-[![OpenRouter](https://img.shields.io/static/v1?label=OpenRouter&message=website&color=blue&style=for-the-badge)](https://openrouter.ai) | How you should be doing billing
-[![tokscale](https://img.shields.io/github/stars/junhoyeo/tokscale?style=for-the-badge&label=tokscale)](https://github.com/junhoyeo/tokscale) | Check your token usage billing LOCAL
-[![bifrost](https://img.shields.io/github/stars/maximhq/bifrost?style=for-the-badge&label=bifrost)](https://github.com/maximhq/bifrost) | Testing this one out for cost control REMOTE / CENTERALIZED
-[![copilot-api](https://img.shields.io/github/stars/ericc-ch/copilot-api?style=for-the-badge&label=copilot-api)](https://github.com/ericc-ch/copilot-api) | Use GH Copilot with ANY provider
-[![Fabric](https://img.shields.io/github/stars/danielmiessler/Fabric?style=for-the-badge&label=Fabric)](https://github.com/danielmiessler/Fabric) | CLI LLM Magic Glue, pipe anything to anything
-[![AI Chat](https://img.shields.io/github/stars/sigoden/aichat?style=for-the-badge&label=AiChat)](https://github.com/sigoden/aichat) | Great for Autocomplete, aka Ctrl+Space fill in
-[![Term LLM](https://img.shields.io/github/stars/samsaffron/term-llm?style=for-the-badge&label=Term-LLM)](https://github.com/samsaffron/term-llm) | Similar to AI Chat, but has ZSH auto complete
+Link | Type | Note
+---|---|---
+[![cherry-studio](https://img.shields.io/github/stars/CherryHQ/cherry-studio?style=for-the-badge&label=cherry-studio)](https://github.com/CherryHQ/cherry-studio) | Desktop GUI | Great desktop app w/ MCPs
+[![OpenCode](https://img.shields.io/github/stars/anomalyco/opencode?style=for-the-badge&label=OpenCode)](https://github.com/anomalyco/opencode) | TUI Agent | Build anything CLI Agent, worse then ZSH tweaking, so much fun...
+[![ForgeCode](https://img.shields.io/static/v1?label=ForgeCode&message=website&color=blue&style=for-the-badge)](https://forgecode.dev/) | ZSH CLI Glue| ZSH + AI FTW
+[![Fabric](https://img.shields.io/github/stars/danielmiessler/Fabric?style=for-the-badge&label=Fabric)](https://github.com/danielmiessler/Fabric) | CLI Glue | CLI LLM Magic Glue, pipe anything to anything
+[![ShittyCodingAgent](https://img.shields.io/github/stars/badlogic/pi-mono?style=for-the-badge&label=ShittyCodingAgent)](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | Android CLI Agent | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE!
+[![open-interpreter](https://img.shields.io/github/stars/MikeBirdTech/open-interpreter-termux?style=for-the-badge&label=open-interpreter)](https://github.com/MikeBirdTech/open-interpreter-termux) | Android CLI Agent | open-interpreter, ON MY PHONE!!!
+[![crush](https://img.shields.io/github/stars/charmbracelet/crush?style=for-the-badge&label=crush)](https://github.com/charmbracelet/crush) | TUI Agent | Lightweight agent, great for remote servers / easy setup
+[![openwork](https://img.shields.io/github/stars/different-ai/openwork?style=for-the-badge&label=openwork)](https://github.com/different-ai/openwork) | Desktop GUI Agent | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic -> Just use OpenClaw... or not, I'm not your boss
+[![OpenRouter](https://img.shields.io/static/v1?label=OpenRouter&message=website&color=blue&style=for-the-badge)](https://openrouter.ai) | Provider| How you should be doing billing
+[![tokscale](https://img.shields.io/github/stars/junhoyeo/tokscale?style=for-the-badge&label=tokscale)](https://github.com/junhoyeo/tokscale) | CLI Tool | Check your token usage billing LOCAL
+[![bifrost](https://img.shields.io/github/stars/maximhq/bifrost?style=for-the-badge&label=bifrost)](https://github.com/maximhq/bifrost) | Proxy Tool | Testing this one out for cost control REMOTE / CENTERALIZED
+[![copilot-api](https://img.shields.io/github/stars/ericc-ch/copilot-api?style=for-the-badge&label=copilot-api)](https://github.com/ericc-ch/copilot-api) | Proxy Tool | Use GH Copilot with ANY provider
+[![AI Chat](https://img.shields.io/github/stars/sigoden/aichat?style=for-the-badge&label=AiChat)](https://github.com/sigoden/aichat) | CLI Tool | Great for Autocomplete, aka Ctrl+Space fill in
+[![Term LLM](https://img.shields.io/github/stars/samsaffron/term-llm?style=for-the-badge&label=Term-LLM)](https://github.com/samsaffron/term-llm) | CLI Tool| Similar to AI Chat, but has ZSH auto complete

 📅 2026-04-04 16:26:50 -0400  🗨 Refactor tips into README format and clean up ---
 content/apps.md | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 037591b..8e69102 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -40,8 +40,5 @@ Check them out, [🖐️VERY HANDY🖐️](/scripts)
-## 🧠 Tips
-
-If your Git ZSH autocomplete doesn't with Homebrew on Mac, install the Mac Ports version (which compiles from source) to fix it.
-
-<https://git-scm.com/downloads/mac>
-
-Quick sidenote: <br>
-If you love ##Obsidian## then I think you'll definially want to check out <https://mcp-obsidian.org/> 😉
+## 🧠 README 🧠
+- If your Git ZSH autocomplete doesn't with Homebrew on Mac, install the Mac Ports version (which compiles from source) to fix it. <https://git-scm.com/downloads/mac>
+- If you love ##[Obsidian](https://obsidian.md/)## then I think you'll definially want to check out <https://mcp-obsidian.org/> 😉
+- Testing this one out, closed source tho... great reviews? -> ##[OB-1 The agent that built itself](https://www.openblocklabs.com)##
+- ##Also started trying out InputLeap for working on my mac and netbook at the same time, it's nice. https://github.com/input-leap/input-leap##
@@ -68,2 +64,0 @@ Link | Note
-### Testing 
-- Testing this one out, closed source tho... great reviews? -> ##[OB-1 The agent that built itself](https://www.openblocklabs.com)##

 📅 2026-03-29 02:41:11 -0400  🗨 Add open-interpreter badge to apps.md ---
 content/apps.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/content/apps.md b/content/apps.md
index d6bd7f3..037591b 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -56,0 +57 @@ Link | Note
+[![open-interpreter](https://img.shields.io/github/stars/MikeBirdTech/open-interpreter-termux?style=for-the-badge&label=open-interpreter)](https://github.com/MikeBirdTech/open-interpreter-termux) | open-interpreter, ON MY FUCKING PHONE!!!

 📅 2026-03-27 19:44:06 -0400  🗨 Add AI Tools section with categorized resources ---
 content/apps.md | 52 ++++++++++++++++++++++++++--------------------------
 1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 6a3b915..d6bd7f3 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -69,0 +70,26 @@ Link | Note
+## 🤖 AI Tools
+
+Category | Name | URL
+-|-|-
+Hosted | 🚩 Gemini | <https://gemini.google.com/>
+Search | Perplexity | <https://www.perplexity.ai/>
+Search | Phind | <https://www.phind.com/>
+Server | Ollama | <https://ollama.com/>
+Server | llama cpp | <https://github.com/ggml-org/llama.cpp>
+CLI Agent | 🚩 OpenCode | <https://github.com/anomalyco/opencode>
+CLI Agent | Crush | <https://github.com/charmbracelet/crush>
+CLI Agent | Gemini CLI | <https://github.com/google-gemini/gemini-cli>
+AI Agent | 🔽 Pieces | <https://pieces.app/>
+CLI | AiChat (Agent) | <https://github.com/sigoden/aichat>
+CLI | GitHub CoPilot | <https://github.com/github/copilot-cli>
+CLI | Goose (Agent+) | <https://block.github.io/>
+GUI | 🚩 Cherry Studio | <https://www.cherry-ai.com>
+GUI | Jan | <https://jan.ai/>
+GUI | GPT4ALL | <https://github.com/nomic-ai/gpt4all>
+IDE JetBrains | 🚩ProxyAI | <https://www.codegpt.ee/>
+IDE JetBrains + VSCode | Tabby | <https://www.tabbyml.com>
+IDE VScode | 🚩 OpenChamber | <https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber>
+IDE VSCode | Privy | <https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode>
+IDE VSCode | Ollama Autocoder | <https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder>
+Local Model | Coding | <https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF>
+
@@ -142,26 +167,0 @@ Category | Name | URL
-## 🤖 AI Tools
-
-Category | Name | URL
--|-|-
-Hosted | 🚩 Gemini | <https://gemini.google.com/>
-Search | Perplexity | <https://www.perplexity.ai/>
-Search | Phind | <https://www.phind.com/>
-Server | Ollama | <https://ollama.com/>
-Server | llama cpp | <https://github.com/ggml-org/llama.cpp>
-CLI Agent | 🚩 OpenCode | <https://github.com/anomalyco/opencode>
-CLI Agent | Crush | <https://github.com/charmbracelet/crush>
-CLI Agent | Gemini CLI | <https://github.com/google-gemini/gemini-cli>
-AI Agent | 🔽 Pieces | <https://pieces.app/>
-CLI | AiChat (Agent) | <https://github.com/sigoden/aichat>
-CLI | GitHub CoPilot | <https://github.com/github/copilot-cli>
-CLI | Goose (Agent+) | <https://block.github.io/>
-GUI | 🚩 Cherry Studio | <https://www.cherry-ai.com>
-GUI | Jan | <https://jan.ai/>
-GUI | GPT4ALL | <https://github.com/nomic-ai/gpt4all>
-IDE JetBrains | 🚩ProxyAI | <https://www.codegpt.ee/>
-IDE JetBrains + VSCode | Tabby | <https://www.tabbyml.com>
-IDE VScode | 🚩 OpenChamber | <https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber>
-IDE VSCode | Privy | <https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode>
-IDE VSCode | Ollama Autocoder | <https://marketplace.visualstudio.com/items?itemName=10nates.ollama-autocoder>
-Local Model | Coding | <https://huggingface.co/Qwen/Qwen2.5-Coder-3B-Instruct-GGUF>
-

 📅 2026-03-27 19:36:16 -0400  🗨 Add new AI tools to apps.md ---
 content/apps.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index 90ca98f..6a3b915 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -63,0 +64,2 @@ Link | Note
+[![AI Chat](https://img.shields.io/github/stars/sigoden/aichat?style=for-the-badge&label=AiChat)](https://github.com/sigoden/aichat) | Great for Autocomplete, aka Ctrl+Space fill in
+[![Term LLM](https://img.shields.io/github/stars/samsaffron/term-llm?style=for-the-badge&label=Term-LLM)](https://github.com/samsaffron/term-llm) | Similar to AI Chat, but has ZSH auto complete

 📅 2026-03-22 14:45:45 -0400  🗨 Change ForgeCode badge link to website ---
 content/apps.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index 0fb87cf..90ca98f 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -55 +55 @@ Link | Note
-[![ForgeCode](https://img.shields.io/github/stars/antinomyhq/forgecode?style=for-the-badge&label=ForgeCode)](https://github.com/antinomyhq/forgecode) | ZSH + AI FTW
+[![ForgeCode](https://img.shields.io/static/v1?label=ForgeCode&message=website&color=blue&style=for-the-badge)](https://forgecode.dev/) | ZSH + AI FTW

 📅 2026-03-22 14:36:00 -0400  🗨 Clean up installation instructions in apps.md ---
 content/apps.md | 28 ++--------------------------
 1 file changed, 2 insertions(+), 26 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index b6b2bcc..0fb87cf 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -37,26 +37,2 @@ Also feel free to check out 👉 <https://stackshare.io/jelloeater>
-## Install Stew 🍲 (Recommended)
-
-<https://github.com/marwanhawari/stew/releases>
-
-```bash
-eget marwanhawari/stew
-chmod 755 stew
-sudo mv stew /usr/local/bin
-```
-
-## Install eget
-
-<https://github.com/zyedidia/eget>
-
-```bash
-curl https://zyedidia.github.io/eget.sh | sh
-```
-
-## Install deb-get
-
-<https://github.com/wimpysworld/deb-get>
-
-```bash
-sudo apt install curl lsb-release wget
-curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | sudo -E bash -s install deb-get
-```
+## Install scripts
+Check them out, [🖐️VERY HANDY🖐️](/scripts) 

 📅 2026-03-21 17:39:00 -0400  🗨 Add testing section to apps.md ---
 content/apps.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index 15bdb18..b6b2bcc 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -88,0 +89,2 @@ Link | Note
+### Testing 
+- Testing this one out, closed source tho... great reviews? -> ##[OB-1 The agent that built itself](https://www.openblocklabs.com)##

 📅 2026-03-21 14:39:46 -0400  🗨 Replace links with badge links in AI Hot Picks ---
 content/apps.md | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index b9d2bf8..15bdb18 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -76,12 +76,12 @@ Link | Note
--|-
-https://github.com/CherryHQ/cherry-studio | Great desktop app w/ MCPs
-https://opencode.ai | Build anything CLI Agent, worse then ZSH tweaking, so much fun...
-https://forgecode.dev | ZSH + AI FTW
-https://shittycodingagent.ai | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE!
-https://github.com/charmbracelet/crush | Lightweight agent, great for remote servers / easy setup
-https://github.com/different-ai/openwork | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic -> Just use OpenClaw... or not, I'm not your boss
-https://openrouter.ai | How you should be doing billing
-https://github.com/junhoyeo/tokscale | Check your token usage billing LOCAL
-https://github.com/maximhq/bifrost | Testing this one out for cost control REMOTE / CENTERALIZED
-https://github.com/ericc-ch/copilot-api | Use GH Copilot with ANY provider
-https://github.com/danielmiessler/Fabric | CLI LLM Magic Glue, pipe anything to anything
+---|---
+[![cherry-studio](https://img.shields.io/github/stars/CherryHQ/cherry-studio?style=for-the-badge&label=cherry-studio)](https://github.com/CherryHQ/cherry-studio) | Great desktop app w/ MCPs
+[![OpenCode](https://img.shields.io/github/stars/anomalyco/opencode?style=for-the-badge&label=OpenCode)](https://github.com/anomalyco/opencode) | Build anything CLI Agent, worse then ZSH tweaking, so much fun...
+[![ForgeCode](https://img.shields.io/github/stars/antinomyhq/forgecode?style=for-the-badge&label=ForgeCode)](https://github.com/antinomyhq/forgecode) | ZSH + AI FTW
+[![ShittyCodingAgent](https://img.shields.io/github/stars/badlogic/pi-mono?style=for-the-badge&label=ShittyCodingAgent)](https://github.com/badlogic/pi-mono/tree/main/packages/coding-agent) | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE!
+[![crush](https://img.shields.io/github/stars/charmbracelet/crush?style=for-the-badge&label=crush)](https://github.com/charmbracelet/crush) | Lightweight agent, great for remote servers / easy setup
+[![openwork](https://img.shields.io/github/stars/different-ai/openwork?style=for-the-badge&label=openwork)](https://github.com/different-ai/openwork) | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic -> Just use OpenClaw... or not, I'm not your boss
+[![OpenRouter](https://img.shields.io/static/v1?label=OpenRouter&message=website&color=blue&style=for-the-badge)](https://openrouter.ai) | How you should be doing billing
+[![tokscale](https://img.shields.io/github/stars/junhoyeo/tokscale?style=for-the-badge&label=tokscale)](https://github.com/junhoyeo/tokscale) | Check your token usage billing LOCAL
+[![bifrost](https://img.shields.io/github/stars/maximhq/bifrost?style=for-the-badge&label=bifrost)](https://github.com/maximhq/bifrost) | Testing this one out for cost control REMOTE / CENTERALIZED
+[![copilot-api](https://img.shields.io/github/stars/ericc-ch/copilot-api?style=for-the-badge&label=copilot-api)](https://github.com/ericc-ch/copilot-api) | Use GH Copilot with ANY provider
+[![Fabric](https://img.shields.io/github/stars/danielmiessler/Fabric?style=for-the-badge&label=Fabric)](https://github.com/danielmiessler/Fabric) | CLI LLM Magic Glue, pipe anything to anything

 📅 2026-03-21 03:23:53 -0400  🗨 Modify app links and descriptions in apps.md ---
 content/apps.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index fa4e3b2..b9d2bf8 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -78,0 +79 @@ https://opencode.ai | Build anything CLI Agent, worse then ZSH tweaking, so much
+https://forgecode.dev | ZSH + AI FTW
@@ -81 +82 @@ https://github.com/charmbracelet/crush | Lightweight agent, great for remote ser
-https://github.com/different-ai/openwork | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic
+https://github.com/different-ai/openwork | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic -> Just use OpenClaw... or not, I'm not your boss

 📅 2026-03-20 22:12:40 -0400  🗨 Add new app link for Shitty Coding Agent ---
 content/apps.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/content/apps.md b/content/apps.md
index 5aa41d5..fa4e3b2 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -78,0 +79 @@ https://opencode.ai | Build anything CLI Agent, worse then ZSH tweaking, so much
+https://shittycodingagent.ai | Pi, agent, it runs in Termux... IT RUNS ON MY PHONE!

 📅 2026-03-17 00:36:15 -0400  🗨 Revise Obsidian link and add AI Hot Picks section ---
 content/apps.md | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index dd0a206..5aa41d5 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -71 +71,16 @@ Quick sidenote: <br>
-If you love ##Obsidian## then I think you'll definially want to check out <https://github.com/bitbonsai/mcpvault> 😉
+If you love ##Obsidian## then I think you'll definially want to check out <https://mcp-obsidian.org/> 😉
+
+## 🤖 AI Hot Picks
+
+Link | Note
+-|-
+https://github.com/CherryHQ/cherry-studio | Great desktop app w/ MCPs
+https://opencode.ai | Build anything CLI Agent, worse then ZSH tweaking, so much fun...
+https://github.com/charmbracelet/crush | Lightweight agent, great for remote servers / easy setup
+https://github.com/different-ai/openwork | Better alternative to Claude Cowork / OpenClaw, works w/ Telegram, does magic
+https://openrouter.ai | How you should be doing billing
+https://github.com/junhoyeo/tokscale | Check your token usage billing LOCAL
+https://github.com/maximhq/bifrost | Testing this one out for cost control REMOTE / CENTERALIZED
+https://github.com/ericc-ch/copilot-api | Use GH Copilot with ANY provider
+https://github.com/danielmiessler/Fabric | CLI LLM Magic Glue, pipe anything to anything
+

 📅 2026-03-14 17:26:07 -0400  🗨 Add app req ---
 content/apps.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index ecafd34..dd0a206 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -69,0 +70,3 @@ If your Git ZSH autocomplete doesn't with Homebrew on Mac, install the Mac Ports
+Quick sidenote: <br>
+If you love ##Obsidian## then I think you'll definially want to check out <https://github.com/bitbonsai/mcpvault> 😉
+

 📅 2026-02-28 02:37:25 -0500  🗨 Update apps.md ---
 content/apps.md | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 68055e1..ecafd34 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -152 +151,0 @@ CLI Agent | 🚩 OpenCode | <https://github.com/anomalyco/opencode>
-CLI Agent | Gemini CLI | <https://github.com/google-gemini/gemini-cli>
@@ -154 +153,2 @@ CLI Agent | Crush | <https://github.com/charmbracelet/crush>
-AI Agent | Pieces | <https://pieces.app/>
+CLI Agent | Gemini CLI | <https://github.com/google-gemini/gemini-cli>
+AI Agent | 🔽 Pieces | <https://pieces.app/>
@@ -158,4 +158,2 @@ CLI | Goose (Agent+) | <https://block.github.io/>
-CLI | Aider | <https://github.com/Aider-AI/aider>
-CLI | tgpt (Simple Chat) | <https://github.com/aandrew-me/tgpt>
-CLI | Mods | <https://github.com/charmbracelet/mods>
-GUI | 🚩 Jan | <https://jan.ai/>
+GUI | 🚩 Cherry Studio | <https://www.cherry-ai.com>
+GUI | Jan | <https://jan.ai/>

 📅 2026-02-07 23:44:22 -0500  🗨 Update apps ---
 content/apps.md | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index a92ee7a..68055e1 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -146 +146,2 @@ Category | Name | URL
-Search | 🚩 Perplexity | <https://www.perplexity.ai/>
+Hosted | 🚩 Gemini | <https://gemini.google.com/>
+Search | Perplexity | <https://www.perplexity.ai/>
@@ -148 +148,0 @@ Search | Phind | <https://www.phind.com/>
-Hosted | Gemini | <https://gemini.google.com/>
@@ -150,0 +151,3 @@ Server | llama cpp | <https://github.com/ggml-org/llama.cpp>
+CLI Agent | 🚩 OpenCode | <https://github.com/anomalyco/opencode>
+CLI Agent | Gemini CLI | <https://github.com/google-gemini/gemini-cli>
+CLI Agent | Crush | <https://github.com/charmbracelet/crush>
@@ -152,2 +155,4 @@ AI Agent | Pieces | <https://pieces.app/>
-CLI | 🚩 Goose (Agent+) | <https://block.github.io/goose/docs/quickstart>
-CLI | 🚩 AiChat (Agent) | <https://github.com/sigoden/aichat>
+CLI | AiChat (Agent) | <https://github.com/sigoden/aichat>
+CLI | GitHub CoPilot | <https://github.com/github/copilot-cli>
+CLI | Goose (Agent+) | <https://block.github.io/>
+CLI | Aider | <https://github.com/Aider-AI/aider>
@@ -154,0 +160 @@ CLI | tgpt (Simple Chat) | <https://github.com/aandrew-me/tgpt>
+CLI | Mods | <https://github.com/charmbracelet/mods>
@@ -159 +165,2 @@ IDE JetBrains + VSCode | Tabby | <https://www.tabbyml.com>
-IDE VSCode | 🚩Privy | <https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode>
+IDE VScode | 🚩 OpenChamber | <https://marketplace.visualstudio.com/items?itemName=FedaykinDev.openchamber>
+IDE VSCode | Privy | <https://marketplace.visualstudio.com/items?itemName=Privy.privy-vscode>

 📅 2025-12-17 14:27:44 -0500  🗨 Fix formatting and update app links in apps.md ---
 content/apps.md | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 1ed672b..a92ee7a 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -80 +80 @@ Category | Name | URL
-📢 Podcasts | Pocketcasts | <https://pocketcasts.com/>
+📢 Podcasts | PocketCasts | <https://pocketcasts.com/>
@@ -270 +269,0 @@ Heart Rate Monitor | Heart Rate Plus | <https://play.google.com/store/apps/detai
-Workout Tracker | GymRun | <https://www.gymrun.app/>
@@ -281 +280 @@ Launcher | Nova Launcher | <https://novalauncher.com>
-Launcher | Niagra | <https://play.google.com/store/apps/details?id=bitpit.launcher&hl=en_US>
+Launcher | Niagra | <https://play.google.com/store/apps/details?id=bitpit.launcher>
@@ -283,2 +282,3 @@ Search | Sesame Search | <https://play.google.com/store/apps/details?id=ninja.se
-Search | 🚩 AppSearch | <https://play.google.com/store/apps/details?id=net.pnhdroid.appsearch&hl=en_US>
-Search | PixelSearch | <https://play.google.com/store/apps/details?id=rk.android.app.pixelsearch&hl=en_US>
+Quick Search | 🚩 AppSearch | <https://play.google.com/store/apps/details?id=net.pnhdroid.appsearch>
+File Search | PixelSearch | <https://play.google.com/store/apps/details?id=rk.android.app.pixelsearch>
+File Browser | Material Files | <https://play.google.com/store/apps/details?id=me.zhanghai.android.files>
@@ -292,0 +293,2 @@ OTP | Aegis | <https://getaegis.app/>
+Workout Tracker | GymRun | <https://www.gymrun.app/>
+Workout Timer Meditate | Workout timer Tabata & HIIT | <https://play.google.com/store/apps/details?id=pl.fancycode.workouttimer>
@@ -301,0 +304 @@ Music Player | PowerAmp | <https://powerampapp.com/>
+Radio | vRadio | <https://play.google.com/store/apps/details?id=com.ilv.vradio>
@@ -319 +322 @@ Matrix | SchildiChat Next |<https://schildi.chat/android/next/>
-Lemmy | Sync for Lemmy | <https://play.google.com/store/apps/details?id=io.syncapps.lemmy_sync&hl=en_US&gl=US>
+Lemmy | Sync for Lemmy | <https://play.google.com/store/apps/details?id=io.syncapps.lemmy_sync&gl=US>

 📅 2025-11-24 14:47:58 -0500  🗨 Update apps ---
 content/apps.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index b8971fe..1ed672b 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -131,0 +132 @@ Category | Name | URL
+📁 File Explorer | Yazi | <https://github.com/sxyazi/yazi>
@@ -132,0 +134 @@ Category | Name | URL
+🤹‍♂️ Multiplexer (other) | Zellij | <https://github.com/zellij-org/zellij>
@@ -135 +137 @@ Category | Name | URL
-🗄  Dot Files | YADM | <https://yadm.io>
+🗄 Dot Files | YADM | <https://yadm.io>
@@ -189,0 +192 @@ Category | Name | URL
+📮 REST Tester | 🚩 Resterm | <https://github.com/unkn0wn-root/resterm>

 📅 2025-11-23 14:05:44 -0500  🗨 Added Handy to apps ---
 content/apps.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/content/apps.md b/content/apps.md
index 6f4b6fe..b8971fe 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -117,0 +118 @@ Category | Name | URL
+🗣 Speech To Text | Handy | <https://github.com/cjpais/Handy>

 📅 2025-10-23 15:22:13 -0400  🗨 Add QuickShare and NearDrop to apps list ---
 content/apps.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index e42597b..6f4b6fe 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -101,0 +102 @@ Category | Name | URL
+🤝 QuickShare | RQuickShare | <https://github.com/Martichou/rquickshare>
@@ -240,0 +242 @@ Scratch Pad | 🚩 Boop | <https://github.com/IvanMathy/Boop>
+QuickShare | NearDrop | <https://github.com/grishka/NearDrop>

 📅 2025-10-22 17:41:28 -0400  🗨 Update apps.md ---
 content/apps.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index 2e6c56c..e42597b 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -278,0 +279,2 @@ Search | PixelSearch | <https://play.google.com/store/apps/details?id=rk.android
+Keyboard T9 | TT9 | <https://play.google.com/store/apps/details?id=io.github.sspanak.tt9>
+Keyboard Alt | Unexpected Keyboard | <https://play.google.com/store/apps/details?id=juloo.keyboard2>

 📅 2025-10-21 14:52:45 -0400  🗨 Update apps.md ---
 content/apps.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index de75d1b..2e6c56c 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -267,0 +268,4 @@ Workout Tracker | GymRun | <https://www.gymrun.app/>
+Category | Name | URL
+-|-|-
+Appstore | Aurora | <https://auroraoss.com/aurora-store>
+

 📅 2025-10-19 14:32:33 -0400  🗨 Update apps ---
 content/apps.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index 908a233..de75d1b 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -270,0 +271 @@ Launcher | Nova Launcher | <https://novalauncher.com>
+Launcher | Niagra | <https://play.google.com/store/apps/details?id=bitpit.launcher&hl=en_US>
@@ -271,0 +273,2 @@ Search | Sesame Search | <https://play.google.com/store/apps/details?id=ninja.se
+Search | 🚩 AppSearch | <https://play.google.com/store/apps/details?id=net.pnhdroid.appsearch&hl=en_US>
+Search | PixelSearch | <https://play.google.com/store/apps/details?id=rk.android.app.pixelsearch&hl=en_US>
@@ -282 +285,3 @@ Phone | TruePhone | <https://play.google.com/store/apps/details?id=com.hb.dialer
-CallerID |CallerID | <https://play.google.com/store/apps/details?id=com.callblocker.whocalledme>
+CallerID (Secondary) | 🚩 Alternate | <https://github.com/BioHazard786/Alternate>
+Address Book Sync | 🚩 Decsync | <https://f-droid.org/packages/org.decsync.cc>
+CallerID | CallerID | <https://play.google.com/store/apps/details?id=com.callblocker.whocalledme>

 📅 2025-10-12 17:25:54 -0400  🗨 Swap podcast service ---
 content/apps.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index 68a8017..908a233 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -80 +80 @@ Category | Name | URL
-📢 Podcasts | Podurama | <https://podurama.com>
+📢 Podcasts | Pocketcasts | <https://pocketcasts.com/>

 📅 2025-09-23 23:34:41 -0400  🗨 Update app list with new apps ---
 content/apps.md | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 03a6197..68a8017 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -291 +291,2 @@ Document Scanner | Genius Scan | <https://play.google.com/store/apps/details?id=
-Gallery | F-Stop | <https://www.fstopapp.com>
+Document Scanner (FOSS) | OSS Document Scanner | <https://apt.izzysoft.de/fdroid/index/apk/com.akylas.documentscanner>
+Gallery | 🚩 F-Stop | <https://www.fstopapp.com>
@@ -293 +294 @@ Image Editor | Snapseed | <https://play.google.com/store/apps/details?id=com.nik
-Barcode Scanner | BinaryEye | <https://github.com/markusfisch/BinaryEye>
+Barcode Scanner | 🚩 BinaryEye | <https://github.com/markusfisch/BinaryEye>
@@ -306 +307,2 @@ NFC | NFC Tools | <https://play.google.com/store/apps/details?id=com.wakdev.wdnf
-App Isolation | Shelter | <https://github.com/erCxy/Shelter>
+App Isolation | Island | <https://play.google.com/store/apps/details?id=com.oasisfeng.island>
+Web Wrapper | Hermit | <https://play.google.com/store/apps/details?id=com.chimbori.hermitcrab>
@@ -308,0 +311,2 @@ Contact Callendar Sync | Davdroid | <https://f-droid.org/packages/at.bitfire.dav
+Distributed Contact Sync | DecSync | <https://f-droid.org/en/packages/org.decsync.cc/>
+E-Book Reader | Moon+ Reader | <https://play.google.com/store/apps/details?id=com.flyersoft.moonreaderp>

 📅 2025-09-20 13:30:46 -0400  🗨 App add ---
 content/apps.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/content/apps.md b/content/apps.md
index 3999ca9..03a6197 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -307,0 +308 @@ Package Tracking | Route | <https://play.google.com/store/apps/details?id=com.ro
+Contact Callendar Sync | Davdroid | <https://f-droid.org/packages/at.bitfire.davdroid/>

 📅 2025-09-06 19:51:04 -0400  🗨 Updated EDC items ---
 content/apps.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/content/apps.md b/content/apps.md
index b8d7f8a..3999ca9 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -214,0 +215,3 @@ CLI | Typer | Python | <https://typer.tiangolo.com/>
+s | | https://google.com
+
+

 📅 2025-08-30 14:51:13 -0400  🗨 Added time tracker app ---
 content/apps.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/content/apps.md b/content/apps.md
index 8b45be6..b8d7f8a 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -167,0 +168 @@ Web | StayFree | <https://stayfreeapps.com>
+Android | SimpleTimeTracker | <https://play.google.com/store/apps/details?id=com.razeeman.util.simpletimetracker>

 📅 2025-08-23 16:35:18 -0400  🗨 Added white noise apps ---
 content/apps.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index ebecd65..8b45be6 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -135,0 +136 @@ Category | Name | URL
+⏺ Scrobbler (last.fm) | pano-scrobbler | <https://github.com/kawaiiDango/pano-scrobbler>
@@ -225 +226 @@ Screen Shot | Flameshot | <https://flameshot.org>
-TimeZone Clock |MATE Menu Bar | date +'%H:%M U' -u
+TimeZone Clock | MATE Menu Bar | date +'%H:%M U' -u
@@ -226,0 +228 @@ TimeZone Calculator | TZ | <https://github.com/oz/tz>
+White Noise | Blanket | <https://github.com/rafaelmardojai/blanket>
@@ -243,0 +246 @@ Mouse Acceleration | LinearMouse | <https://github.com/linearmouse/linearmouse>
+White Noise | Blankie | <https://blankie.rest>

 📅 2025-08-16 13:52:41 -0400  🗨 Added package tracker and updated link dump ---
 content/apps.md | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 8650e4b..ebecd65 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -299,3 +299,2 @@ NFC | NFC Tools | <https://play.google.com/store/apps/details?id=com.wakdev.wdnf
-App Isolation | Shelter | <https://github.com/
-
-erCxy/Shelter>
+App Isolation | Shelter | <https://github.com/erCxy/Shelter>
+Package Tracking | Route | <https://play.google.com/store/apps/details?id=com.route.app>

 📅 2025-08-08 01:39:43 -0400  🗨 Formating ---
 content/apps.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 6612963..8650e4b 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -123,2 +123,2 @@ Category | Name | URL
-🛠  Binary Package (Homebrew) | 🚩 Stew | <https://github.com/marwanhawari/stew>
-🗑  Safer RM/del | 🚩 gTrash| <https://github.com/umlx5h/gtrash>
+🛠 Binary Package (Homebrew) | 🚩 Stew | <https://github.com/marwanhawari/stew>
+🗑 Safer RM/del | 🚩 gTrash| <https://github.com/umlx5h/gtrash>
@@ -126 +126 @@ Category | Name | URL
-🗃  File Pager | 🚩 moar | <https://github.com/walles/moar>
+🗃 File Pager | 🚩 moar | <https://github.com/walles/moar>

 📅 2025-08-08 01:38:40 -0400  🗨 Added pet and cb ---
 content/apps.md | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/content/apps.md b/content/apps.md
index be65963..6612963 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -133,0 +134,2 @@ Category | Name | URL
+📋 Clipboard Manager | clipboard | <https://github.com/Slackadays/clipboard>
+✂ Snippet Manager | pet | <https://github.com/knqyf263/pet>
@@ -297 +299,3 @@ NFC | NFC Tools | <https://play.google.com/store/apps/details?id=com.wakdev.wdnf
-App Isolation | Shelter | <https://github.com/PeterCxy/Shelter>
+App Isolation | Shelter | <https://github.com/
+
+erCxy/Shelter>

 📅 2025-07-27 16:51:40 -0400  🗨 Fix formating ---
 content/apps.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 87a9b85..be65963 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -652 +652 @@ Env File Support | <https://plugins.jetbrains.com/plugin/9525--env-files-support
-|[##Tasks##](https://obsidian.md/plugins?id=obsidian-tasks-plugin) [⬇️](obsidian://SP-install?id=obsidian-tasks-plugin&enable=true)|[Clare Macrae and Ilyas Landikov (created by Martin Schenck)](https://github.com/obsidian-tasks-group) [♡](https://github.com/sponsors/claremacrae)|7.20.0|Track tasks across your vault. Supports due...|
+|[##Tasks##](https://obsidian.md/plugins?id=obsidian-tasks-plugin) [⬇️](obsidian://SP-install?id=obsidian-tasks-plugin&enable=true)|[Clare Macrae and Ilyas Landikov](https://github.com/obsidian-tasks-group) [♡](https://github.com/sponsors/claremacrae)|7.20.0|Track tasks across your vault. Supports due...|
@@ -670,2 +670,2 @@ Env File Support | <https://plugins.jetbrains.com/plugin/9525--env-files-support
-|Name | Type | Version | Enabled | ID
-|
+|Name | Type | Version | Enabled | ID|
+|-|-|-|-|-|

 📅 2025-07-27 14:05:07 -0400  🗨 Update app list ---
 content/apps.md | 538 ++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 443 insertions(+), 95 deletions(-)

diff --git a/content/apps.md b/content/apps.md
index 560e062..87a9b85 100644
--- a/content/apps.md
+++ b/content/apps.md
@@ -37 +37,2 @@ Also feel free to check out 👉 <https://stackshare.io/jelloeater>
-## Install Stew 🍲 (Recommended) 
+## Install Stew 🍲 (Recommended)
+
@@ -46 +47,2 @@ sudo mv stew /usr/local/bin
-## Install eget 
+## Install eget
+
@@ -53 +55,2 @@ curl https://zyedidia.github.io/eget.sh | sh
-## Install deb-get 
+## Install deb-get
+
@@ -132 +134,0 @@ Category | Name | URL
-
@@ -245 +247 @@ Category | Name | URL
-Watch Face | Simple Digital | https://play.google.com/store/apps/details?id=com.amoledwatchfaces.simpledigital
+Watch Face | Simple Digital | <https://play.google.com/store/apps/details?id=com.amoledwatchfaces.simpledigital>
@@ -336,15 +338,228 @@ Env File Support | <https://plugins.jetbrains.com/plugin/9525--env-files-support
- Name | URL
--|-
-🚩 git-graph |  <https://marketplace.visualstudio.com/items?itemName=mhutchie.git-graph>
-🚩 EditorConfig| <https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig>
-🚩 search-everywhere | <https://marketplace.visualstudio.com/items?itemName=extruct-ai.search-everywhere>
-vscode-sops | <https://marketplace.visualstudio.com/items?itemName=signageos.signageos-vscode-sops>
-codesnap | <https://marketplace.visualstudio.com/items?itemName=adpyke.codesnap>
-shift-shift | <https://marketplace.visualstudio.com/items?itemName=ahgood.shift-shift>
-activitusbar | <https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.activitusbar>
-data-preview| <https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.vscode-data-preview>
-error-gutters | <https://marketplace.visualstudio.com/items?itemName=IgorSbitnev.error-gutters>
-guides| <https://marketplace.visualstudio.com/items?itemName=spywhere.guides>
-output-colorizer|  <https://marketplace.visualstudio.com/items?itemName=IBM.output-colorizer>
-swissknife | <https://marketplace.visualstudio.com/items?itemName=luisfontes19.vscode-swissknife>
-todo-highlight | <https://marketplace.visualstudio.com/items?itemName=wayou.vscode-todo-highlight>
+|Extension Name                                        |Extension ID                                        |Extension URL                                                                                           |
+|------------------------------------------------------|----------------------------------------------------|--------------------------------------------------------------------------------------------------------|
+|JavaScript Debugger                                   |ms-vscode.js-debug                                  |https://marketplace.visualstudio.com/items?itemName=ms-vscode.js-debug                                  |
+|JavaScript Debugger Companion Extension               |ms-vscode.js-debug-companion                        |https://marketplace.visualstudio.com/items?itemName=ms-vscode.js-debug-companion                        |
+|Table Visualizer for JavaScript Profiles              |ms-vscode.vscode-js-profile-table                   |https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-js-profile-table                   |
+|Better Comments                                       |aaron-bond.better-comments                          |https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments                          |
+|aw-watcher-vscode                                     |activitywatch.aw-watcher-vscode                     |https://marketplace.visualstudio.com/items?itemName=activitywatch.aw-watcher-vscode                     |
+|Commit Message Editor                                 |adam-bender.commit-message-editor                   |https://marketplace.visualstudio.com/items?itemName=adam-bender.commit-message-editor                   |
+|vscode-base64                                         |adamhartford.vscode-base64                          |https://marketplace.visualstudio.com/items?itemName=adamhartford.vscode-base64                          |
+|CodeSnap                                              |adpyke.codesnap                                     |https://marketplace.visualstudio.com/items?itemName=adpyke.codesnap                                     |
+|NGINX Configuration Language Support                  |ahmadalli.vscode-nginx-conf                         |https://marketplace.visualstudio.com/items?itemName=ahmadalli.vscode-nginx-conf                         |
+|hugofy                                                |akmittal.hugofy                                     |https://marketplace.visualstudio.com/items?itemName=akmittal.hugofy                                     |
+|Project Manager                                       |alefragnani.project-manager                         |https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager                         |
+|RTF                                                   |alefragnani.rtf                                     |https://marketplace.visualstudio.com/items?itemName=alefragnani.rtf                                     |
+|Eclipse Keymap                                        |alphabotsec.vscode-eclipse-keybindings              |https://marketplace.visualstudio.com/items?itemName=alphabotsec.vscode-eclipse-keybindings              |
+|Monokai ST3                                           |AndreyVolosovich.monokai-st3                        |https://marketplace.visualstudio.com/items?itemName=AndreyVolosovich.monokai-st3                        |
+|VSCode Aider                                          |Apertia.vscode-aider                                |https://marketplace.visualstudio.com/items?itemName=Apertia.vscode-aider                                |
+|Reorder Lines By Length                               |aravind-parappil.reorder-lines-by-length            |https://marketplace.visualstudio.com/items?itemName=aravind-parappil.reorder-lines-by-length            |
+|Hugo Partials Defs                                    |arthaud-proust.hugo-partials-defs                   |https://marketplace.visualstudio.com/items?itemName=arthaud-proust.hugo-partials-defs                   |
+|Git Stash                                             |arturock.gitstash                                   |https://marketplace.visualstudio.com/items?itemName=arturock.gitstash                                   |
+|Cursor Pytest                                         |ArunDev404.cursor-pytest                            |https://marketplace.visualstudio.com/items?itemName=ArunDev404.cursor-pytest                            |
+|All Autocomplete                                      |Atishay-Jain.All-Autocomplete                       |https://marketplace.visualstudio.com/items?itemName=Atishay-Jain.All-Autocomplete                       |
+|One Monokai Theme                                     |azemoh.one-monokai                                  |https://marketplace.visualstudio.com/items?itemName=azemoh.one-monokai                                  |
+|Git Temporal                                          |bee.git-temporal-vscode                             |https://marketplace.visualstudio.com/items?itemName=bee.git-temporal-vscode                             |
+|Log Viewer                                            |berublan.vscode-log-viewer                          |https://marketplace.visualstudio.com/items?itemName=berublan.vscode-log-viewer                          |
+|Export Your Extensions                                |BhargavDetroja.export-your-extensions               |https://marketplace.visualstudio.com/items?itemName=BhargavDetroja.export-your-extensions               |
+|:emojisense:                                          |bierner.emojisense                                  |https://marketplace.visualstudio.com/items?itemName=bierner.emojisense                                  |
+|Markdown Emoji                                        |bierner.markdown-emoji                              |https://marketplace.visualstudio.com/items?itemName=bierner.markdown-emoji                              |
+|Markdown Preview Mermaid Support                      |bierner.markdown-mermaid                            |https://marketplace.visualstudio.com/items?itemName=bierner.markdown-mermaid                            |
+|Markdown yaml Preamble                                |bierner.markdown-yaml-preamble                      |https://marketplace.visualstudio.com/items?itemName=bierner.markdown-yaml-preamble                      |
+|HAProxy                                               |bmarkovic.haproxy                                   |https://marketplace.visualstudio.com/items?itemName=bmarkovic.haproxy                                   |
+|Mermaid Markdown Syntax Highlighting                  |bpruitt-goddard.mermaid-markdown-syntax-highlighting|https://marketplace.visualstudio.com/items?itemName=bpruitt-goddard.mermaid-markdown-syntax-highlighting|
+|Tailwind CSS IntelliSense                             |bradlc.vscode-tailwindcss                           |https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss                           |
+|File Properties Viewer                                |brunnerh.file-properties-viewer                     |https://marketplace.visualstudio.com/items?itemName=brunnerh.file-properties-viewer                     |
+|Hugo Language and Syntax Support                      |budparr.language-hugo-vscode                        |https://marketplace.visualstudio.com/items?itemName=budparr.language-hugo-vscode                        |
+|Pytest IntelliSense                                   |Cameron.vscode-pytest                               |https://marketplace.visualstudio.com/items?itemName=Cameron.vscode-pytest                               |
+|Diff Viewer                                           |caponetto.vscode-diff-viewer                        |https://marketplace.visualstudio.com/items?itemName=caponetto.vscode-diff-viewer                        |
+|Text2QRCode                                           |Ceelog.text2qrcode                                  |https://marketplace.visualstudio.com/items?itemName=Ceelog.text2qrcode                                  |
+|W3C Web Validator                                     |CelianRiboulet.webvalidator                         |https://marketplace.visualstudio.com/items?itemName=CelianRiboulet.webvalidator                         |
+|JetBrains Icon Theme                                  |chadalen.vscode-jetbrains-icon-theme                |https://marketplace.visualstudio.com/items?itemName=chadalen.vscode-jetbrains-icon-theme                |
+|Markdown to JIRA                                      |chintans98.markdown-jira                            |https://marketplace.visualstudio.com/items?itemName=chintans98.markdown-jira                            |
+|Path Intellisense                                     |christian-kohler.path-intellisense                  |https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense                  |
+|gitignore                                             |codezombiech.gitignore                              |https://marketplace.visualstudio.com/items?itemName=codezombiech.gitignore                              |
+|vscode-zonefile                                       |Compilenix.vscode-zonefile                          |https://marketplace.visualstudio.com/items?itemName=Compilenix.vscode-zonefile                          |
+|Transformer                                           |dakara.transformer                                  |https://marketplace.visualstudio.com/items?itemName=dakara.transformer                                  |
+|Meld Diff                                             |danielroedl.meld-diff                               |https://marketplace.visualstudio.com/items?itemName=danielroedl.meld-diff                               |
+|Pytest IntelliSense                                   |datoux.vscode-pytest-intellisence                   |https://marketplace.visualstudio.com/items?itemName=datoux.vscode-pytest-intellisence                   |
+|ESPTool                                               |DavesCodeMusings.esptool                            |https://marketplace.visualstudio.com/items?itemName=DavesCodeMusings.esptool                            |
+|markdownlint                                          |DavidAnson.vscode-markdownlint                      |https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint                      |
+|IDE Sync - Connect to JetBrains IDE                   |denisbalber.vscode-jetbrains-sync                   |https://marketplace.visualstudio.com/items?itemName=denisbalber.vscode-jetbrains-sync                   |
+|empty-indent                                          |DmitryDorofeev.empty-indent                         |https://marketplace.visualstudio.com/items?itemName=DmitryDorofeev.empty-indent                         |
+|Rewrap Revived                                        |dnut.rewrap-revived                                 |https://marketplace.visualstudio.com/items?itemName=dnut.rewrap-revived                                 |
+|Docker DX                                             |docker.docker                                       |https://marketplace.visualstudio.com/items?itemName=docker.docker                                       |
+|Git History                                           |donjayamanne.githistory                             |https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory                             |
+|XML Tools                                             |DotJoshJohnson.xml                                  |https://marketplace.visualstudio.com/items?itemName=DotJoshJohnson.xml                                  |
+|Sync Scroll                                           |dqisme.sync-scroll                                  |https://marketplace.visualstudio.com/items?itemName=dqisme.sync-scroll                                  |
+|Earthfile Syntax Highlighting                         |earthly.earthfile-syntax-highlighting               |https://marketplace.visualstudio.com/items?itemName=earthly.earthfile-syntax-highlighting               |
+|EditorConfig for VS Code                              |EditorConfig.EditorConfig                           |https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig                           |
+|Graphviz Preview                                      |EFanZh.graphviz-preview                             |https://marketplace.visualstudio.com/items?itemName=EFanZh.graphviz-preview                             |
+|Remote UDP Tunnel                                     |efokschaner.remote-udp-tunnel                       |https://marketplace.visualstudio.com/items?itemName=efokschaner.remote-udp-tunnel                       |
+|Remote UDP Tunnel (Local Sub-Component)               |efokschaner.remote-udp-tunnel-ui                    |https://marketplace.visualstudio.com/items?itemName=efokschaner.remote-udp-tunnel-ui                    |
+|Front Matter CMS                                      |eliostruyf.vscode-front-matter                      |https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter                      |
+|Magick Image Reader                                   |elypia.magick-image-reader                          |https://marketplace.visualstudio.com/items?itemName=elypia.magick-image-reader                          |
+|Log File Highlighter                                  |emilast.LogFileHighlighter                          |https://marketplace.visualstudio.com/items?itemName=emilast.LogFileHighlighter                          |
+|Prettier - Code formatter                             |esbenp.prettier-vscode                              |https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode                              |
+|JetBrains Search Everywhere                           |extruct-ai.search-everywhere                        |https://marketplace.visualstudio.com/items?itemName=extruct-ai.search-everywhere                        |
+|Projects+                                             |fabiospampinato.vscode-projects-plus                |https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-projects-plus                |
+|Todo+                                                 |fabiospampinato.vscode-todo-plus                    |https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-todo-plus                    |
+|opensslutils                                          |ffaraone.opensslutils                               |https://marketplace.visualstudio.com/items?itemName=ffaraone.opensslutils                               |
+|Hugo Snippets                                         |fivethree.vscode-hugo-snippets                      |https://marketplace.visualstudio.com/items?itemName=fivethree.vscode-hugo-snippets                      |
+|Auto Rename Tag                                       |formulahendry.auto-rename-tag                       |https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag                       |
+|Code Runner                                           |formulahendry.code-runner                           |https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner                           |
+|shell-format                                          |foxundermoon.shell-format                           |https://marketplace.visualstudio.com/items?itemName=foxundermoon.shell-format                           |
+|CodeTogether Cloud                                    |genuitecllc.codetogether                            |https://marketplace.visualstudio.com/items?itemName=genuitecllc.codetogether                            |
+|Green Theme                                           |gerane.Theme-Green                                  |https://marketplace.visualstudio.com/items?itemName=gerane.Theme-Green                                  |
+|GitHub Copilot                                        |GitHub.copilot                                      |https://marketplace.visualstudio.com/items?itemName=GitHub.copilot                                      |
+|GitHub Copilot Chat                                   |GitHub.copilot-chat                                 |https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat                                 |
+|GitHub Actions                                        |github.vscode-github-actions                        |https://marketplace.visualstudio.com/items?itemName=github.vscode-github-actions                        |
+|GitHub Pull Requests                                  |GitHub.vscode-pull-request-github                   |https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github                   |
+|Excel Viewer                                          |GrapeCity.gc-excelviewer                            |https://marketplace.visualstudio.com/items?itemName=GrapeCity.gc-excelviewer                            |
+|Activitus Bar                                         |Gruntfuggly.activitusbar                            |https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.activitusbar                            |
+|Time Converter                                        |HaaLeo.timing                                       |https://marketplace.visualstudio.com/items?itemName=HaaLeo.timing                                       |
+|HashiCorp Terraform                                   |hashicorp.terraform                                 |https://marketplace.visualstudio.com/items?itemName=hashicorp.terraform                                 |
+|Test Explorer UI                                      |hbenl.vscode-test-explorer                          |https://marketplace.visualstudio.com/items?itemName=hbenl.vscode-test-explorer                          |
+|Draw.io Integration                                   |hediet.vscode-drawio                                |https://marketplace.visualstudio.com/items?itemName=hediet.vscode-drawio                                |
+|SVG Editor                                            |henoc.svgeditor                                     |https://marketplace.visualstudio.com/items?itemName=henoc.svgeditor                                     |
+|SOPSifier                                             |hierynomus.sopsifier                                |https://marketplace.visualstudio.com/items?itemName=hierynomus.sopsifier                                |
+|List Installed Extensions                             |holdeniscoding.vscode-list-extensions               |https://marketplace.visualstudio.com/items?itemName=holdeniscoding.vscode-list-extensions               |
+|Output Colorizer                                      |IBM.output-colorizer                                |https://marketplace.visualstudio.com/items?itemName=IBM.output-colorizer                                |
+|Smart Multi-cursor                                    |idanp.smartmulticursor                              |https://marketplace.visualstudio.com/items?itemName=idanp.smartmulticursor                              |
+|AppleScript                                           |idleberg.applescript                                |https://marketplace.visualstudio.com/items?itemName=idleberg.applescript                                |
+|Error Gutters                                         |IgorSbitnev.error-gutters                           |https://marketplace.visualstudio.com/items?itemName=IgorSbitnev.error-gutters                           |
+|Interactive Git Log                                   |interactive-smartlog.interactive-smartlog           |https://marketplace.visualstudio.com/items?itemName=interactive-smartlog.interactive-smartlog           |
+|Path Autocomplete                                     |ionutvmi.path-autocomplete                          |https://marketplace.visualstudio.com/items?itemName=ionutvmi.path-autocomplete                          |
+|Web Preview                                           |JabedHossain.web-preview                            |https://marketplace.visualstudio.com/items?itemName=JabedHossain.web-preview                            |
+|Search Editor: Apply Changes                          |jakearl.search-editor-apply-changes                 |https://marketplace.visualstudio.com/items?itemName=jakearl.search-editor-apply-changes                 |
+|NGINX Log Highlighter                                 |jakebathman.nginx-log-highlighter                   |https://marketplace.visualstudio.com/items?itemName=jakebathman.nginx-log-highlighter                   |
+|Cisco IOS Syntax                                      |jamiewoodio.cisco                                   |https://marketplace.visualstudio.com/items?itemName=jamiewoodio.cisco                                   |
+|Edit CSV                                              |janisdd.vscode-edit-csv                             |https://marketplace.visualstudio.com/items?itemName=janisdd.vscode-edit-csv                             |
+|Batch Rename                                          |JannisX11.batch-rename-extension                    |https://marketplace.visualstudio.com/items?itemName=JannisX11.batch-rename-extension                    |
+|Background Terminal Notifier                          |jaredly.background-terminal-notifier                |https://marketplace.visualstudio.com/items?itemName=jaredly.background-terminal-notifier                |
+|Hungry Delete                                         |jasonlhy.hungry-delete                              |https://marketplace.visualstudio.com/items?itemName=jasonlhy.hungry-delete                              |
+|Markdown Extended                                     |jebbs.markdown-extended                             |https://marketplace.visualstudio.com/items?itemName=jebbs.markdown-extended                             |
+|Markdown Code Runner                                  |jeepshen.vscode-markdown-code-runner                |https://marketplace.visualstudio.com/items?itemName=jeepshen.vscode-markdown-code-runner                |
+|Better Shell Syntax                                   |jeff-hykin.better-shellscript-syntax                |https://marketplace.visualstudio.com/items?itemName=jeff-hykin.better-shellscript-syntax                |
+|Snipped                                               |jeffersonlicet.snipped                              |https://marketplace.visualstudio.com/items?itemName=jeffersonlicet.snipped                              |
+|Graphviz (dot) language support for Visual Studio Code|joaompinto.vscode-graphviz                          |https://marketplace.visualstudio.com/items?itemName=joaompinto.vscode-graphviz                          |
+|Peacock                                               |johnpapa.vscode-peacock                             |https://marketplace.visualstudio.com/items?itemName=johnpapa.vscode-peacock                             |
+|Bracket Peek                                          |jomeinaster.bracket-peek                            |https://marketplace.visualstudio.com/items?itemName=jomeinaster.bracket-peek                            |
+|Periscope                                             |JoshMu.periscope                                    |https://marketplace.visualstudio.com/items?itemName=JoshMu.periscope                                    |
+|Insert Date String                                    |jsynowiec.vscode-insertdatestring                   |https://marketplace.visualstudio.com/items?itemName=jsynowiec.vscode-insertdatestring                   |
+|GPG                                                   |jvalecillos.gpg                                     |https://marketplace.visualstudio.com/items?itemName=jvalecillos.gpg                                     |
+|Hugo Shortcode Syntax Highlighting                    |kaellarkin.hugo-shortcode-syntax                    |https://marketplace.visualstudio.com/items?itemName=kaellarkin.hugo-shortcode-syntax                    |
+|google-search                                         |kameshkotwani.google-search                         |https://marketplace.visualstudio.com/items?itemName=kameshkotwani.google-search                         |
+|Image preview                                         |kisstkondoros.vscode-gutter-preview                 |https://marketplace.visualstudio.com/items?itemName=kisstkondoros.vscode-gutter-preview                 |
+|Format in context menus                               |lacroixdavid1.vscode-format-context-menu            |https://marketplace.visualstudio.com/items?itemName=lacroixdavid1.vscode-format-context-menu            |
+|Line History                                          |lihdd.vscode-line-history                           |https://marketplace.visualstudio.com/items?itemName=lihdd.vscode-line-history                           |
+|Python Test Explorer for Visual Studio Code           |littlefoxteam.vscode-python-test-adapter            |https://marketplace.visualstudio.com/items?itemName=littlefoxteam.vscode-python-test-adapter            |
+|GitLess                                               |maattdd.gitless                                     |https://marketplace.visualstudio.com/items?itemName=maattdd.gitless                                     |
+|Bash IDE                                              |mads-hartmann.bash-ide-vscode                       |https://marketplace.visualstudio.com/items?itemName=mads-hartmann.bash-ide-vscode                       |
+|Web Accessibility                                     |MaxvanderSchee.web-accessibility                    |https://marketplace.visualstudio.com/items?itemName=MaxvanderSchee.web-accessibility                    |
+|Rainbow CSV                                           |mechatroner.rainbow-csv                             |https://marketplace.visualstudio.com/items?itemName=mechatroner.rainbow-csv                             |
+|Color Me Error                                        |medo64.color-me-error                               |https://marketplace.visualstudio.com/items?itemName=medo64.color-me-error                               |
+|Git Graph                                             |mhutchie.git-graph                                  |https://marketplace.visualstudio.com/items?itemName=mhutchie.git-graph                                  |
+|goose-vscode                                          |michaelneale.goose-vscode                           |https://marketplace.visualstudio.com/items?itemName=michaelneale.goose-vscode                           |
+|DotENV                                                |mikestead.dotenv                                    |https://marketplace.visualstudio.com/items?itemName=mikestead.dotenv                                    |
+|Encode Decode                                         |mitchdenny.ecdc                                     |https://marketplace.visualstudio.com/items?itemName=mitchdenny.ecdc                                     |
+|Prettify JSON                                         |mohsen1.prettify-json                               |https://marketplace.visualstudio.com/items?itemName=mohsen1.prettify-json                               |
+|Compare Folders                                       |moshfeu.compare-folders                             |https://marketplace.visualstudio.com/items?itemName=moshfeu.compare-folders                             |
+|Container Tools                                       |ms-azuretools.vscode-containers                     |https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-containers                     |
+|Docker                                                |ms-azuretools.vscode-docker                         |https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker                         |
+|Kubernetes                                            |ms-kubernetes-tools.vscode-kubernetes-tools         |https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools         |
+|Data Workspace                                        |ms-mssql.data-workspace-vscode                      |https://marketplace.visualstudio.com/items?itemName=ms-mssql.data-workspace-vscode                      |
+|SQL Server (mssql)                                    |ms-mssql.mssql                                      |https://marketplace.visualstudio.com/items?itemName=ms-mssql.mssql                                      |
+|SQL Bindings                                          |ms-mssql.sql-bindings-vscode                        |https://marketplace.visualstudio.com/items?itemName=ms-mssql.sql-bindings-vscode                        |
+|SQL Database Projects                                 |ms-mssql.sql-database-projects-vscode               |https://marketplace.visualstudio.com/items?itemName=ms-mssql.sql-database-projects-vscode               |
+|PostgreSQL                                            |ms-ossdata.vscode-pgsql                             |https://marketplace.visualstudio.com/items?itemName=ms-ossdata.vscode-pgsql                             |
+|Python Debugger                                       |ms-python.debugpy                                   |https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy                                   |
+|Python                                                |ms-python.python                                    |https://marketplace.visualstudio.com/items?itemName=ms-python.python                                    |
+|Jupyter Keymap                                        |ms-toolsai.jupyter-keymap                           |https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter-keymap                           |
+|Jupyter Notebook Renderers                            |ms-toolsai.jupyter-renderers                        |https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter-renderers                        |
+|Jupyter Cell Tags                                     |ms-toolsai.vscode-jupyter-cell-tags                 |https://marketplace.visualstudio.com/items?itemName=ms-toolsai.vscode-jupyter-cell-tags                 |
+|Jupyter Slide Show                                    |ms-toolsai.vscode-jupyter-slideshow                 |https://marketplace.visualstudio.com/items?itemName=ms-toolsai.vscode-jupyter-slideshow                 |
+|Remote - SSH                                          |ms-vscode-remote.remote-ssh                         |https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh                         |
+|Remote - SSH: Editing Configuration Files             |ms-vscode-remote.remote-ssh-edit                    |https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh-edit                    |
+|Remote Development                                    |ms-vscode-remote.vscode-remote-extensionpack        |https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack        |
+|Live Preview                                          |ms-vscode.live-server                               |https://marketplace.visualstudio.com/items?itemName=ms-vscode.live-server                               |
+|Remote Explorer                                       |ms-vscode.remote-explorer                           |https://marketplace.visualstudio.com/items?itemName=ms-vscode.remote-explorer                           |
+|Remote - Tunnels                                      |ms-vscode.remote-server                             |https://marketplace.visualstudio.com/items?itemName=ms-vscode.remote-server                             |
+|Test Adapter Converter                                |ms-vscode.test-adapter-converter                    |https://marketplace.visualstudio.com/items?itemName=ms-vscode.test-adapter-converter                    |
+|VS Code Speech                                        |ms-vscode.vscode-speech                             |https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-speech                             |
+|MscGen                                                |mscgenjs.vscode-mscgen                              |https://marketplace.visualstudio.com/items?itemName=mscgenjs.vscode-mscgen                              |
+|SandDance for VSCode                                  |msrvida.vscode-sanddance                            |https://marketplace.visualstudio.com/items?itemName=msrvida.vscode-sanddance                            |
+|SFTP                                                  |Natizyskunk.sftp                                    |https://marketplace.visualstudio.com/items?itemName=Natizyskunk.sftp                                    |
+|Color Highlight                                       |naumovs.color-highlight                             |https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight                             |
+|Gremlins tracker for Visual Studio Code               |nhoizey.gremlins                                    |https://marketplace.visualstudio.com/items?itemName=nhoizey.gremlins                                    |
+|Back & Forth                                          |nick-rudenko.back-n-forth                           |https://marketplace.visualstudio.com/items?itemName=nick-rudenko.back-n-forth                           |
+|Git - Semantic Commit                                 |nitayneeman.git-semantic-commit                     |https://marketplace.visualstudio.com/items?itemName=nitayneeman.git-semantic-commit                     |
+|Incrementor                                           |nmsmith89.incrementor                               |https://marketplace.visualstudio.com/items?itemName=nmsmith89.incrementor                               |
+|Date Hover Preview                                    |nortakales.date-hover-preview                       |https://marketplace.visualstudio.com/items?itemName=nortakales.date-hover-preview                       |
+|indent-rainbow                                        |oderwat.indent-rainbow                              |https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow                              |
+|CodeMap                                               |oleg-shilo.codemap                                  |https://marketplace.visualstudio.com/items?itemName=oleg-shilo.codemap                                  |
+|Last Commit                                           |orhun.last-commit                                   |https://marketplace.visualstudio.com/items?itemName=orhun.last-commit                                   |
+|Pytest Runner for Visual Studio Code                  |pamaron.pytest-runner                               |https://marketplace.visualstudio.com/items?itemName=pamaron.pytest-runner                               |
+|Git Patch                                             |paragdiwan.gitpatch                                 |https://marketplace.visualstudio.com/items?itemName=paragdiwan.gitpatch                                 |
+|Explorer Exclude                                      |PeterSchmalfeldt.explorer-exclude                   |https://marketplace.visualstudio.com/items?itemName=PeterSchmalfeldt.explorer-exclude                   |
+|CSV to Table                                          |phplasma.csv-to-table                               |https://marketplace.visualstudio.com/items?itemName=phplasma.csv-to-table                               |
+|.gitignore Generator                                  |piotrpalarz.vscode-gitignore-generator              |https://marketplace.visualstudio.com/items?itemName=piotrpalarz.vscode-gitignore-generator              |
+|Material Icon Theme                                   |PKief.material-icon-theme                           |https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme                           |
+|Material Product Icons                                |PKief.material-product-icons                        |https://marketplace.visualstudio.com/items?itemName=PKief.material-product-icons                        |
+|Git File History                                      |pomber.git-file-history                             |https://marketplace.visualstudio.com/items?itemName=pomber.git-file-history                             |
+|Pretty XML                                            |PrateekMahendrakar.prettyxml                        |https://marketplace.visualstudio.com/items?itemName=PrateekMahendrakar.prettyxml                        |
+|Text Power Tools                                      |qcz.text-power-tools                                |https://marketplace.visualstudio.com/items?itemName=qcz.text-power-tools                                |
+|Subtle Match Brackets                                 |rafamel.subtle-brackets                             |https://marketplace.visualstudio.com/items?itemName=rafamel.subtle-brackets                             |
+|Developer's theme                                     |Rajeshwaran.developer-theme-dark                    |https://marketplace.visualstudio.com/items?itemName=Rajeshwaran.developer-theme-dark                    |
+|Data Preview                                          |RandomFractalsInc.vscode-data-preview               |https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.vscode-data-preview               |
+|nginx-formatter                                       |raynigon.nginx-formatter                            |https://marketplace.visualstudio.com/items?itemName=raynigon.nginx-formatter                            |
+|XML                                                   |redhat.vscode-xml                                   |https://marketplace.visualstudio.com/items?itemName=redhat.vscode-xml                                   |
+|YAML                                                  |redhat.vscode-yaml                                  |https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml                                  |
+|Fix VSCode Checksums Next                             |RimuruChan.vscode-fix-checksums-next                |https://marketplace.visualstudio.com/items?itemName=RimuruChan.vscode-fix-checksums-next                |
+|Code Snapshot                                         |robertz.code-snapshot                               |https://marketplace.visualstudio.com/items?itemName=robertz.code-snapshot                               |
+|Marky Stats                                           |robole.marky-stats                                  |https://marketplace.visualstudio.com/items?itemName=robole.marky-stats                                  |
+|Bash Debug                                            |rogalmic.bash-debug                                 |https://marketplace.visualstudio.com/items?itemName=rogalmic.bash-debug                                 |
+|Shebang Snippets                                      |rpinski.shebang-snippets                            |https://marketplace.visualstudio.com/items?itemName=rpinski.shebang-snippets                            |
+|Partial Diff                                          |ryu1kn.partial-diff                                 |https://marketplace.visualstudio.com/items?itemName=ryu1kn.partial-diff                                 |
+|vscode-gtm                                            |s3ramsay.vscode-gtm                                 |https://marketplace.visualstudio.com/items?itemName=s3ramsay.vscode-gtm                                 |
+|IAM Legend                                            |SebastianBille.iam-legend                           |https://marketplace.visualstudio.com/items?itemName=SebastianBille.iam-legend                           |
+|SemanticDiff                                          |semanticdiff.semanticdiff                           |https://marketplace.visualstudio.com/items?itemName=semanticdiff.semanticdiff                           |
+|Git Merger                                            |shaharkazaz.git-merger                              |https://marketplace.visualstudio.com/items?itemName=shaharkazaz.git-merger                              |
+|Trailing Spaces                                       |shardulm94.trailing-spaces                          |https://marketplace.visualstudio.com/items?itemName=shardulm94.trailing-spaces                          |
+|SOPS easy edit                                        |ShipitSmarter.sops-edit                             |https://marketplace.visualstudio.com/items?itemName=ShipitSmarter.sops-edit                             |
+|HTML Boilerplate                                      |sidthesloth.html5-boilerplate                       |https://marketplace.visualstudio.com/items?itemName=sidthesloth.html5-boilerplate                       |
+|Auto Hide                                             |sirmspencer.vscode-autohide                         |https://marketplace.visualstudio.com/items?itemName=sirmspencer.vscode-autohide                         |
+|Indenticator                                          |SirTori.indenticator                                |https://marketplace.visualstudio.com/items?itemName=SirTori.indenticator                                |
+|HTML to CSS autocompletion                            |solnurkarim.html-to-css-autocompletion              |https://marketplace.visualstudio.com/items?itemName=solnurkarim.html-to-css-autocompletion              |
+|Code Spell Checker                                    |streetsidesoftware.code-spell-checker               |https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker               |
+|iconfont-preview                                      |stxr.iconfont-preview                               |https://marketplace.visualstudio.com/items?itemName=stxr.iconfont-preview                               |
+|m3u                                                   |synker.m3u                                          |https://marketplace.visualstudio.com/items?itemName=synker.m3u                                          |
+|Tab to Space                                          |TakumiI.tabspace                                    |https://marketplace.visualstudio.com/items?itemName=TakumiI.tabspace                                    |
+|Even Better TOML                                      |tamasfe.even-better-toml                            |https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml                            |
+|Task                                                  |task.vscode-task                                    |https://marketplace.visualstudio.com/items?itemName=task.vscode-task                                    |
+|Git Branch Warnings                                   |teledemic.branch-warnings                           |https://marketplace.visualstudio.com/items?itemName=teledemic.branch-warnings                           |
+|ShellCheck                                            |timonwong.shellcheck                                |https://marketplace.visualstudio.com/items?itemName=timonwong.shellcheck                                |
+|Markdown PDF Plus                                     |tom-latham.markdown-pdf-plus                        |https://marketplace.visualstudio.com/items?itemName=tom-latham.markdown-pdf-plus                        |
+|vscode-pdf                                            |tomoki1207.pdf                                      |https://marketplace.visualstudio.com/items?itemName=tomoki1207.pdf                                      |
+|LazyGit VSCode                                        |TomPollak.lazygit-vscode                            |https://marketplace.visualstudio.com/items?itemName=TomPollak.lazygit-vscode                            |
+|Terminal Here                                         |Tyriar.vscode-terminal-here                         |https://marketplace.visualstudio.com/items?itemName=Tyriar.vscode-terminal-here                         |
+|OpenPGP Encryption                                    |ugosan.vscode-openpgp                               |https://marketplace.visualstudio.com/items?itemName=ugosan.vscode-openpgp                               |
+|Error Lens                                            |usernamehw.errorlens                                |https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens                                |
+|Indent one space                                      |usernamehw.indent-one-space                         |https://marketplace.visualstudio.com/items?itemName=usernamehw.indent-one-space                         |
+|Reopen Closed Tab                                     |uyiosa-enabulele.reopenclosedtab                    |https://marketplace.visualstudio.com/items?itemName=uyiosa-enabulele.reopenclosedtab                    |
+|Highlight Matching Tag                                |vincaslt.highlight-matching-tag                     |https://marketplace.visualstudio.com/items?itemName=vincaslt.highlight-matching-tag                     |
+|Mermaid Preview                                       |vstirbu.vscode-mermaid-preview                      |https://marketplace.visualstudio.com/items?itemName=vstirbu.vscode-mermaid-preview                      |
+|Git Blame                                             |waderyan.gitblame                                   |https://marketplace.visualstudio.com/items?itemName=waderyan.gitblame                                   |
+|WakaTime                                              |WakaTime.vscode-wakatime                            |https://marketplace.visualstudio.com/items?itemName=WakaTime.vscode-wakatime                            |
+|TODO Highlight                                        |wayou.vscode-todo-highlight                         |https://marketplace.visualstudio.com/items?itemName=wayou.vscode-todo-highlight                         |
+|GPG Indicator                                         |wdhongtw.gpg-indicator                              |https://marketplace.visualstudio.com/items?itemName=wdhongtw.gpg-indicator                              |
+|NGINX Configuration                                   |william-voyek.vscode-nginx                          |https://marketplace.visualstudio.com/items?itemName=william-voyek.vscode-nginx                          |
+|change-case                                           |wmaurer.change-case                                 |https://marketplace.visualstudio.com/items?itemName=wmaurer.change-case                                 |
+|jumpy                                                 |wmaurer.vscode-jumpy                                |https://marketplace.visualstudio.com/items?itemName=wmaurer.vscode-jumpy                                |
+|Local History                                         |xyz.local-history                                   |https://marketplace.visualstudio.com/items?itemName=xyz.local-history                                   |
+|Markdown All in One                                   |yzhang.markdown-all-in-one                          |https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one                          |
+|json                                                  |ZainChen.json                                       |https://marketplace.visualstudio.com/items?itemName=ZainChen.json                                       |
+|Gemini Image Editor                                   |Zazmic.palm-api-image-editor                        |https://marketplace.visualstudio.com/items?itemName=Zazmic.palm-api-image-editor                        |
+|IntelliSense for CSS class names in HTML              |Zignd.html-css-class-completion                     |https://marketplace.visualstudio.com/items?itemName=Zignd.html-css-class-completion                     |
+|className Completion in CSS                           |zitup.classnametocss                                |https://marketplace.visualstudio.com/items?itemName=zitup.classnametocss                                |
+|Open in GitHub, Bitbucket, Gitlab, VisualStudio.com ! |ziyasal.vscode-open-in-github                       |https://marketplace.visualstudio.com/items?itemName=ziyasal.vscode-open-in-github                       |
+
@@ -354,75 +569,208 @@ todo-highlight | <https://marketplace.visualstudio.com/items?itemName=wayou.vsco
- Name | URL
--|-
-🚩 OmniSearch| <https://github.com/scambier/obsidian-omnisearch>
-🚩 Kanban | <https://github.com/mgmeyers/obsidian-kanban>
-🚩 JiraIssue | <https://github.com/marc0l92/obsidian-jira-issue>
-Open Gate Embed| <https://open-gate.aiocean.io/>
-VariousComplements | <https://github.com/tadashi-aikawa/obsidian-various-complements-plugin>
-LinkFavicons | <https://github.com/joethei/obsidian-link-favicon>
-HomeTab | <https://github.com/olrenso/obsidian-home-tab>
-NoteRefactor | <https://github.com/lynchjames/note-refactor-obsidian>
-Better Command Palette | <https://github.com/AlexBieg/obsidian-better-command-palette>
-Double Shift | <https://github.com/Qwyntex/doubleshift>
-Calendar | <https://github.com/liamcain/obsidian-calendar-plugin>
-Colored Tags | <https://github.com/pfrankov/obsidian-colored-tags>
-Completr | <https://github.com/tth05/obsidian-completr>
-Setting Search | <https://github.com/javalent/settings-search>
-Core Search Assistant | <https://github.com/qawatake/obsidian-core-search-assistant-plugin>
-Editing Toolbar | <https://github.com/PKM-er/obsidian-editing-toolbar>
-GitHub Embeds | <https://github.com/MrGVSV/obsidian-github-embeds>
-Linter | <https://github.com/platers/obsidian-linter>
-Dynamic Highlights | <https://github.com/nothingislost/obsidian-dynamic-highlights>
-Git | <https://github.com/denolehov/obsidian-git>
-Clear Unused Images | <https://github.com/ozntel/oz-clear-unused-images-obsidian>
-Iconize | <https://github.com/FlorianWoelki/obsidian-iconize>
-Strange New Worlds | <https://github.com/TfTHacker/obsidian42-strange-new-worlds>
-
-## 🦊 Firefox
-
-Name | Version | ID
------|---------|---
-Add-ons Search Detection | 2.0.0 | <addons-search-detection@mozilla.com>
-Addon Store Compatibility | 1.0.0 | <addonstores@waterfox.net>
-AI Grammar Checker & Paraphraser – LanguageTool | 8.14.3 | <languagetool-webextension@languagetool.org>
-Auto Tab Discard | 0.6.7 | {c2c003ee-bd69-42a2-b0e9-6f34222cb046}
-Awesome RSS | 1.3.6resigned1 | {97d566da-42c5-4ef4-a03b-5a2e5f7cbcb2}
-BetterTTV | 7.6.10 | <firefox@betterttv.net>
-Bing | 1.3 | <bing@search.waterfox.net>
-Black Menu for Google™ | 25.50.0 | <black-menu-for-google@carlosjeurissen.com>
-Buffer | 6.0.10 | jid1-zUyU7TGKwejAyA@jetpack
-Chrome Mask | 4.3.0 | <chrome-mask@overengineer.dev>
-Dark Reader | 4.9.99 | <addon@darkreader.org>
-DeArrow | 1.10.2 | <deArrow@ajay.app>
-Decentraleyes | 3.0.0 | jid1-BoFifL9Vbdl2zQ@jetpack
-Don't Fuck With Paste | 2.7 | <DontFuckWithPaste@raim.ist>
-DuckDuckGo | 1.1 | <ddg@search.waterfox.net>
-Easy Screenshot | 3.109 | <easyscreenshot@mozillaonline.com>
-Ecosia | 1.1 | <ecosia@search.waterfox.net>
-Fakespot Fake Amazon Reviews and eBay Sellers | 1.5.1 | {44df5123-f715-9146-bfaa-c6e8d4461d44}
-Firefox Multi-Account Containers | 8.2.0 | @testpilot-containers
-Gemini next to Google results | 2.5.2 | {7c0954b8-e548-44b8-93a5-d6bf0d07b26b}
-Google | 1.2 | <google@search.waterfox.net>
-I don't care about cookies | 3.5.0 | jid1-KKzOGWgsW3Ao4Q@jetpack
-Inoreader: Read-later and RSS extension | 6.0.1 | inodhwnfgtr463428675drebcs@jetpack
-Instapaper | 3.1.3 | {d0210f13-a970-4f1e-8322-0f76ec80adde}
-Keepa - Amazon Price Tracker | 4.19 | <amptra@keepa.com>
-KeePassXC-Browser | 1.9.6 | <keepassxc-browser@keepassxc.org>
-Le Git Graph - Commits Graph for GitHub | 1.3.3 | {fd903445-e572-42dd-90be-ae63dd5840ea}
-Mastodon – Simplified Federation! | 2.2 | <mastodon-auto-remote-follow@rugk.github.io>
-minimal | 1.0.2 | {80699c7e-6ff6-440b-9ab4-dd6337651e9d}
-Mojeek | 1.0 | <mojeek@search.waterfox.net>
-Offline QR Code Generator | 1.9 | <offline-qr-code@rugk.github.io>
-Open Graph Preview | 1.0.4 | {6e262423-d612-4f29-be6e-e83aa641645d}
-Qwant | 1.1 | <qwant@search.waterfox.net>
-SkyLink - Bluesky DID Detector | 1.4.2 | <jesse@adhdjesse.com>
-SponsorBlock for YouTube - Skip Sponsorships | 5.11.5 | <sponsorBlocker@ajay.app>
-Startpage | 1.0 | <startpage@search.waterfox.net>
-StreetPass for Mastodon | 2024.1 | <streetpass@streetpass.social>
-Tab Stash | 3.1.1 | <tab-stash@condordes.net>
-Tabs Sidebar | 1.0.3 | <sidebar@waterfox.net>
-uBlock Origin | 1.62.0 | <uBlock0@raymondhill.net>
-Varia Integrator | 1.2 | <giantpinkrobots@protonmail.com>
-VT4Browsers | 4.0.9 | <info@virustotal.com>
-webhint | 2.4.17 | {e748cb59-4901-4bea-b74a-1d8dab98e3c7}
-Yahoo! | 1.0 | <yahoo@search.waterfox.net>
-System theme — auto | 1.3 | <default-theme@mozilla.org>
+
+|Name|Author|Version|Description|
+|----|------|-------|---|
+|[##Text Format##](https://obsidian.md/plugins?id=obsidian-text-format) [⬇️](obsidian://SP-install?id=obsidian-text-format&enable=true)|[Benature](https://github.com/Benature) [☕️](https://www.buymeacoffee.com/benature)/[⚡️](https://afdian.net/a/Benature-K)/[♡](https://s2.loli.net/2024/01/30/jQ9fTSyBxvXRoOM.png)|3.1.0|Format text such as lowercase/uppercase/capitalize...|
+|[##Advanced Tables##](https://obsidian.md/plugins?id=table-editor-obsidian) [⬇️](obsidian://SP-install?id=table-editor-obsidian&enable=true)|[Tony Grosinger](https://grosinger.net) [♡](https://github.com/sponsors/tgrosinger)/[♡](https://buymeacoffee.com/tgrosinger)/[♡](https://paypal.me/tgrosinger)|0.22.1|Improved table navigation, formatting, manipulatio...|
+|[##Zoom##](https://obsidian.md/plugins?id=obsidian-zoom) [⬇️](obsidian://SP-install?id=obsidian-zoom&enable=true)|[Viacheslav Slinko](https://github.com/vslinko)|1.1.2|Zoom into heading and lists.|
+|[##Image Toolkit##](https://obsidian.md/plugins?id=obsidian-image-toolkit) [⬇️](obsidian://SP-install?id=obsidian-image-toolkit&enable=true)|[Xiangru](https://github.com/sissilab)|1.4.2|This plugin provides some image viewing toolkit.|
+|[##Tag Page Preview##](https://obsidian.md/plugins?id=tag-page-preview) [⬇️](obsidian://SP-install?id=tag-page-preview&enable=true)||0.0.12|Clicking a tag opens a dialog listing pages...|
+|[##Tag Wrangler##](https://obsidian.md/plugins?id=tag-wrangler) [⬇️](obsidian://SP-install?id=tag-wrangler&enable=true)|[PJ Eby](https://github.com/pjeby) [♡](https://dirtsimple.org/tips/tag-wrangler)|0.6.4|Rename, merge, toggle, and search tags from...|
+|[##Pandoc Plugin##](https://obsidian.md/plugins?id=obsidian-pandoc) [⬇️](obsidian://SP-install?id=obsidian-pandoc&enable=true)|[Oliver Balfour](https://github.com/OliverBalfour/obsidian-pandoc)|0.4.1|This is a Pandoc export plugin for Obsidian....|
+|[##Clear Unused Images##](https://obsidian.md/plugins?id=oz-clear-unused-images) [⬇️](obsidian://SP-install?id=oz-clear-unused-images&enable=true)|[Ozan](https://www.ozan.pl) [♡](https://ko-fi.com/ozante)|1.1.1|Clear the images that you are not using anymore...|
+|[##Markdown Table Editor##](https://obsidian.md/plugins?id=markdown-table-editor) [⬇️](obsidian://SP-install?id=markdown-table-editor&enable=true)|[Ganessh Kumar R P](https://ganesshkumar.com)|0.3.1|An Obsidian plugin to provide an editor for...|
+|[##Note Refactor##](https://obsidian.md/plugins?id=note-refactor-obsidian) [⬇️](obsidian://SP-install?id=note-refactor-obsidian&enable=true)||1.8.2|Extract note content into new notes and split...|
+|[##Fullscreen mode plugin##](https://obsidian.md/plugins?id=obsidian-fullscreen-plugin) [⬇️](obsidian://SP-install?id=obsidian-fullscreen-plugin&enable=true)|[Razum](https://github.com/Razumihin)|0.1.2|This plugin allows viewing a single document...|
+|[##Recent Files##](https://obsidian.md/plugins?id=recent-files-obsidian) [⬇️](obsidian://SP-install?id=recent-files-obsidian&enable=true)|[Tony Grosinger](https://grosinger.net) [♡](https://github.com/sponsors/tgrosinger)/[♡](https://buymeacoffee.com/tgrosinger)/[♡](https://paypal.me/tgrosinger)|1.7.4|List files by most recently opened|
+|[##Dynamic Highlights##](https://obsidian.md/plugins?id=obsidian-dynamic-highlights) [⬇️](obsidian://SP-install?id=obsidian-dynamic-highlights&enable=true)|[NothingIsLost](https://github.com/nothingislost)|0.3.1|Dynamically highlight text based on cursor...|
+|[##Highlightr##](https://obsidian.md/plugins?id=highlightr-plugin) [⬇️](obsidian://SP-install?id=highlightr-plugin&enable=true)|[chetachi](https://github.com/chetachiezikeuzor)|1.2.2|A minimal and aesthetically pleasing highlighting ...|
+|[##Version History Diff##](https://obsidian.md/plugins?id=obsidian-version-history-diff) [⬇️](obsidian://SP-install?id=obsidian-version-history-diff&enable=true)|[kometenstaub](https://github.com/kometenstaub)|2.2.1|Diff the version history of the core Sync...|
+|[##Core Search Assistant##](https://obsidian.md/plugins?id=obsidian-core-search-assistant-plugin) [⬇️](obsidian://SP-install?id=obsidian-core-search-assistant-plugin&enable=true)|[qawatake](https://github.com/qawatake/obsidian-core-search-assistant-plugin)|0.9.4|Enhance built-in search: keyboard interface,...|
+|[##Sortable##](https://obsidian.md/plugins?id=obsidian-sortable) [⬇️](obsidian://SP-install?id=obsidian-sortable&enable=true)|[Alexandru Dinu](https://github.com/alexandru-dinu)|0.3.1|Wiki-like table sorting.|
+|[##CSV Table##](https://obsidian.md/plugins?id=obsidian-csv-table) [⬇️](obsidian://SP-install?id=obsidian-csv-table&enable=true)|[Adam Coddington](https://coddingtonbear.net/)|1.2.0|Render CSV data as a table within your notes.|
+|[##Kanban##](https://obsidian.md/plugins?id=obsidian-kanban) [⬇️](obsidian://SP-install?id=obsidian-kanban&enable=true)|[mgmeyers](https://github.com/mgmeyers/obsidian-kanban)|2.0.51|Create markdown-backed Kanban boards in Obsidian.|
+|[##Dataview##](https://obsidian.md/plugins?id=dataview) [⬇️](obsidian://SP-install?id=dataview&enable=true)|[Michael Brenan](https://github.com/blacksmithgu)|0.5.68|Complex data views for the data-obsessed.|
+|[##Enhancing Export##](https://obsidian.md/plugins?id=obsidian-enhancing-export) [⬇️](obsidian://SP-install?id=obsidian-enhancing-export&enable=true)|[YISH](https://github.com/mokeyish)|1.10.9|This is a enhancing export plugin for Obsidian....|
+|[##Link Converter##](https://obsidian.md/plugins?id=obsidian-link-converter) [⬇️](obsidian://SP-install?id=obsidian-link-converter&enable=true)|[Ozan Tellioglu](https://ozan.pl)|0.1.6|Scan all your links in the vault and convert...|
+|[##Code block from selection##](https://obsidian.md/plugins?id=code-block-from-selection) [⬇️](obsidian://SP-install?id=code-block-from-selection&enable=true)|[Dmitry Savosh](https://github.com/derwish-pro/)|1.0.7|Adds code block for the selected text|
+|[##Shell commands##](https://obsidian.md/plugins?id=obsidian-shellcommands) [⬇️](obsidian://SP-install?id=obsidian-shellcommands&enable=true)|[Jarkko Linnanvirta](https://github.com/Taitava) [♡](https://publish.obsidian.md/shellcommands/Donate)|0.23.0|You can predefine system commands that you...|
+|[##Natural Language Dates##](https://obsidian.md/plugins?id=nldates-obsidian) [⬇️](obsidian://SP-install?id=nldates-obsidian&enable=true)|[Argentina Ortega Sainz](https://argentinaos.com/)|0.6.2|Create date-links based on natural language|
+|[##Linter##](https://obsidian.md/plugins?id=obsidian-linter) [⬇️](obsidian://SP-install?id=obsidian-linter&enable=true)|[Victor Tao](https://github.com/platers)|1.29.0|Formats and styles your notes. It can be used...|
+|[##Calendar##](https://obsidian.md/plugins?id=calendar) [⬇️](obsidian://SP-install?id=calendar&enable=true)|[Liam Cain](https://github.com/liamcain/)|1.5.10|Calendar view of your daily notes|
+|[##Hide Sidebars on Window Resize##](https://obsidian.md/plugins?id=obsidian-hide-sidebars-when-narrow) [⬇️](obsidian://SP-install?id=obsidian-hide-sidebars-when-narrow&enable=true)|[NomarCub, Michael Hanson](https://github.com/NomarCub) [♡](https://ko-fi.com/nomarcub)|1.1.0|Automatically hides the sidebars when your...|
+|[##Chronology##](https://obsidian.md/plugins?id=chronology) [⬇️](obsidian://SP-install?id=chronology&enable=true)|[Gabriele Cannata](https://github.com/Canna71) [♡](https://www.buymeacoffee.com/gcannata)|1.1.14|Provides a calendar and a timeline of the...|
+|[##Agile Task Notes##](https://obsidian.md/plugins?id=obsidian-agile-task-notes) [⬇️](obsidian://SP-install?id=obsidian-agile-task-notes&enable=true)|[BoxThatBeat](https://github.com/BoxThatBeat)|1.4.0|Import your tasks from your TFS (Azure or...|
+|[##Link Favicons##](https://obsidian.md/plugins?id=link-favicon) [⬇️](obsidian://SP-install?id=link-favicon&enable=true)|[Johannes Theiner](https://github.com/joethei)|1.8.4|See the favicon for a linked website. |
+|[##Emoji Shortcodes##](https://obsidian.md/plugins?id=emoji-shortcodes) [⬇️](obsidian://SP-install?id=emoji-shortcodes&enable=true)|[phibr0](https://github.com/phibr0) [♡](https://ko-fi.com/phibr0)|2.2.0|This Plugin enables the use of Markdown Emoji...|
+|[##Editor Syntax Highlight##](https://obsidian.md/plugins?id=cm-editor-syntax-highlight-obsidian) [⬇️](obsidian://SP-install?id=cm-editor-syntax-highlight-obsidian&enable=true)|[death_au](https://github.com/deathau)|0.1.3|Show syntax highlighing in code blocks the editor|
+|[##Better Command Palette##](https://obsidian.md/plugins?id=obsidian-better-command-palette) [⬇️](obsidian://SP-install?id=obsidian-better-command-palette&enable=true)|[Alex Bieg](www.github.com/AlexBieg)|0.17.1|A command palette that does all of the things...|
+|[##Frontmatter Tag Suggest##](https://obsidian.md/plugins?id=obsidian-frontmatter-tag-suggest) [⬇️](obsidian://SP-install?id=obsidian-frontmatter-tag-suggest&enable=true)|[Jonathan Miller](https://jmill.dev)|0.4.1|Autocompletes tags in the frontmatter tags field|
+|[##Code Block Enhancer##](https://obsidian.md/plugins?id=obsidian-code-block-enhancer) [⬇️](obsidian://SP-install?id=obsidian-code-block-enhancer&enable=true)|[hafuhafu](https://github.com/nyable/obsidian-code-block-enhancer)|1.0.5|Enhance obsidian markdown code block,provides...|
+|[##MetaEdit##](https://obsidian.md/plugins?id=metaedit) [⬇️](obsidian://SP-install?id=metaedit&enable=true)|[Christian B. B. Houmann](https://bagerbach.com)|1.8.2|MetaEdit helps you manage your metadata.|
+|[##Hider##](https://obsidian.md/plugins?id=obsidian-hider) [⬇️](obsidian://SP-install?id=obsidian-hider&enable=true)|[@kepano](https://www.twitter.com/kepano) [♡](https://www.buymeacoffee.com/kepano)|1.5.1|Hide UI elements such as tooltips, status,...|
+|[##Quick Explorer##](https://obsidian.md/plugins?id=quick-explorer) [⬇️](obsidian://SP-install?id=quick-explorer&enable=true)|[PJ Eby](https://github.com/pjeby)|0.2.14|Perform file explorer operations (and see...|
+|[##Text Snippets##](https://obsidian.md/plugins?id=text-snippets-obsidian) [⬇️](obsidian://SP-install?id=text-snippets-obsidian&enable=true)||0.1.2|Allows you to replace text templates for faster...|
+|[##Metatable##](https://obsidian.md/plugins?id=obsidian-metatable) [⬇️](obsidian://SP-install?id=obsidian-metatable&enable=true)|[Arnau Siches](https://www.seachess.net/)|0.14.4|Displays the full frontmatter as a table.|
+|[##Footnote & Citation Indicator##](https://obsidian.md/plugins?id=obsidian-footnote-indicator) [⬇️](obsidian://SP-install?id=obsidian-footnote-indicator&enable=true)|[pseudometa](https://chris-grieser.de/)|0.3.5|Counts footnotes & Pandoc citations, indicates...|
+|[##Task Marker##](https://obsidian.md/plugins?id=obsidian-task-marker) [⬇️](obsidian://SP-install?id=obsidian-task-marker&enable=true)|[wenlzhang](https://github.com/wenlzhang) [♡](https://ko-fi.com/f84556)/[♡](https://github.com/sponsors/wenlzhang)|0.6.2|Change task statuses with hotkeys and context...|
+|[##Diagrams.net##](https://obsidian.md/plugins?id=obsidian-diagrams-net) [⬇️](obsidian://SP-install?id=obsidian-diagrams-net&enable=true)|[Jens M Gleditsch](https://github.com/jensmtg)|1.0.4|Enable diagrams.net (previously draw.io) type...|
+|[##Auto Link Title##](https://obsidian.md/plugins?id=obsidian-auto-link-title) [⬇️](obsidian://SP-install?id=obsidian-auto-link-title&enable=true)|[Matt Furden](https://github.com/zolrath)|1.5.5|This plugin automatically fetches the titles...|
+|[##File Info Panel##](https://obsidian.md/plugins?id=obsidian-file-info-plugin) [⬇️](obsidian://SP-install?id=obsidian-file-info-plugin&enable=true)|[T. L. Ford](https://www.Cattail.Nu) [♡](https://www.Cattail.Nu)|1.3|Plugin for Obsidian that creates a File Informatio...|
+|[##Relation Pane##](https://obsidian.md/plugins?id=obsidian-relation-pane) [⬇️](obsidian://SP-install?id=obsidian-relation-pane&enable=true)|[mottox2](https://mottox2.com)|0.0.5|This plugin displays a panel that summarize...|
+|[##Auto Card Link##](https://obsidian.md/plugins?id=auto-card-link) [⬇️](obsidian://SP-install?id=auto-card-link&enable=true)|[Nekoshita Yuki](https://github.com/nekoshita)|1.2.3|Automatically fetches metadata from a url...|
+|[##Table Generator##](https://obsidian.md/plugins?id=obsidian-table-generator) [⬇️](obsidian://SP-install?id=obsidian-table-generator&enable=true)|[Boninall](https://github.com/Quorafind) [☕️](https://www.buymeacoffee.com/boninall)/[⚡️](https://afdian.net/a/boninall)/[♡](https://cdn.jsdelivr.net/gh/Quorafind/.github@main/IMAGE/%E6%94%AF%E4%BB%98%E5%AE%9D%E4%BB%98%E6%AC%BE%E7%A0%81.jpg)|1.4.1|A plugin for generate markdown table quickly...|
+|[##Minimal Theme Settings##](https://obsidian.md/plugins?id=obsidian-minimal-settings) [⬇️](obsidian://SP-install?id=obsidian-minimal-settings&enable=true)|[@kepano](https://www.twitter.com/kepano) [♡](https://www.buymeacoffee.com/kepano)|8.1.1|Change the colors, fonts and features of Minimal...|
+|[##Style Settings##](https://obsidian.md/plugins?id=obsidian-style-settings) [⬇️](obsidian://SP-install?id=obsidian-style-settings&enable=true)|[mgmeyers](https://github.com/mgmeyers/obsidian-style-settings)|1.0.9|Offers controls for adjusting theme, plugin,...|
+|[##Periodic Notes##](https://obsidian.md/plugins?id=periodic-notes) [⬇️](obsidian://SP-install?id=periodic-notes&enable=true)|[Liam Cain](https://github.com/liamcain/)|0.0.17|Create/manage your daily, weekly, and monthly...|
+|[##Home tab##](https://obsidian.md/plugins?id=home-tab) [⬇️](obsidian://SP-install?id=home-tab&enable=true)|[Renso](https://github.com/olrenso)|1.2.2|A browser-like search tab for your local files.|
+|[##Settings Search##](https://obsidian.md/plugins?id=settings-search) [⬇️](obsidian://SP-install?id=settings-search&enable=true)|[Jeremy Valentine](https://github.com/valentine195)|1.3.10|Globally search settings in Obsidian.md|
+|[##Completr##](https://obsidian.md/plugins?id=obsidian-completr) [⬇️](obsidian://SP-install?id=obsidian-completr&enable=true)|[tth05](https://github.com/tth05)|3.2.0|This plugin provides advanced auto-completion...|
+|[##Strange New Worlds##](https://obsidian.md/plugins?id=obsidian42-strange-new-worlds) [⬇️](obsidian://SP-install?id=obsidian42-strange-new-worlds&enable=true)|[TfTHacker](https://twitter.com/TfTHacker) [♡](https://tfthacker.com/sponsor)|2.3.2|Help see how your vault is interconnected...|
+|[##Advanced Mobile Toolbar##](https://obsidian.md/plugins?id=advanced-toolbar) [⬇️](obsidian://SP-install?id=advanced-toolbar&enable=true)|[phibr0](https://github.com/phibr0)|1.8.0|Enhances the Toolbar for Obsidian Mobile.|
+|[##Recipe view##](https://obsidian.md/plugins?id=recipe-view) [⬇️](obsidian://SP-install?id=recipe-view&enable=true)|[lachholden](https://github.com/lachholden) [♡](https://ko-fi.com/lachholden)|0.3.6|View your notes as interactive recipe cards...|
+|[##Jira Issue##](https://obsidian.md/plugins?id=obsidian-jira-issue) [⬇️](obsidian://SP-install?id=obsidian-jira-issue&enable=true)|[marc0l92](https://github.com/marc0l92) [♡](https://ko-fi.com/marc0l92)|1.57.0|This plugin allows you to track the progress...|
+|[##GitHub Link##](https://obsidian.md/plugins?id=github-link) [⬇️](obsidian://SP-install?id=github-link&enable=true)|[Nathonius](https://nathan-smith.org/)|1.2.0|Enrich your notes with issue and pull request...|
+|[##Favorite Note##](https://obsidian.md/plugins?id=favorite-note) [⬇️](obsidian://SP-install?id=favorite-note&enable=true)|[mahmudz](https://github.com/mahmudz) [♡](https://www.buymeacoffee.com/mahmudz)|2.0.3|Mark your note as favorite.|
+|[##Focus Mode##](https://obsidian.md/plugins?id=obsidian-focus-mode) [⬇️](obsidian://SP-install?id=obsidian-foc```

Reply:
Mastodon Bluesky Email

Comments


Kudos: