Agent backup
Free, MIT-licensed starter skills for a private, self-hosted AI assistant — back itself up, capture ideas, search your notes, self-reflect. Built to adapt, not just copy. The free funnel for the quietdaemon guide + kit.
npx -y skills add quietdaemon/starter-skills --skill agent-backupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Mirror your AI assistant's live config (skills, persona, settings, custom plugins) to a private git remote. Run on a schedule via cron — secrets and runtime state are excluded by an allowlist .gitignore. Use when asked for a manual backup, or when a backup cron fires.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.6 KB, as published. Nobody here has run it
Agent Config Backup
Snapshot your assistant's live config to a private git remote so a fresh box can
be rebuilt in minutes if this one dies. The whole trick is an allowlist
.gitignore: you commit only the things you've explicitly named, so a stray
secret can never sneak into the backup.
When to use
- A scheduled backup cron fires (e.g. nightly).
- The user says "back up now" / "force a backup" / "push the config".
- After installing a new skill, persona, or plugin and the change should be preserved before the next scheduled window.
What's included vs. excluded
Tune these to your setup. The pattern that matters: default-deny, then allow.
Included (committed + pushed):
skills/— your custom skills (SKILL.md + helper scripts)- the persona/system file (e.g.
<SOUL_OR_SYSTEM_PROMPT_FILE>) - the main config file (model, providers, toolset toggles)
scripts/— helper scripts- any custom plugin source you maintain
Excluded (must never leave the box):
- the secrets file (
.envor equivalent) — all credentials - chat history / memory databases
- re-cloneable caches and git mirrors
- generated artifacts (images, downloads) and runtime logs
Allowlist .gitignore (the safe pattern)
# Default deny everything…
/*
# …then re-allow only what you intend to back up:
!skills/
!scripts/
!config.yaml
!<SOUL_OR_SYSTEM_PROMPT_FILE>
# Belt-and-suspenders: never commit secrets even if re-included above
**/.env
**/*secret*
How to invoke
Run the helper script via your shell/terminal tool (not a sandboxed code tool that lacks git/network access):
bash <AGENT_HOME>/scripts/backup.sh
It prints one JSON line summarizing the run:
{"ok": true, "changed": true, "commit": "a1b2c3d", "files_changed": 4, "pushed": true}
Clean run with nothing to do:
{"ok": true, "changed": false, "commit": null, "files_changed": 0, "pushed": false}
Failure:
{"ok": false, "error": "...", "stage": "commit|push"}
See backup.sh for a ready-to-adapt implementation.
Cron
Schedule it however your platform does cron (a system crontab line, or your
agent's built-in scheduler). A --no-agent-style script run costs no LLM
tokens — the script does the work, its stdout is the result.
Pitfalls
- Use an allowlist
.gitignore, not a denylist. A denylist fails open — the day you add a new secret file you forgot to exclude, it ships. An allowlist fails closed. - Never name a file
.gitignoreinside a skill subfolder if you keep a template of these rules in another repo — git will treat it as nested, scope-limited rules. Store the template under a different name (e.g.gitignore.template) and only the real root copy stays active. - Never
--amendor force-push. Always a fresh commit, so history stays linear and auditable. - On a partial failure (e.g. one optional file can't be staged), still push the rest — a mostly-current backup beats none.
- Surface auth errors immediately — a push auth failure usually means the deploy key rotated or was revoked.
- Never echo the secrets file or any credential, even in error output.