{"id":50561822,"url":"https://github.com/simtabi/osaat","last_synced_at":"2026-06-04T12:01:09.988Z","repository":{"id":358433375,"uuid":"1240544330","full_name":"simtabi/osaat","owner":"simtabi","description":"Audit and back up installed applications on macOS, Linux, and Unix.","archived":false,"fork":false,"pushed_at":"2026-05-17T10:28:57.000Z","size":222,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-17T12:35:36.547Z","etag":null,"topics":["audit","backup","cli","golang","linux","macos","migration","oss"],"latest_commit_sha":null,"homepage":"https://opensource.simtabi.com/products/osaat","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simtabi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-16T09:04:28.000Z","updated_at":"2026-05-17T10:28:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/simtabi/osaat","commit_stats":null,"previous_names":["simtabi/osaat"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/simtabi/osaat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simtabi%2Fosaat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simtabi%2Fosaat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simtabi%2Fosaat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simtabi%2Fosaat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simtabi","download_url":"https://codeload.github.com/simtabi/osaat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simtabi%2Fosaat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33903134,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audit","backup","cli","golang","linux","macos","migration","oss"],"created_at":"2026-06-04T12:01:08.712Z","updated_at":"2026-06-04T12:01:09.977Z","avatar_url":"https://github.com/simtabi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# osaat\n\nAudit and back up installed applications on macOS, Linux, and Unix.\nProduces a structured inventory plus a restoration manifest you can run on\na new machine.\n\nThe binary is `osaat`.\n\n## Install\n\nHomebrew (macOS, Linux):\n\n```sh\nbrew install simtabi/tap/osaat\n```\n\nGo (any supported platform):\n\n```sh\ngo install github.com/simtabi/osaat/cmd/osaat@latest\n```\n\nDirect binary: see the [latest release](https://github.com/simtabi/osaat/releases/latest).\nPre-built binaries cover macOS (Intel + Apple Silicon), Linux (amd64,\narm64, 386, armv7), Windows (amd64, arm64, 386), and FreeBSD (amd64,\narm64, 386).\n\n**Zero-dep Bash fallback (macOS only):** for the cold-start case\nwhere Go and Homebrew aren't installed yet, use\n[`scripts/bash-fallback.sh`](scripts/bash-fallback.sh). It produces a\nJSON report compatible with the Go binary's schema. See\n[docs/tools/bash-fallback.md](docs/tools/bash-fallback.md).\n\n## Quick start\n\n```sh\n# Interactive wizard — auto-opens when stdin is a TTY and no flags are passed\nosaat scan\n\n# Headless\nosaat scan --os macos --format pdf,markdown,txt,json --out ~/backup/\n```\n\nThe wizard collects every setting, runs the scan, and prints the\nequivalent non-interactive command at the end. Wizard answers can be\nsaved as named profiles (`osaat scan --profile \u003cname\u003e`).\n\n## What gets captured\n\nFor every detected app: name, author, vendor URL, installation source\n(App Store / Homebrew / pkg / DMG / direct download / system / sandbox /\nunknown), original download URL, version, install date, last-used date,\nsize on disk, signing status, Apple Silicon compatibility (macOS), and a\nreinstall command.\n\nLicense keys, when detectable, go to a separate `secrets.json` —\nunredacted and grouped by category — never to the audit report. Optional\n`age` encryption is supported via `--age-recipient`.\n\n## File locations\n\n| What | Where |\n|---|---|\n| Generated audit outputs | `\u003cDocuments\u003e/osaat/\u003cYYYY-MM-DD\u003e/` by default (overridable via `--out` or the wizard) |\n| Daily log file (mode 600) | `~/.config/osaat/logs/osaat-\u003cYYYY-MM-DD\u003e.log` |\n| Named profiles (mode 600) | `~/.config/osaat/profiles/\u003cname\u003e.toml` |\n| Secrets file (mode 600) | `\u003coutput\u003e/secrets.json` or `\u003coutput\u003e/secrets.json.age` |\n| Output integrity checksums | `\u003coutput\u003e/SHA256SUMS` |\n\nThe `Documents` folder is auto-detected per OS:\n\n- macOS / Windows: `$HOME/Documents/osaat` (or `%USERPROFILE%\\Documents\\osaat`).\n- Linux / BSD: `$XDG_DOCUMENTS_DIR/osaat`, falling back to `$HOME/Documents/osaat`.\n\n## Privacy\n\n`osaat` never sends data over the network. Logs are written to disk\nwith $HOME paths replaced by `~` and hostname-shaped attributes\nredacted, so a stolen log file doesn't identify the machine.\n\n## Output formats\n\n| Format | File | Use |\n|---|---|---|\n| PDF | `report.pdf` | Print-ready, paginated. Default. |\n| Markdown | `report.md` | Renders cleanly on GitHub or in editors. Default. |\n| Plain text | `report.txt` | grep-friendly, no rendering deps. Default. |\n| JSON | `report.json` | Machine-readable. Required for `osaat diff`. Default. |\n| CSV | `report.csv` | Spreadsheet imports. |\n| HTML | `report.html` | Self-contained file with sortable table + filter input. |\n\n## Documentation\n\n- [Installation](docs/installation.md)\n- [Configuration](docs/configuration.md) — profiles, environment, paths\n- [Architecture](docs/architecture.md)\n- [Release process](docs/release.md)\n- [Migration / shipping checklist](docs/shipping-checklist.md)\n- Per-command docs:\n  [scan](docs/tools/scan.md) ·\n  [diff](docs/tools/diff.md) ·\n  [restore-help](docs/tools/restore-help.md) ·\n  [install-schedule](docs/tools/install-schedule.md) ·\n  [backup](docs/tools/backup.md)\n\n## License\n\nMIT — see [LICENSE](LICENSE). Copyright © 2026 Simtabi LLC.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimtabi%2Fosaat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimtabi%2Fosaat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimtabi%2Fosaat/lists"}