backup
SolidBackup the entire workspace to GitHub. EXPLICIT INVOCATION ONLY - never auto-trigger from natural language.
AI & Automation 10 stars
1 forks Updated today Apache-2.0
Install
Quality Score: 82/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
Backup the entire workspace to GitHub.
## CEO two-part topology (engine + data): use `push-all.py`
The CEO workspace is split into two repos — the ENGINE clone (`.heading-os`,
code only) and the DATA overlay (`.heading-os-data`, all data + every
artifact), each with its own private `origin/main`. The single command that
commits and pushes BOTH, with a pre-push secret scan and an ahead/behind
`[0 0]` verification (a bare push can silently leave a ref behind), is:
```
python scripts/push-all.py # commit working-tree changes + push both
python scripts/push-all.py -m "msg" # custom commit message
python scripts/push-all.py --no-commit # push existing commits only
python scripts/push-all.py --dry-run # show what would happen, change nothing
```
It reads `GH_TOKEN` from the engine `.env`, refuses to push any tracked
secret-like file (`.env`, `.session`, `cookies.json`, `.sessions/`), and never
pushes `.memory-index/` (gitignored, rebuildable). Prefer this over the manual
git steps below whenever the data overlay exists (`get_data_root()` differs
from the engine root). The manual steps remain the path for exec workspaces and
the pre-cutover single-repo case.
## Exec workspaces: also `push-all.py`
An executive workspace is the same two-repo topology from the exec's side: a
READ-ONLY engine clone (`.heading-os`, consumed via `git pull`; its origin is the
CEO's engine repo, so the exec cannot push it) and a WRITABLE data overlay
(`heading-os-data-{slug}`). `push-...
Details
- Author
- mishahanin
- Repository
- mishahanin/heading-os
- Created
- 4 weeks ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
backup
Back up the family's learning workspace to a durable destination (local git checkpoint, a private GitHub repo, or an object store like Cloudflare R2 / S3), tracking config vs status in files.
8 Updated today
manishiitg AI & Automation Listed
ci-workflow
Push accountability, CI monitoring after push, background agent CI verification, verification command sequencing.
5 Updated 3 days ago
juan294 AI & Automation Listed
working-under-the-loop
Use when working in a repository managed by the autonomy engine — creating branches, opening or updating pull requests, resolving merges, or sharing the repo with other concurrent agent sessions.
0 Updated 2 days ago
Luke-Bradford