SkillAgentSearch skills...

Urlencode

A command line tool for manipulating URL-encoded query strings

Install / Use

/learn @bww/Urlencode
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

URL Encode/Decode

A command line tool for manipulating URL-encoded query strings.

URL-encode standard input

$ echo -n '@#$%^&*' | urlenc enc
%40%23%24%25%5E%26%2A

URL-decode standard input

$ echo -n '%40%23%24%25%5E%26%2A' | urlenc dec
@#$%^&*

Display a query string as a list

$ echo -n 'foo=bar&fizz=buzz' | urlenc list
fizz: buzz
 foo: bar

Encode a list as a query string

$ urlenc query <<EOF
> fizz: buzz
>  foo: bar
> EOF
fizz=buzz&foo=bar

Installing

Install via Homebrew on macOS:

$ brew upgrade bww/stable/urlenc

Install via go install like so:

$ go install github.com/bww/urlencode/cmd/urlenc@latest

Building

To build the tools:

$ make

To install the tools in $GOPATH/bin:

$ make install
View on GitHub
GitHub Stars20
CategoryDevelopment
Updated9mo ago
Forks4

Languages

Go

Security Score

87/100

Audited on Jun 12, 2025

No findings