plandb

(★ 101)

The issue tracker your AI agents are missing. Think Linear or Jira, but for your Claude Code..

File Explorer

  • .gitignore
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • CLAUDE.md
  • CONTRIBUTING.md
  • install.sh
  • LICENSE
  • README.md
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cargo install

View Details ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

compare

View Details ▼

This command is an alias of `magick compare`.

tldr magick compare

View documentation for the original command:

🔍

split

View Details ▼

Split a file into pieces.

split {{[-l|--lines]}} 10 {{path/to/file}}

Split a file, each split having 10 lines (except the last split):

split -l 10 {{path/to/file}}

Split a file, each split having 10 lines (except the last split):

split {{[-n|--number]}} 5 {{path/to/file}}

Split a file into 5 files. File is split such that each split has same size (except the last split):

// repository documentation