basefoundry /
base
A local, GitHub-centric operating contract that makes a collection of independent repositories behave like one understandable, verifiably ready workspace for humans and coding agents.
65/100 healthLoading repository data…
AlucPro / repository
A collection of practical shell scripts for automation, backups, and developer productivity.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Practical shell scripts for backups, automation, and daily developer workflows.
shell-recipes/
├── .githooks/ # Versioned git hooks for this repository
├── config/ # Example configs only; real configs stay local
├── docs/ # Usage notes and future script docs
├── scripts/
│ ├── dev/ # Repository maintenance helpers
│ ├── git/ # Git and backup related scripts
│ └── lib/ # Shared shell helpers
├── templates/ # Scheduling templates for cron / launchd
└── runtime/ # Local logs and runtime files (gitignored)
This repository is designed so that scripts can be committed, while personal data stays local.
*.example.env template files.config/*.local.env or another ignored file.runtime/ and log files are ignored by git.pre-commit hook scans staged changes for common secrets before commit.Install the repository hook once:
./scripts/dev/setup-hooks.sh
The first script is scripts/git/auto-backup.sh.
It is intended for document-style repositories that you want to back up automatically:
cp config/auto-backup.example.env config/auto-backup.local.env
Then edit the local file with your own values.
If you want to back up several repositories, also copy:
cp config/auto-backup-repos.example.txt config/auto-backup-repos.local.txt
Then set REPO_LIST_FILE in config/auto-backup.local.env.
./scripts/git/auto-backup.sh
Or override the repo path directly:
REPO_PATH=/path/to/your/repo ./scripts/git/auto-backup.sh
Or run against a list file:
REPO_LIST_FILE=/path/to/repos.txt ./scripts/git/auto-backup.sh
Templates are included for both cron and macOS launchd:
templates/cron/auto-backup.crontemplates/launchd/com.alucpro.shell-recipes.auto-backup.plistYou can also install the schedule automatically:
./scripts/dev/install-auto-backup-schedule.sh
Detailed notes are in docs/scheduling.md.
Logs are written to:
${XDG_STATE_HOME:-$HOME/.local/state}/shell-recipes/auto-backup/
scripts/git/auto-backup.sh: timed backup script for local GitHub repositoriesconfig/auto-backup-repos.example.txt: example list for multi-repository backupscripts/dev/install-auto-backup-schedule.sh: installs or updates cron / launchd schedulescripts/dev/setup-hooks.sh: installs versioned git hooks for this repo.githooks/pre-commit: blocks common secret leaks before commitfilesystem/, network/, macos/README.mddocs/Selected from shared topics, language and repository description—not editorial ratings.
basefoundry /
A local, GitHub-centric operating contract that makes a collection of independent repositories behave like one understandable, verifiably ready workspace for humans and coding agents.
65/100 healthNikoo-Asadnejad /
This repository contains a collection of useful Bash scripts for Linux systems. Each script serves a specific purpose, ranging from system maintenance to monitoring and automation tasks. Below is a description of each script along with instructions on how to use them.
70/100 healthAlicade123 /
A collection of Linux exercises and Bash scripting practice, covering file management, permissions, automation, and system operations.
70/100 healththeycallmemac /
A collection of the talks I have given.
45/100 healthTemaSM /
ZFSh - ZFS shell helpers - a collection of bash scripts for simplified ZFS pool, snapshot, and backup management with Incus integration
66/100 healthQiamast /
a collection of useful bash scripts for various tasks such as automation and etc.
34/100 health