jakub.sh

A collection of utility tools for modern development workflows.

curl -fsSL https://jakub.sh/install | bash

Or if you want just some of the tools:

curl -fsSL https://jakub.sh/install | bash -s tool1,tool2

Installs all tools into ~/.local/bin.

jai

Allows to track progress of tasks/agents from multiple Cursor IDE windows and CLI sessions. jai supports both Cursor hooks and generic Zsh hooks, and manages a single Markdown document with current progress.

jai cursorhooks
jai zshhooks
jai install-cursorhooks [directory]

Note Cursor Hooks will replace your existing ones. And if you don’t provide the directory parameter, it will use the global one.

To see the status simply open the ~/.local/jai-status.md file in any tool that supports live-reloading from disk (like Typora, Obsidian, Cursor). Or just do jai watch to have it the terminal.

jai demo

⇨ jai / README.md

sekey

Secure environment variable manager with automatic output sanitization.

Store a secret in macOS Keychain or Linux Secret Service. The script provides a masked prompt.

sekey set MY_SECRET

Sandbox the secret. The command is executed with env injected from secrets, and the output of the command is sanitized.

sekey --env MY_SECRET command.sh

⇨ sekey / README.md