📚 Add documentation and metadata for new tools: just, rg, and xh

This commit is contained in:
2026-04-12 00:58:19 +08:00
parent ba446ba373
commit b468ffc3a6
5 changed files with 75 additions and 0 deletions

25
just/CHEATSHEET.md Normal file
View File

@@ -0,0 +1,25 @@
# just
## Meta
```yaml
name: just
repo: https://github.com/casey/just
description: 🤖 Just a command runner
```
## Usage
Sample `justfile`:
```justfile
_:
@just --list
alias p:=publish
alias pub:=publish
# Publish
publish:
update-cheatsheet.ts
commit.ts
```