mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-18 07:01:33 +00:00
bak
This commit is contained in:
parent
2bf50c8969
commit
f74819de9d
42 changed files with 2331 additions and 3 deletions
|
|
@ -44,6 +44,12 @@ just build
|
||||||
just check
|
just check
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Capture a fresh machine inventory before any destructive changes:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/snapshot-machine.sh
|
||||||
|
```
|
||||||
|
|
||||||
## What Still Needs Manual Work
|
## What Still Needs Manual Work
|
||||||
|
|
||||||
- Secrets and tokens under `~/.secrets`, `~/.npmrc`, `~/.config/gcloud`, `~/.config/gh`, and similar paths
|
- Secrets and tokens under `~/.secrets`, `~/.npmrc`, `~/.config/gcloud`, `~/.config/gh`, and similar paths
|
||||||
|
|
@ -52,7 +58,8 @@ just check
|
||||||
- Apps installed outside Homebrew casks or the App Store
|
- Apps installed outside Homebrew casks or the App Store
|
||||||
- Translating raw files from `~/dots` into pure Home Manager modules over time
|
- Translating raw files from `~/dots` into pure Home Manager modules over time
|
||||||
|
|
||||||
|
The snapshot script writes raw inventories under `inventory/current/` so you can diff the machine state over time instead of relying on memory.
|
||||||
|
|
||||||
## Important Note About Dotfiles
|
## Important Note About Dotfiles
|
||||||
|
|
||||||
Your live machine currently points at `~/dots`, not `~/Documents/GitHub/dots`. This config follows the live machine and expects `~/dots` to exist.
|
Your live machine currently points at `~/dots`, not `~/Documents/GitHub/dots`. This config follows the live machine and expects `~/dots` to exist.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,8 @@ There is also a duplicate clone at `~/Documents/GitHub/dots`. Content matched du
|
||||||
|
|
||||||
This repo currently mirrors the top-level Homebrew inventory rather than every transitive dependency.
|
This repo currently mirrors the top-level Homebrew inventory rather than every transitive dependency.
|
||||||
|
|
||||||
|
For a raw rerunnable dump, use `./scripts/snapshot-machine.sh`. The generated files go under `inventory/current/`.
|
||||||
|
|
||||||
### Taps
|
### Taps
|
||||||
|
|
||||||
- `daytonaio/tap`
|
- `daytonaio/tap`
|
||||||
|
|
@ -73,8 +75,8 @@ The current leaves were captured into [`modules/homebrew.nix`](../modules/homebr
|
||||||
|
|
||||||
- `python@3.13` was installed but `link: false` in the generated Brewfile
|
- `python@3.13` was installed but `link: false` in the generated Brewfile
|
||||||
- `withgraphite/tap/graphite` was also `link: false`
|
- `withgraphite/tap/graphite` was also `link: false`
|
||||||
- Go tools and one cargo tool were present in the Brewfile but are not yet expressed in the Nix module
|
- Go tools and one cargo tool were present in the generated Brewfile and are not yet expressed in the Nix module
|
||||||
- VS Code extension `anthropic.claude-code` was also present in the Brewfile and is not yet managed here
|
- VS Code extension `anthropic.claude-code` was also present in the generated Brewfile and is not yet managed here
|
||||||
|
|
||||||
### Casks
|
### Casks
|
||||||
|
|
||||||
|
|
@ -140,6 +142,14 @@ Some of these may belong in:
|
||||||
- manual vendor installers
|
- manual vendor installers
|
||||||
- future Homebrew casks that were not part of the current audit
|
- future Homebrew casks that were not part of the current audit
|
||||||
|
|
||||||
|
App Store apps confirmed by receipt search:
|
||||||
|
|
||||||
|
- `Amphetamine.app`
|
||||||
|
- `Klack.app`
|
||||||
|
- `Numbers.app`
|
||||||
|
- `PastePal.app`
|
||||||
|
- `Xcode.app`
|
||||||
|
|
||||||
## Launch Agents Found
|
## Launch Agents Found
|
||||||
|
|
||||||
These are current launch agents worth deciding on explicitly:
|
These are current launch agents worth deciding on explicitly:
|
||||||
|
|
@ -155,6 +165,12 @@ These are current launch agents worth deciding on explicitly:
|
||||||
|
|
||||||
These are not yet represented in Nix.
|
These are not yet represented in Nix.
|
||||||
|
|
||||||
|
Current login items:
|
||||||
|
|
||||||
|
- `Rectangle`
|
||||||
|
- `Raycast`
|
||||||
|
- `PastePal`
|
||||||
|
|
||||||
## Config Directories Found
|
## Config Directories Found
|
||||||
|
|
||||||
Notable user config roots under `~/.config`:
|
Notable user config roots under `~/.config`:
|
||||||
|
|
@ -200,6 +216,37 @@ Notable app state under `~/Library/Application Support`:
|
||||||
|
|
||||||
These paths are exactly why the first config keeps Homebrew and dotfile migration conservative.
|
These paths are exactly why the first config keeps Homebrew and dotfile migration conservative.
|
||||||
|
|
||||||
|
## Additional Package Managers And Tool State
|
||||||
|
|
||||||
|
Global npm packages found:
|
||||||
|
|
||||||
|
- `@anthropic-ai/claude-code`
|
||||||
|
- `@augmentcode/auggie`
|
||||||
|
- `@companion-ai/cli`
|
||||||
|
- `@googleworkspace/cli`
|
||||||
|
- `@humanlayer/linear-cli`
|
||||||
|
- `@kubasync/cli`
|
||||||
|
- `agent-browser`
|
||||||
|
- `aws-cdk`
|
||||||
|
- `bun`
|
||||||
|
- `clawdbot`
|
||||||
|
- `markserv`
|
||||||
|
- `pnpm`
|
||||||
|
- `prisma`
|
||||||
|
- `vercel`
|
||||||
|
- `wscat`
|
||||||
|
- `yarn`
|
||||||
|
|
||||||
|
Other tool inventories found:
|
||||||
|
|
||||||
|
- `pipx`: `supabase-mcp-server`
|
||||||
|
- `uv tool`: `mistral-vibe`, `nano-pdf`
|
||||||
|
- `cargo install`: `lumen`
|
||||||
|
- Go bin tools: `agentikube`, `goimports`, `golangci-lint`, `gonew`
|
||||||
|
- Python user packages under `python3 -m pip list --user`
|
||||||
|
|
||||||
|
These are not represented in the first-pass Nix config yet.
|
||||||
|
|
||||||
## Codebase Summary
|
## Codebase Summary
|
||||||
|
|
||||||
Code roots found:
|
Code roots found:
|
||||||
|
|
@ -207,6 +254,7 @@ Code roots found:
|
||||||
- `~/Documents/GitHub` with `108` repos
|
- `~/Documents/GitHub` with `108` repos
|
||||||
- `~/code/symphony-workspaces`
|
- `~/code/symphony-workspaces`
|
||||||
- `~/dev/diffs.nvim`
|
- `~/dev/diffs.nvim`
|
||||||
|
- extra git repos outside those roots: `~/dots`, `~/meta-agent`, `~/Documents/College`, `~/Documents/better`, `~/.config/nvim.bak`, `~/.veetcode`, `~/.kubasync/clank-artifacts`, `~/.oh-my-zsh`
|
||||||
|
|
||||||
Repo manifest counts under `~/Documents/GitHub`:
|
Repo manifest counts under `~/Documents/GitHub`:
|
||||||
|
|
||||||
|
|
@ -242,8 +290,13 @@ Should stay manual or secret-managed for now:
|
||||||
- `~/.secrets`
|
- `~/.secrets`
|
||||||
- `~/.npmrc`
|
- `~/.npmrc`
|
||||||
- `~/.yarnrc`
|
- `~/.yarnrc`
|
||||||
|
- `~/.claude.json`
|
||||||
|
- `~/.opencode.json`
|
||||||
- cloud credentials and tokens under `~/.config`
|
- cloud credentials and tokens under `~/.config`
|
||||||
- app-internal state in `~/Library/Application Support`
|
- app-internal state in `~/Library/Application Support`
|
||||||
|
- App Store apps and login items
|
||||||
|
- fonts installed directly under `~/Library/Fonts`
|
||||||
|
- global npm, pipx, uv, cargo, and Go-installed tools
|
||||||
- custom launch agents until they are rewritten declaratively
|
- custom launch agents until they are rewritten declaratively
|
||||||
|
|
||||||
Recommended next steps:
|
Recommended next steps:
|
||||||
|
|
|
||||||
7
inventory/current/README.md
Normal file
7
inventory/current/README.md
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Machine Snapshot
|
||||||
|
|
||||||
|
Generated by `scripts/snapshot-machine.sh`.
|
||||||
|
|
||||||
|
These files are intentionally raw inventories of the current machine state.
|
||||||
|
They are meant to answer "what was on the box?" before a migration, not to be
|
||||||
|
hand-edited.
|
||||||
5
inventory/current/applications-app-store.txt
Normal file
5
inventory/current/applications-app-store.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
/Applications/Amphetamine.app
|
||||||
|
/Applications/Klack.app
|
||||||
|
/Applications/My apps/Xcode.app
|
||||||
|
/Applications/Numbers.app
|
||||||
|
/Applications/PastePal.app
|
||||||
45
inventory/current/applications-system.txt
Normal file
45
inventory/current/applications-system.txt
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
AeroSpace.app
|
||||||
|
Amphetamine.app
|
||||||
|
Autodesk
|
||||||
|
Cap.app
|
||||||
|
ChatGPT.app
|
||||||
|
Claude.app
|
||||||
|
Cluely.app
|
||||||
|
CodeLayer.app
|
||||||
|
Codex.app
|
||||||
|
CodexBar.app
|
||||||
|
Companion.app
|
||||||
|
Conductor.app
|
||||||
|
DJUCED
|
||||||
|
Dia.app
|
||||||
|
Docker.app
|
||||||
|
Ghostty.app
|
||||||
|
Granola.app
|
||||||
|
Helium.app
|
||||||
|
Karabiner-Elements.app
|
||||||
|
Karabiner-EventViewer.app
|
||||||
|
Klack.app
|
||||||
|
My apps
|
||||||
|
Numbers.app
|
||||||
|
OpenCode.app
|
||||||
|
Osaurus.app
|
||||||
|
PastePal.app
|
||||||
|
Pioneer
|
||||||
|
Raycast.app
|
||||||
|
Readout.app
|
||||||
|
Rectangle.app
|
||||||
|
Riptide-Dev.app
|
||||||
|
Safari.app
|
||||||
|
Screen Studio.app
|
||||||
|
Signal.app
|
||||||
|
Tailscale.app
|
||||||
|
Telegram.app
|
||||||
|
Typora.app
|
||||||
|
Utilities
|
||||||
|
VirtualBox.app
|
||||||
|
Warp.app
|
||||||
|
Wispr Flow.app
|
||||||
|
Zen.app
|
||||||
|
kitty.app
|
||||||
|
logioptionsplus.app
|
||||||
|
rekordbox 7
|
||||||
3
inventory/current/applications-user.txt
Normal file
3
inventory/current/applications-user.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
Chrome Apps.localized
|
||||||
|
Comet Apps.localized
|
||||||
|
Genspark Browser Apps.localized
|
||||||
121
inventory/current/brew-bundle.txt
Normal file
121
inventory/current/brew-bundle.txt
Normal file
|
|
@ -0,0 +1,121 @@
|
||||||
|
tap "daytonaio/tap"
|
||||||
|
tap "getcompanion-ai/tap"
|
||||||
|
tap "hashicorp/tap"
|
||||||
|
tap "homebrew/services"
|
||||||
|
tap "humanlayer/humanlayer"
|
||||||
|
tap "jnsahaj/lumen"
|
||||||
|
tap "nicosuave/tap"
|
||||||
|
tap "nikitabobko/tap"
|
||||||
|
tap "opencode-ai/tap"
|
||||||
|
tap "pantsbuild/tap"
|
||||||
|
tap "pipedreamhq/pd-cli"
|
||||||
|
tap "steipete/tap"
|
||||||
|
tap "stripe/stripe-cli"
|
||||||
|
tap "supabase/tap"
|
||||||
|
tap "tallesborges/zdx"
|
||||||
|
tap "withgraphite/tap"
|
||||||
|
brew "python@3.13", link: false
|
||||||
|
brew "apache-arrow"
|
||||||
|
brew "binwalk"
|
||||||
|
brew "cloc"
|
||||||
|
brew "cloudflared"
|
||||||
|
brew "cmake"
|
||||||
|
brew "coreutils"
|
||||||
|
brew "criterion"
|
||||||
|
brew "diff-so-fancy"
|
||||||
|
brew "e2fsprogs"
|
||||||
|
brew "fd"
|
||||||
|
brew "ffmpeg"
|
||||||
|
brew "flyctl"
|
||||||
|
brew "fzf"
|
||||||
|
brew "gh"
|
||||||
|
brew "git-delta"
|
||||||
|
brew "git-filter-repo"
|
||||||
|
brew "git-lfs"
|
||||||
|
brew "gitleaks"
|
||||||
|
brew "gnu-time"
|
||||||
|
brew "go"
|
||||||
|
brew "helm"
|
||||||
|
brew "imagemagick"
|
||||||
|
brew "jq"
|
||||||
|
brew "k9s"
|
||||||
|
brew "kind"
|
||||||
|
brew "lazygit"
|
||||||
|
brew "libpq"
|
||||||
|
brew "librsvg"
|
||||||
|
brew "livekit"
|
||||||
|
brew "livekit-cli"
|
||||||
|
brew "llmfit"
|
||||||
|
brew "mactop"
|
||||||
|
brew "minikube"
|
||||||
|
brew "mint"
|
||||||
|
brew "mise"
|
||||||
|
brew "neovim"
|
||||||
|
brew "node"
|
||||||
|
brew "openjdk"
|
||||||
|
brew "pandoc"
|
||||||
|
brew "pipx"
|
||||||
|
brew "poppler"
|
||||||
|
brew "portaudio"
|
||||||
|
brew "postgresql@14"
|
||||||
|
brew "postgresql@16"
|
||||||
|
brew "postgresql@17"
|
||||||
|
brew "potrace"
|
||||||
|
brew "redis"
|
||||||
|
brew "resvg"
|
||||||
|
brew "ripgrep"
|
||||||
|
brew "semgrep"
|
||||||
|
brew "sevenzip"
|
||||||
|
brew "sox"
|
||||||
|
brew "stow"
|
||||||
|
brew "swiftformat"
|
||||||
|
brew "swiftlint"
|
||||||
|
brew "tailscale"
|
||||||
|
brew "tmux"
|
||||||
|
brew "tree"
|
||||||
|
brew "trivy"
|
||||||
|
brew "universal-ctags"
|
||||||
|
brew "websocat"
|
||||||
|
brew "wget"
|
||||||
|
brew "worktrunk"
|
||||||
|
brew "yazi"
|
||||||
|
brew "yq"
|
||||||
|
brew "yt-dlp"
|
||||||
|
brew "zoxide"
|
||||||
|
brew "zsh-autosuggestions"
|
||||||
|
brew "zsh-syntax-highlighting"
|
||||||
|
brew "daytonaio/tap/daytona"
|
||||||
|
brew "hashicorp/tap/terraform"
|
||||||
|
brew "jnsahaj/lumen/lumen"
|
||||||
|
brew "nicosuave/tap/memex"
|
||||||
|
brew "steipete/tap/bird"
|
||||||
|
brew "steipete/tap/gogcli"
|
||||||
|
brew "steipete/tap/summarize"
|
||||||
|
brew "stripe/stripe-cli/stripe"
|
||||||
|
brew "supabase/tap/supabase"
|
||||||
|
brew "withgraphite/tap/graphite", link: false
|
||||||
|
cask "nikitabobko/tap/aerospace"
|
||||||
|
cask "anaconda"
|
||||||
|
cask "humanlayer/humanlayer/codelayer"
|
||||||
|
cask "codex"
|
||||||
|
cask "steipete/tap/codexbar"
|
||||||
|
cask "companion"
|
||||||
|
cask "emacs-app"
|
||||||
|
cask "font-jetbrains-mono"
|
||||||
|
cask "font-symbols-only-nerd-font"
|
||||||
|
cask "gcloud-cli"
|
||||||
|
cask "ngrok"
|
||||||
|
cask "opencode-desktop"
|
||||||
|
cask "osaurus"
|
||||||
|
cask "pantsbuild/tap/pants"
|
||||||
|
cask "humanlayer/humanlayer/riptide-beta"
|
||||||
|
cask "humanlayer/humanlayer/riptide-dev"
|
||||||
|
cask "humanlayer/humanlayer/riptide-experimental"
|
||||||
|
cask "virtualbox"
|
||||||
|
cask "warp"
|
||||||
|
vscode "anthropic.claude-code"
|
||||||
|
go "github.com/rathi/agentikube/cmd/agentikube"
|
||||||
|
go "golang.org/x/tools/cmd/goimports"
|
||||||
|
go "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
||||||
|
go "golang.org/x/tools/cmd/gonew"
|
||||||
|
cargo "lumen"
|
||||||
20
inventory/current/brew-casks.txt
Normal file
20
inventory/current/brew-casks.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
aerospace
|
||||||
|
anaconda
|
||||||
|
codelayer
|
||||||
|
codex
|
||||||
|
codexbar
|
||||||
|
companion
|
||||||
|
emacs-app
|
||||||
|
font-jetbrains-mono
|
||||||
|
font-symbols-only-nerd-font
|
||||||
|
gcloud-cli
|
||||||
|
ghostty@tip
|
||||||
|
ngrok
|
||||||
|
opencode-desktop
|
||||||
|
osaurus
|
||||||
|
pants
|
||||||
|
riptide-beta
|
||||||
|
riptide-dev
|
||||||
|
riptide-experimental
|
||||||
|
virtualbox
|
||||||
|
warp
|
||||||
222
inventory/current/brew-formulae.txt
Normal file
222
inventory/current/brew-formulae.txt
Normal file
|
|
@ -0,0 +1,222 @@
|
||||||
|
abseil
|
||||||
|
aom
|
||||||
|
apache-arrow
|
||||||
|
aws-c-auth
|
||||||
|
aws-c-cal
|
||||||
|
aws-c-common
|
||||||
|
aws-c-compression
|
||||||
|
aws-c-event-stream
|
||||||
|
aws-c-http
|
||||||
|
aws-c-io
|
||||||
|
aws-c-mqtt
|
||||||
|
aws-c-s3
|
||||||
|
aws-c-sdkutils
|
||||||
|
aws-checksums
|
||||||
|
aws-crt-cpp
|
||||||
|
aws-sdk-cpp
|
||||||
|
binwalk
|
||||||
|
bird
|
||||||
|
brotli
|
||||||
|
c-ares
|
||||||
|
ca-certificates
|
||||||
|
cairo
|
||||||
|
certifi
|
||||||
|
cffi
|
||||||
|
cloc
|
||||||
|
cloudflared
|
||||||
|
cmake
|
||||||
|
coreutils
|
||||||
|
criterion
|
||||||
|
cryptography
|
||||||
|
dav1d
|
||||||
|
daytona
|
||||||
|
deno
|
||||||
|
diff-so-fancy
|
||||||
|
dwarfutils
|
||||||
|
e2fsprogs
|
||||||
|
fd
|
||||||
|
ffmpeg
|
||||||
|
flac
|
||||||
|
flyctl
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
fribidi
|
||||||
|
fzf
|
||||||
|
gdk-pixbuf
|
||||||
|
gettext
|
||||||
|
gh
|
||||||
|
giflib
|
||||||
|
git-delta
|
||||||
|
git-filter-repo
|
||||||
|
git-lfs
|
||||||
|
gitleaks
|
||||||
|
glib
|
||||||
|
gmp
|
||||||
|
gnu-time
|
||||||
|
gnupg
|
||||||
|
gnutls
|
||||||
|
go
|
||||||
|
gogcli
|
||||||
|
gpgme
|
||||||
|
gpgmepp
|
||||||
|
graphite
|
||||||
|
graphite2
|
||||||
|
grpc
|
||||||
|
harfbuzz
|
||||||
|
helm
|
||||||
|
highway
|
||||||
|
icu4c@76
|
||||||
|
icu4c@77
|
||||||
|
icu4c@78
|
||||||
|
imagemagick
|
||||||
|
imath
|
||||||
|
jansson
|
||||||
|
jpeg-turbo
|
||||||
|
jpeg-xl
|
||||||
|
jq
|
||||||
|
k9s
|
||||||
|
kind
|
||||||
|
krb5
|
||||||
|
kubernetes-cli
|
||||||
|
lame
|
||||||
|
lazygit
|
||||||
|
libassuan
|
||||||
|
libde265
|
||||||
|
libdeflate
|
||||||
|
libev
|
||||||
|
libevent
|
||||||
|
libgcrypt
|
||||||
|
libgit2
|
||||||
|
libgpg-error
|
||||||
|
libheif
|
||||||
|
libidn2
|
||||||
|
libksba
|
||||||
|
libnghttp2
|
||||||
|
libogg
|
||||||
|
libpng
|
||||||
|
libpq
|
||||||
|
librsvg
|
||||||
|
libsndfile
|
||||||
|
libssh2
|
||||||
|
libtasn1
|
||||||
|
libtiff
|
||||||
|
libtool
|
||||||
|
libunistring
|
||||||
|
libusb
|
||||||
|
libuv
|
||||||
|
libvmaf
|
||||||
|
libvorbis
|
||||||
|
libvpx
|
||||||
|
libx11
|
||||||
|
libxau
|
||||||
|
libxcb
|
||||||
|
libxdmcp
|
||||||
|
libxext
|
||||||
|
libxrender
|
||||||
|
libyaml
|
||||||
|
little-cms2
|
||||||
|
livekit
|
||||||
|
livekit-cli
|
||||||
|
llmfit
|
||||||
|
llvm
|
||||||
|
lpeg
|
||||||
|
luajit
|
||||||
|
lumen
|
||||||
|
luv
|
||||||
|
lz4
|
||||||
|
lzo
|
||||||
|
m4
|
||||||
|
mactop
|
||||||
|
mad
|
||||||
|
memex
|
||||||
|
minikube
|
||||||
|
mint
|
||||||
|
mise
|
||||||
|
mpdecimal
|
||||||
|
mpg123
|
||||||
|
nanomsg
|
||||||
|
nanopb
|
||||||
|
ncurses
|
||||||
|
neovim
|
||||||
|
nettle
|
||||||
|
node
|
||||||
|
npth
|
||||||
|
nspr
|
||||||
|
nss
|
||||||
|
oniguruma
|
||||||
|
openexr
|
||||||
|
openjdk
|
||||||
|
openjpeg
|
||||||
|
openjph
|
||||||
|
openssl@3
|
||||||
|
opus
|
||||||
|
opusfile
|
||||||
|
p11-kit
|
||||||
|
p7zip
|
||||||
|
pandoc
|
||||||
|
pango
|
||||||
|
pcre
|
||||||
|
pcre2
|
||||||
|
pinentry
|
||||||
|
pipx
|
||||||
|
pixman
|
||||||
|
poppler
|
||||||
|
portaudio
|
||||||
|
postgresql@14
|
||||||
|
postgresql@16
|
||||||
|
postgresql@17
|
||||||
|
potrace
|
||||||
|
protobuf
|
||||||
|
pycparser
|
||||||
|
pydantic
|
||||||
|
python@3.13
|
||||||
|
python@3.14
|
||||||
|
re2
|
||||||
|
readline
|
||||||
|
redis
|
||||||
|
resvg
|
||||||
|
ripgrep
|
||||||
|
rpds-py
|
||||||
|
sdl2
|
||||||
|
semgrep
|
||||||
|
sevenzip
|
||||||
|
shared-mime-info
|
||||||
|
snappy
|
||||||
|
sox
|
||||||
|
sqlite
|
||||||
|
stow
|
||||||
|
stripe
|
||||||
|
summarize
|
||||||
|
supabase
|
||||||
|
svt-av1
|
||||||
|
swiftformat
|
||||||
|
swiftlint
|
||||||
|
tailscale
|
||||||
|
terraform
|
||||||
|
thrift
|
||||||
|
tmux
|
||||||
|
tree
|
||||||
|
tree-sitter
|
||||||
|
tree-sitter@0.25
|
||||||
|
trivy
|
||||||
|
unbound
|
||||||
|
unibilium
|
||||||
|
universal-ctags
|
||||||
|
usage
|
||||||
|
utf8proc
|
||||||
|
webp
|
||||||
|
websocat
|
||||||
|
wget
|
||||||
|
worktrunk
|
||||||
|
x264
|
||||||
|
x265
|
||||||
|
xorgproto
|
||||||
|
xz
|
||||||
|
yazi
|
||||||
|
yq
|
||||||
|
yt-dlp
|
||||||
|
z3
|
||||||
|
zoxide
|
||||||
|
zsh-autosuggestions
|
||||||
|
zsh-syntax-highlighting
|
||||||
|
zstd
|
||||||
78
inventory/current/brew-leaves.txt
Normal file
78
inventory/current/brew-leaves.txt
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
apache-arrow
|
||||||
|
binwalk
|
||||||
|
cloc
|
||||||
|
cloudflared
|
||||||
|
cmake
|
||||||
|
coreutils
|
||||||
|
criterion
|
||||||
|
daytonaio/tap/daytona
|
||||||
|
diff-so-fancy
|
||||||
|
e2fsprogs
|
||||||
|
fd
|
||||||
|
ffmpeg
|
||||||
|
flyctl
|
||||||
|
fzf
|
||||||
|
gh
|
||||||
|
git-delta
|
||||||
|
git-filter-repo
|
||||||
|
git-lfs
|
||||||
|
gitleaks
|
||||||
|
gnu-time
|
||||||
|
go
|
||||||
|
hashicorp/tap/terraform
|
||||||
|
helm
|
||||||
|
imagemagick
|
||||||
|
jnsahaj/lumen/lumen
|
||||||
|
jq
|
||||||
|
k9s
|
||||||
|
kind
|
||||||
|
lazygit
|
||||||
|
libpq
|
||||||
|
librsvg
|
||||||
|
livekit
|
||||||
|
livekit-cli
|
||||||
|
llmfit
|
||||||
|
mactop
|
||||||
|
minikube
|
||||||
|
mint
|
||||||
|
mise
|
||||||
|
neovim
|
||||||
|
nicosuave/tap/memex
|
||||||
|
node
|
||||||
|
openjdk
|
||||||
|
pandoc
|
||||||
|
pipx
|
||||||
|
poppler
|
||||||
|
portaudio
|
||||||
|
postgresql@14
|
||||||
|
postgresql@16
|
||||||
|
postgresql@17
|
||||||
|
potrace
|
||||||
|
redis
|
||||||
|
resvg
|
||||||
|
semgrep
|
||||||
|
sevenzip
|
||||||
|
sox
|
||||||
|
steipete/tap/bird
|
||||||
|
steipete/tap/gogcli
|
||||||
|
steipete/tap/summarize
|
||||||
|
stow
|
||||||
|
stripe/stripe-cli/stripe
|
||||||
|
supabase/tap/supabase
|
||||||
|
swiftformat
|
||||||
|
swiftlint
|
||||||
|
tailscale
|
||||||
|
tmux
|
||||||
|
tree
|
||||||
|
trivy
|
||||||
|
universal-ctags
|
||||||
|
websocat
|
||||||
|
wget
|
||||||
|
withgraphite/tap/graphite
|
||||||
|
worktrunk
|
||||||
|
yazi
|
||||||
|
yq
|
||||||
|
yt-dlp
|
||||||
|
zoxide
|
||||||
|
zsh-autosuggestions
|
||||||
|
zsh-syntax-highlighting
|
||||||
8
inventory/current/brew-services.txt
Normal file
8
inventory/current/brew-services.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
Name Status User File
|
||||||
|
cloudflared none
|
||||||
|
postgresql@14 none
|
||||||
|
postgresql@16 none rathi
|
||||||
|
postgresql@17 none
|
||||||
|
redis none
|
||||||
|
tailscale none
|
||||||
|
unbound none
|
||||||
15
inventory/current/cargo-bin.txt
Normal file
15
inventory/current/cargo-bin.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
cargo
|
||||||
|
cargo-clippy
|
||||||
|
cargo-fmt
|
||||||
|
cargo-miri
|
||||||
|
clippy-driver
|
||||||
|
lumen
|
||||||
|
rls
|
||||||
|
rust-analyzer
|
||||||
|
rust-gdb
|
||||||
|
rust-gdbgui
|
||||||
|
rust-lldb
|
||||||
|
rustc
|
||||||
|
rustdoc
|
||||||
|
rustfmt
|
||||||
|
rustup
|
||||||
2
inventory/current/cargo-installs.txt
Normal file
2
inventory/current/cargo-installs.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
lumen v2.20.0:
|
||||||
|
lumen
|
||||||
116
inventory/current/dot-config-top.txt
Normal file
116
inventory/current/dot-config-top.txt
Normal file
|
|
@ -0,0 +1,116 @@
|
||||||
|
/Users/rathi/.config/gcloud
|
||||||
|
/Users/rathi/.config/gcloud/configurations
|
||||||
|
/Users/rathi/.config/gcloud/default_configs.db
|
||||||
|
/Users/rathi/.config/gcloud/application_default_credentials.json
|
||||||
|
/Users/rathi/.config/gcloud/surface_data
|
||||||
|
/Users/rathi/.config/gcloud/.DS_Store
|
||||||
|
/Users/rathi/.config/gcloud/cache
|
||||||
|
/Users/rathi/.config/gcloud/access_tokens.db
|
||||||
|
/Users/rathi/.config/gcloud/active_config
|
||||||
|
/Users/rathi/.config/gcloud/gce
|
||||||
|
/Users/rathi/.config/gcloud/.last_survey_prompt.yaml
|
||||||
|
/Users/rathi/.config/gcloud/logs
|
||||||
|
/Users/rathi/.config/gcloud/credentials.db
|
||||||
|
/Users/rathi/.config/gcloud/hidden_gcloud_config_universe_descriptor_data_cache_configs.db
|
||||||
|
/Users/rathi/.config/gcloud/legacy_credentials
|
||||||
|
/Users/rathi/.config/gcloud/.last_update_check.json
|
||||||
|
/Users/rathi/.config/gcloud/config_sentinel
|
||||||
|
/Users/rathi/.config/nanoclaw
|
||||||
|
/Users/rathi/.config/nanoclaw/mount-allowlist.json
|
||||||
|
/Users/rathi/.config/zed
|
||||||
|
/Users/rathi/.config/zed/.DS_Store
|
||||||
|
/Users/rathi/.config/zed/settings.json
|
||||||
|
/Users/rathi/.config/zed/conversations
|
||||||
|
/Users/rathi/.config/zed/prompts
|
||||||
|
/Users/rathi/.config/zed/themes
|
||||||
|
/Users/rathi/.config/gh-dash
|
||||||
|
/Users/rathi/.config/gh-dash/config.yml
|
||||||
|
/Users/rathi/.config/.DS_Store
|
||||||
|
/Users/rathi/.config/gh
|
||||||
|
/Users/rathi/.config/gh/config.yml
|
||||||
|
/Users/rathi/.config/gh/hosts.yml
|
||||||
|
/Users/rathi/.config/spotify-dlp
|
||||||
|
/Users/rathi/.config/spotify-dlp/config.json
|
||||||
|
/Users/rathi/.config/nvim
|
||||||
|
/Users/rathi/.config/nvim.bak
|
||||||
|
/Users/rathi/.config/nvim.bak/init.lua
|
||||||
|
/Users/rathi/.config/nvim.bak/.DS_Store
|
||||||
|
/Users/rathi/.config/nvim.bak/.nvimlog
|
||||||
|
/Users/rathi/.config/nvim.bak/install.sh
|
||||||
|
/Users/rathi/.config/nvim.bak/rpi
|
||||||
|
/Users/rathi/.config/nvim.bak/plugin
|
||||||
|
/Users/rathi/.config/nvim.bak/undodir
|
||||||
|
/Users/rathi/.config/nvim.bak/lua
|
||||||
|
/Users/rathi/.config/nvim.bak/lazy-lock.json
|
||||||
|
/Users/rathi/.config/nvim.bak/README.md
|
||||||
|
/Users/rathi/.config/nvim.bak/.gitignore
|
||||||
|
/Users/rathi/.config/nvim.bak/after
|
||||||
|
/Users/rathi/.config/nvim.bak/.git
|
||||||
|
/Users/rathi/.config/nvim.bak/.neoconf.json
|
||||||
|
/Users/rathi/.config/nvim.bak/tmp
|
||||||
|
/Users/rathi/.config/nvim.bak/.stylua.toml
|
||||||
|
/Users/rathi/.config/nvim.bak/nvim_cheatsheet.md
|
||||||
|
/Users/rathi/.config/gws
|
||||||
|
/Users/rathi/.config/gws/cache
|
||||||
|
/Users/rathi/.config/rpi
|
||||||
|
/Users/rathi/.config/rpi/config.json
|
||||||
|
/Users/rathi/.config/agents
|
||||||
|
/Users/rathi/.config/agents/skills
|
||||||
|
/Users/rathi/.config/github-copilot
|
||||||
|
/Users/rathi/.config/github-copilot/versions.json
|
||||||
|
/Users/rathi/.config/worktrunk
|
||||||
|
/Users/rathi/.config/worktrunk/config.toml
|
||||||
|
/Users/rathi/.config/uv
|
||||||
|
/Users/rathi/.config/uv/uv-receipt.json
|
||||||
|
/Users/rathi/.config/google.token
|
||||||
|
/Users/rathi/.config/amp
|
||||||
|
/Users/rathi/.config/amp/settings.json
|
||||||
|
/Users/rathi/.config/raycast
|
||||||
|
/Users/rathi/.config/raycast/.DS_Store
|
||||||
|
/Users/rathi/.config/raycast/extensions
|
||||||
|
/Users/rathi/.config/raycast/ai
|
||||||
|
/Users/rathi/.config/mpv
|
||||||
|
/Users/rathi/.config/tmux
|
||||||
|
/Users/rathi/.config/tmux/tmux.conf
|
||||||
|
/Users/rathi/.config/tmux/session-list.sh
|
||||||
|
/Users/rathi/.config/openai.token
|
||||||
|
/Users/rathi/.config/anthropic.token
|
||||||
|
/Users/rathi/.config/k9s
|
||||||
|
/Users/rathi/.config/k9s/views.yaml
|
||||||
|
/Users/rathi/.config/crush
|
||||||
|
/Users/rathi/.config/crush/skills
|
||||||
|
/Users/rathi/.config/kitty
|
||||||
|
/Users/rathi/.config/kitty/kitty.conf
|
||||||
|
/Users/rathi/.config/btca
|
||||||
|
/Users/rathi/.config/btca/btca.json
|
||||||
|
/Users/rathi/.config/graphite
|
||||||
|
/Users/rathi/.config/graphite/user_config
|
||||||
|
/Users/rathi/.config/graphite/aliases
|
||||||
|
/Users/rathi/.config/git
|
||||||
|
/Users/rathi/.config/git/ignore
|
||||||
|
/Users/rathi/.config/karabiner
|
||||||
|
/Users/rathi/.config/karabiner/karabiner.json
|
||||||
|
/Users/rathi/.config/karabiner/assets
|
||||||
|
/Users/rathi/.config/karabiner/automatic_backups
|
||||||
|
/Users/rathi/.config/opencode
|
||||||
|
/Users/rathi/.config/opencode/oh-my-opencode.json
|
||||||
|
/Users/rathi/.config/opencode/.DS_Store
|
||||||
|
/Users/rathi/.config/opencode/config.json
|
||||||
|
/Users/rathi/.config/opencode/providers
|
||||||
|
/Users/rathi/.config/opencode/node_modules
|
||||||
|
/Users/rathi/.config/opencode/antigravity-accounts.json
|
||||||
|
/Users/rathi/.config/opencode/bun.lock
|
||||||
|
/Users/rathi/.config/opencode/.gitignore
|
||||||
|
/Users/rathi/.config/opencode/package.json
|
||||||
|
/Users/rathi/.config/opencode/opencode.json
|
||||||
|
/Users/rathi/.config/opencode/skills
|
||||||
|
/Users/rathi/.config/opencode/command
|
||||||
|
/Users/rathi/.config/zdx
|
||||||
|
/Users/rathi/.config/zdx/threads
|
||||||
|
/Users/rathi/.config/zdx/config.toml
|
||||||
|
/Users/rathi/.config/goose
|
||||||
|
/Users/rathi/.config/goose/skills
|
||||||
|
/Users/rathi/.config/ghostty
|
||||||
|
/Users/rathi/.config/ghostty/.DS_Store
|
||||||
|
/Users/rathi/.config/stripe
|
||||||
|
/Users/rathi/.config/stripe/config.toml
|
||||||
51
inventory/current/fonts-system.txt
Normal file
51
inventory/current/fonts-system.txt
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
/Library/Fonts/SF-Pro-Italic.ttf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Thin.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-SemiboldItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro.ttf
|
||||||
|
/Library/Fonts/SF-Pro-Text-UltralightItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Heavy.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-RegularItalic.otf
|
||||||
|
/Library/Fonts/Artifakt Element Italic.ttf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Light.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Semibold.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Regular.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-MediumItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Bold.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Regular.otf
|
||||||
|
/Library/Fonts/Artifakt Element Regular.ttf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Medium.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Heavy.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Light.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Black.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Semibold.otf
|
||||||
|
/Library/Fonts/Artifakt Element Bold Italic.ttf
|
||||||
|
/Library/Fonts/SF-Pro-Text-BlackItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Black.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Light.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Regular.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Ultralight.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Bold.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Thin.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-MediumItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-HeavyItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Ultralight.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-UltralightItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-LightItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Thin.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-ThinItalic.otf
|
||||||
|
/Library/Fonts/Artifakt Element Bold.ttf
|
||||||
|
/Library/Fonts/SF-Pro-Display-BlackItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-Black.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Medium.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-BoldItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-RegularItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Semibold.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-HeavyItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-ThinItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-LightItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Ultralight.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-Medium.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Heavy.otf
|
||||||
|
/Library/Fonts/SF-Pro-Display-BoldItalic.otf
|
||||||
|
/Library/Fonts/SF-Pro-Rounded-Bold.otf
|
||||||
|
/Library/Fonts/SF-Pro-Text-SemiboldItalic.otf
|
||||||
38
inventory/current/fonts-user.txt
Normal file
38
inventory/current/fonts-user.txt
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Thin.ttf
|
||||||
|
/Users/rathi/Library/Fonts/nonicons.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Bold.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Italic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-LightItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Regular.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-ExtraLightItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono[wght].ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-ExtraLightItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-ExtraLight.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-MediumItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-ThinItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-Light.ttf
|
||||||
|
/Users/rathi/Library/Fonts/BerkeleyMono-Regular.otf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-Italic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-BoldItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-SemiBold.ttf
|
||||||
|
/Users/rathi/Library/Fonts/SymbolsNerdFontMono-Regular.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-SemiBoldItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-LightItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Light.ttf
|
||||||
|
/Users/rathi/Library/Fonts/SymbolsNerdFont-Regular.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-MediumItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-ExtraBold.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-SemiBold.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-Regular.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Italic[wght].ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-Medium.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-Thin.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-SemiBoldItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-ExtraBoldItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-ExtraBoldItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-ThinItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-ExtraBold.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-ExtraLight.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-Medium.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMono-BoldItalic.ttf
|
||||||
|
/Users/rathi/Library/Fonts/JetBrainsMonoNL-Bold.ttf
|
||||||
4
inventory/current/go-bin.txt
Normal file
4
inventory/current/go-bin.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
agentikube
|
||||||
|
goimports
|
||||||
|
golangci-lint
|
||||||
|
gonew
|
||||||
46
inventory/current/go-env.txt
Normal file
46
inventory/current/go-env.txt
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
AR='ar'
|
||||||
|
CC='cc'
|
||||||
|
CGO_CFLAGS='-O2 -g'
|
||||||
|
CGO_CPPFLAGS=''
|
||||||
|
CGO_CXXFLAGS='-O2 -g'
|
||||||
|
CGO_ENABLED='1'
|
||||||
|
CGO_FFLAGS='-O2 -g'
|
||||||
|
CGO_LDFLAGS='-O2 -g'
|
||||||
|
CXX='c++'
|
||||||
|
GCCGO='gccgo'
|
||||||
|
GO111MODULE=''
|
||||||
|
GOARCH='arm64'
|
||||||
|
GOARM64='v8.0'
|
||||||
|
GOAUTH='netrc'
|
||||||
|
GOBIN=''
|
||||||
|
GOCACHE='/Users/rathi/Library/Caches/go-build'
|
||||||
|
GOCACHEPROG=''
|
||||||
|
GODEBUG=''
|
||||||
|
GOENV='/Users/rathi/Library/Application Support/go/env'
|
||||||
|
GOEXE=''
|
||||||
|
GOEXPERIMENT=''
|
||||||
|
GOFIPS140='off'
|
||||||
|
GOFLAGS=''
|
||||||
|
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/77/lswkdx391ngbl6xglbchgyv80000gn/T/go-build722359318=/tmp/go-build -gno-record-gcc-switches -fno-common'
|
||||||
|
GOHOSTARCH='arm64'
|
||||||
|
GOHOSTOS='darwin'
|
||||||
|
GOINSECURE=''
|
||||||
|
GOMOD='/dev/null'
|
||||||
|
GOMODCACHE='/Users/rathi/go/pkg/mod'
|
||||||
|
GONOPROXY=''
|
||||||
|
GONOSUMDB=''
|
||||||
|
GOOS='darwin'
|
||||||
|
GOPATH='/Users/rathi/go'
|
||||||
|
GOPRIVATE=''
|
||||||
|
GOPROXY='https://proxy.golang.org,direct'
|
||||||
|
GOROOT='/opt/homebrew/Cellar/go/1.25.6/libexec'
|
||||||
|
GOSUMDB='sum.golang.org'
|
||||||
|
GOTELEMETRY='local'
|
||||||
|
GOTELEMETRYDIR='/Users/rathi/Library/Application Support/go/telemetry'
|
||||||
|
GOTMPDIR=''
|
||||||
|
GOTOOLCHAIN='auto'
|
||||||
|
GOTOOLDIR='/opt/homebrew/Cellar/go/1.25.6/libexec/pkg/tool/darwin_arm64'
|
||||||
|
GOVCS=''
|
||||||
|
GOVERSION='go1.25.6'
|
||||||
|
GOWORK=''
|
||||||
|
PKG_CONFIG='pkg-config'
|
||||||
140
inventory/current/home-top-level-dirs.txt
Normal file
140
inventory/current/home-top-level-dirs.txt
Normal file
|
|
@ -0,0 +1,140 @@
|
||||||
|
/Users/rathi/.hex
|
||||||
|
/Users/rathi/.config
|
||||||
|
/Users/rathi/.junie
|
||||||
|
/Users/rathi/Music
|
||||||
|
/Users/rathi/.mux
|
||||||
|
/Users/rathi/.qwen
|
||||||
|
/Users/rathi/.cursor
|
||||||
|
/Users/rathi/.rest-client
|
||||||
|
/Users/rathi/.yarn
|
||||||
|
/Users/rathi/.openhands
|
||||||
|
/Users/rathi/.pochi
|
||||||
|
/Users/rathi/.claude-handoff
|
||||||
|
/Users/rathi/.polarity
|
||||||
|
/Users/rathi/.docker
|
||||||
|
/Users/rathi/.copilot
|
||||||
|
/Users/rathi/.gsutil
|
||||||
|
/Users/rathi/.gemini
|
||||||
|
/Users/rathi/.trae
|
||||||
|
/Users/rathi/.windsurf
|
||||||
|
/Users/rathi/.codeium
|
||||||
|
/Users/rathi/RepoPrompt
|
||||||
|
/Users/rathi/.fly
|
||||||
|
/Users/rathi/.mcpjam
|
||||||
|
/Users/rathi/.cdk
|
||||||
|
/Users/rathi/go
|
||||||
|
/Users/rathi/nltk_data
|
||||||
|
/Users/rathi/.gnupg
|
||||||
|
/Users/rathi/.letta
|
||||||
|
/Users/rathi/.qoder
|
||||||
|
/Users/rathi/.thread-view
|
||||||
|
/Users/rathi/.roo
|
||||||
|
/Users/rathi/.uv-cache
|
||||||
|
/Users/rathi/agent-os
|
||||||
|
/Users/rathi/.neovate
|
||||||
|
/Users/rathi/.augment
|
||||||
|
/Users/rathi/.mint
|
||||||
|
/Users/rathi/.streamlit
|
||||||
|
/Users/rathi/.continue
|
||||||
|
/Users/rathi/.railway
|
||||||
|
/Users/rathi/.local
|
||||||
|
/Users/rathi/Pictures
|
||||||
|
/Users/rathi/.bun
|
||||||
|
/Users/rathi/ai-sandbox
|
||||||
|
/Users/rathi/.claude-squad
|
||||||
|
/Users/rathi/.opencode
|
||||||
|
/Users/rathi/.modelscope
|
||||||
|
/Users/rathi/xbrain
|
||||||
|
/Users/rathi/.agents
|
||||||
|
/Users/rathi/.kubasync
|
||||||
|
/Users/rathi/Postman
|
||||||
|
/Users/rathi/code
|
||||||
|
/Users/rathi/.claude
|
||||||
|
/Users/rathi/.biome
|
||||||
|
/Users/rathi/.co-mono
|
||||||
|
/Users/rathi/.ipython
|
||||||
|
/Users/rathi/Desktop
|
||||||
|
/Users/rathi/Library
|
||||||
|
/Users/rathi/.promptfoo
|
||||||
|
/Users/rathi/.matplotlib
|
||||||
|
/Users/rathi/.memex
|
||||||
|
/Users/rathi/.blackbox-cli-v2
|
||||||
|
/Users/rathi/.trae-aicc
|
||||||
|
/Users/rathi/.composio
|
||||||
|
/Users/rathi/ai_completion
|
||||||
|
/Users/rathi/agent-os.backup
|
||||||
|
/Users/rathi/meta-agent
|
||||||
|
/Users/rathi/.critique
|
||||||
|
/Users/rathi/.remodex
|
||||||
|
/Users/rathi/.spotdl
|
||||||
|
/Users/rathi/.minikube
|
||||||
|
/Users/rathi/.emacs.d
|
||||||
|
/Users/rathi/.cargo
|
||||||
|
/Users/rathi/.blackboxcli
|
||||||
|
/Users/rathi/Sites
|
||||||
|
/Users/rathi/.windsurf-next
|
||||||
|
/Users/rathi/.wdm
|
||||||
|
/Users/rathi/.cloudflared
|
||||||
|
/Users/rathi/.zencoder
|
||||||
|
/Users/rathi/.kilocode
|
||||||
|
/Users/rathi/.companion
|
||||||
|
/Users/rathi/.codex
|
||||||
|
/Users/rathi/.kode
|
||||||
|
/Users/rathi/.supermaven
|
||||||
|
/Users/rathi/.openclaw
|
||||||
|
/Users/rathi/.mcp-auth
|
||||||
|
/Users/rathi/.agent-browser
|
||||||
|
/Users/rathi/.EasyOCR
|
||||||
|
/Users/rathi/.kube
|
||||||
|
/Users/rathi/.uva
|
||||||
|
/Users/rathi/.mactop
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-5-5.9.lock
|
||||||
|
/Users/rathi/.marscode
|
||||||
|
/Users/rathi/PA0_Cloud_Lab
|
||||||
|
/Users/rathi/.uvacompute
|
||||||
|
/Users/rathi/.rustup
|
||||||
|
/Users/rathi/.ssh
|
||||||
|
/Users/rathi/Movies
|
||||||
|
/Users/rathi/Applications
|
||||||
|
/Users/rathi/.convex
|
||||||
|
/Users/rathi/.degit
|
||||||
|
/Users/rathi/.amp
|
||||||
|
/Users/rathi/.commandcode
|
||||||
|
/Users/rathi/.Trash
|
||||||
|
/Users/rathi/dev
|
||||||
|
/Users/rathi/.vibe
|
||||||
|
/Users/rathi/.codeverse
|
||||||
|
/Users/rathi/.factory
|
||||||
|
/Users/rathi/.kiro
|
||||||
|
/Users/rathi/.jupyter
|
||||||
|
/Users/rathi/.cline
|
||||||
|
/Users/rathi/.qodo
|
||||||
|
/Users/rathi/.vscode-insiders
|
||||||
|
/Users/rathi/.npm
|
||||||
|
/Users/rathi/dots
|
||||||
|
/Users/rathi/.terraform.d
|
||||||
|
/Users/rathi/Documents
|
||||||
|
/Users/rathi/.codebuddy
|
||||||
|
/Users/rathi/.warp
|
||||||
|
/Users/rathi/.ai
|
||||||
|
/Users/rathi/.veetcode
|
||||||
|
/Users/rathi/.tmux
|
||||||
|
/Users/rathi/.osgrep
|
||||||
|
/Users/rathi/myenv
|
||||||
|
/Users/rathi/.humanlayer
|
||||||
|
/Users/rathi/.vscode
|
||||||
|
/Users/rathi/.mem0
|
||||||
|
/Users/rathi/.swiftpm
|
||||||
|
/Users/rathi/conductor
|
||||||
|
/Users/rathi/.oh-my-zsh
|
||||||
|
/Users/rathi/eigent
|
||||||
|
/Users/rathi/Downloads
|
||||||
|
/Users/rathi/.redhat
|
||||||
|
/Users/rathi/.cache
|
||||||
|
/Users/rathi/.daytona
|
||||||
|
/Users/rathi/.aws
|
||||||
|
/Users/rathi/.eigent
|
||||||
|
/Users/rathi/.happy
|
||||||
|
/Users/rathi/.zsh_sessions
|
||||||
|
/Users/rathi/wt
|
||||||
|
/Users/rathi/.pi
|
||||||
47
inventory/current/home-top-level-files.txt
Normal file
47
inventory/current/home-top-level-files.txt
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
/Users/rathi/.zcompdump-hari-macbook-pro-5.9
|
||||||
|
/Users/rathi/.claude.json.backup
|
||||||
|
/Users/rathi/.zcompdump-Mac-5.9
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-8-5.9.zwc
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-8-5.9
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro-5.9.zwc
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-9-5.9
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-9-5.9.zwc
|
||||||
|
/Users/rathi/.opencode.json
|
||||||
|
/Users/rathi/.DS_Store
|
||||||
|
/Users/rathi/.yarnrc
|
||||||
|
/Users/rathi/.CFUserTextEncoding
|
||||||
|
/Users/rathi/.xonshrc
|
||||||
|
/Users/rathi/.zcompdump-Mac-5.9.zwc
|
||||||
|
/Users/rathi/atlas-ssh.txt.pub
|
||||||
|
/Users/rathi/.zshrc
|
||||||
|
/Users/rathi/.aerospace.toml
|
||||||
|
/Users/rathi/.nix-profile
|
||||||
|
/Users/rathi/.secrets
|
||||||
|
/Users/rathi/.zcompdump-Unknown-5.9
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro (3)-5.9.zwc
|
||||||
|
/Users/rathi/.zsh_history
|
||||||
|
/Users/rathi/ci_deploy_key
|
||||||
|
/Users/rathi/.npmrc
|
||||||
|
/Users/rathi/.lesshst
|
||||||
|
/Users/rathi/atlas-ssh.txt
|
||||||
|
/Users/rathi/package-lock.json
|
||||||
|
/Users/rathi/.zshenv
|
||||||
|
/Users/rathi/ci_deploy_key.pub
|
||||||
|
/Users/rathi/.profile
|
||||||
|
/Users/rathi/.zcompdump-hari-macbook-pro-5.9.zwc
|
||||||
|
/Users/rathi/.zcompdump
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro-5.9
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-5-5.9.zwc
|
||||||
|
/Users/rathi/.hushlogin
|
||||||
|
/Users/rathi/.claude.json
|
||||||
|
/Users/rathi/.bash_profile
|
||||||
|
/Users/rathi/.claude-handoff.conf
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro (3)-5.9
|
||||||
|
/Users/rathi/.python_history
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-4-5.9
|
||||||
|
/Users/rathi/.gitconfig
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-5-5.9
|
||||||
|
/Users/rathi/.bash_history
|
||||||
|
/Users/rathi/.viminfo
|
||||||
|
/Users/rathi/.zcompdump-Unknown-5.9.zwc
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-4-5.9.zwc
|
||||||
187
inventory/current/home-top-level.txt
Normal file
187
inventory/current/home-top-level.txt
Normal file
|
|
@ -0,0 +1,187 @@
|
||||||
|
/Users/rathi/.zcompdump-hari-macbook-pro-5.9
|
||||||
|
/Users/rathi/.claude.json.backup
|
||||||
|
/Users/rathi/.zcompdump-Mac-5.9
|
||||||
|
/Users/rathi/.hex
|
||||||
|
/Users/rathi/.config
|
||||||
|
/Users/rathi/.junie
|
||||||
|
/Users/rathi/Music
|
||||||
|
/Users/rathi/.mux
|
||||||
|
/Users/rathi/.qwen
|
||||||
|
/Users/rathi/.cursor
|
||||||
|
/Users/rathi/.rest-client
|
||||||
|
/Users/rathi/.yarn
|
||||||
|
/Users/rathi/.openhands
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-8-5.9.zwc
|
||||||
|
/Users/rathi/.pochi
|
||||||
|
/Users/rathi/.claude-handoff
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-8-5.9
|
||||||
|
/Users/rathi/.polarity
|
||||||
|
/Users/rathi/.docker
|
||||||
|
/Users/rathi/.copilot
|
||||||
|
/Users/rathi/.gsutil
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro-5.9.zwc
|
||||||
|
/Users/rathi/.gemini
|
||||||
|
/Users/rathi/.trae
|
||||||
|
/Users/rathi/.windsurf
|
||||||
|
/Users/rathi/.codeium
|
||||||
|
/Users/rathi/RepoPrompt
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-9-5.9
|
||||||
|
/Users/rathi/.fly
|
||||||
|
/Users/rathi/.mcpjam
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-9-5.9.zwc
|
||||||
|
/Users/rathi/.cdk
|
||||||
|
/Users/rathi/.opencode.json
|
||||||
|
/Users/rathi/go
|
||||||
|
/Users/rathi/.DS_Store
|
||||||
|
/Users/rathi/nltk_data
|
||||||
|
/Users/rathi/.gnupg
|
||||||
|
/Users/rathi/.letta
|
||||||
|
/Users/rathi/.qoder
|
||||||
|
/Users/rathi/.thread-view
|
||||||
|
/Users/rathi/.yarnrc
|
||||||
|
/Users/rathi/.CFUserTextEncoding
|
||||||
|
/Users/rathi/.roo
|
||||||
|
/Users/rathi/.xonshrc
|
||||||
|
/Users/rathi/.uv-cache
|
||||||
|
/Users/rathi/agent-os
|
||||||
|
/Users/rathi/.zcompdump-Mac-5.9.zwc
|
||||||
|
/Users/rathi/atlas-ssh.txt.pub
|
||||||
|
/Users/rathi/.neovate
|
||||||
|
/Users/rathi/.zshrc
|
||||||
|
/Users/rathi/.aerospace.toml
|
||||||
|
/Users/rathi/.augment
|
||||||
|
/Users/rathi/.mint
|
||||||
|
/Users/rathi/.streamlit
|
||||||
|
/Users/rathi/.continue
|
||||||
|
/Users/rathi/.railway
|
||||||
|
/Users/rathi/.local
|
||||||
|
/Users/rathi/Pictures
|
||||||
|
/Users/rathi/.bun
|
||||||
|
/Users/rathi/ai-sandbox
|
||||||
|
/Users/rathi/.claude-squad
|
||||||
|
/Users/rathi/.opencode
|
||||||
|
/Users/rathi/.modelscope
|
||||||
|
/Users/rathi/xbrain
|
||||||
|
/Users/rathi/.agents
|
||||||
|
/Users/rathi/.nix-profile
|
||||||
|
/Users/rathi/.kubasync
|
||||||
|
/Users/rathi/Postman
|
||||||
|
/Users/rathi/.secrets
|
||||||
|
/Users/rathi/code
|
||||||
|
/Users/rathi/.claude
|
||||||
|
/Users/rathi/.biome
|
||||||
|
/Users/rathi/.zcompdump-Unknown-5.9
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro (3)-5.9.zwc
|
||||||
|
/Users/rathi/.zsh_history
|
||||||
|
/Users/rathi/.co-mono
|
||||||
|
/Users/rathi/.ipython
|
||||||
|
/Users/rathi/Desktop
|
||||||
|
/Users/rathi/ci_deploy_key
|
||||||
|
/Users/rathi/Library
|
||||||
|
/Users/rathi/.npmrc
|
||||||
|
/Users/rathi/.promptfoo
|
||||||
|
/Users/rathi/.matplotlib
|
||||||
|
/Users/rathi/.memex
|
||||||
|
/Users/rathi/.blackbox-cli-v2
|
||||||
|
/Users/rathi/.trae-aicc
|
||||||
|
/Users/rathi/.lesshst
|
||||||
|
/Users/rathi/.composio
|
||||||
|
/Users/rathi/ai_completion
|
||||||
|
/Users/rathi/agent-os.backup
|
||||||
|
/Users/rathi/meta-agent
|
||||||
|
/Users/rathi/.critique
|
||||||
|
/Users/rathi/.remodex
|
||||||
|
/Users/rathi/.spotdl
|
||||||
|
/Users/rathi/.minikube
|
||||||
|
/Users/rathi/.emacs.d
|
||||||
|
/Users/rathi/.cargo
|
||||||
|
/Users/rathi/.blackboxcli
|
||||||
|
/Users/rathi/Sites
|
||||||
|
/Users/rathi/.windsurf-next
|
||||||
|
/Users/rathi/.wdm
|
||||||
|
/Users/rathi/.cloudflared
|
||||||
|
/Users/rathi/.zencoder
|
||||||
|
/Users/rathi/.kilocode
|
||||||
|
/Users/rathi/.companion
|
||||||
|
/Users/rathi/.codex
|
||||||
|
/Users/rathi/.kode
|
||||||
|
/Users/rathi/.supermaven
|
||||||
|
/Users/rathi/.openclaw
|
||||||
|
/Users/rathi/atlas-ssh.txt
|
||||||
|
/Users/rathi/.mcp-auth
|
||||||
|
/Users/rathi/package-lock.json
|
||||||
|
/Users/rathi/.agent-browser
|
||||||
|
/Users/rathi/.zshenv
|
||||||
|
/Users/rathi/.EasyOCR
|
||||||
|
/Users/rathi/.kube
|
||||||
|
/Users/rathi/.uva
|
||||||
|
/Users/rathi/.mactop
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-5-5.9.lock
|
||||||
|
/Users/rathi/.marscode
|
||||||
|
/Users/rathi/PA0_Cloud_Lab
|
||||||
|
/Users/rathi/.uvacompute
|
||||||
|
/Users/rathi/ci_deploy_key.pub
|
||||||
|
/Users/rathi/.rustup
|
||||||
|
/Users/rathi/.ssh
|
||||||
|
/Users/rathi/Movies
|
||||||
|
/Users/rathi/Applications
|
||||||
|
/Users/rathi/.convex
|
||||||
|
/Users/rathi/.profile
|
||||||
|
/Users/rathi/.degit
|
||||||
|
/Users/rathi/.amp
|
||||||
|
/Users/rathi/.zcompdump-hari-macbook-pro-5.9.zwc
|
||||||
|
/Users/rathi/.commandcode
|
||||||
|
/Users/rathi/.Trash
|
||||||
|
/Users/rathi/dev
|
||||||
|
/Users/rathi/.vibe
|
||||||
|
/Users/rathi/.codeverse
|
||||||
|
/Users/rathi/.factory
|
||||||
|
/Users/rathi/.kiro
|
||||||
|
/Users/rathi/.jupyter
|
||||||
|
/Users/rathi/.cline
|
||||||
|
/Users/rathi/.zcompdump
|
||||||
|
/Users/rathi/.qodo
|
||||||
|
/Users/rathi/.vscode-insiders
|
||||||
|
/Users/rathi/.npm
|
||||||
|
/Users/rathi/dots
|
||||||
|
/Users/rathi/.terraform.d
|
||||||
|
/Users/rathi/Documents
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro-5.9
|
||||||
|
/Users/rathi/.codebuddy
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-5-5.9.zwc
|
||||||
|
/Users/rathi/.warp
|
||||||
|
/Users/rathi/.hushlogin
|
||||||
|
/Users/rathi/.ai
|
||||||
|
/Users/rathi/.veetcode
|
||||||
|
/Users/rathi/.tmux
|
||||||
|
/Users/rathi/.osgrep
|
||||||
|
/Users/rathi/myenv
|
||||||
|
/Users/rathi/.humanlayer
|
||||||
|
/Users/rathi/.claude.json
|
||||||
|
/Users/rathi/.vscode
|
||||||
|
/Users/rathi/.mem0
|
||||||
|
/Users/rathi/.bash_profile
|
||||||
|
/Users/rathi/.swiftpm
|
||||||
|
/Users/rathi/conductor
|
||||||
|
/Users/rathi/.oh-my-zsh
|
||||||
|
/Users/rathi/eigent
|
||||||
|
/Users/rathi/.claude-handoff.conf
|
||||||
|
/Users/rathi/.zcompdump-MacBook Pro (3)-5.9
|
||||||
|
/Users/rathi/Downloads
|
||||||
|
/Users/rathi/.python_history
|
||||||
|
/Users/rathi/.redhat
|
||||||
|
/Users/rathi/.cache
|
||||||
|
/Users/rathi/.daytona
|
||||||
|
/Users/rathi/.aws
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-4-5.9
|
||||||
|
/Users/rathi/.gitconfig
|
||||||
|
/Users/rathi/.eigent
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-5-5.9
|
||||||
|
/Users/rathi/.happy
|
||||||
|
/Users/rathi/.bash_history
|
||||||
|
/Users/rathi/.viminfo
|
||||||
|
/Users/rathi/.zsh_sessions
|
||||||
|
/Users/rathi/wt
|
||||||
|
/Users/rathi/.zcompdump-Unknown-5.9.zwc
|
||||||
|
/Users/rathi/.pi
|
||||||
|
/Users/rathi/.zcompdump-MacBook-Pro-4-5.9.zwc
|
||||||
6
inventory/current/launchagents-system.txt
Normal file
6
inventory/current/launchagents-system.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
/Library/LaunchAgents/com.displaylink.loginscreen.plist
|
||||||
|
/Library/LaunchAgents/us.zoom.updater.login.check.plist
|
||||||
|
/Library/LaunchAgents/com.pioneerdj.FwUpdateManagerd.plist
|
||||||
|
/Library/LaunchAgents/com.logi.optionsplus.plist
|
||||||
|
/Library/LaunchAgents/us.zoom.updater.plist
|
||||||
|
/Library/LaunchAgents/com.logitech.LogiRightSight.Agent.plist
|
||||||
10
inventory/current/launchagents-user.txt
Normal file
10
inventory/current/launchagents-user.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.google.keystone.xpcservice.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.google.keystone.agent.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.thread-view.collector.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.thread-view.ngrok.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/pi.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.DigiDNA.iMazing2Mac.Mini.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.google.GoogleUpdater.wake.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/com.nanoclaw.plist
|
||||||
|
/Users/rathi/Library/LaunchAgents/homebrew.mxcl.postgresql@16.plist
|
||||||
8
inventory/current/launchdaemons-system.txt
Normal file
8
inventory/current/launchdaemons-system.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
/Library/LaunchDaemons/com.docker.vmnetd.plist
|
||||||
|
/Library/LaunchDaemons/com.docker.socket.plist
|
||||||
|
/Library/LaunchDaemons/org.nixos.darwin-store.plist
|
||||||
|
/Library/LaunchDaemons/com.autodesk.adskaccessservicehost.plist
|
||||||
|
/Library/LaunchDaemons/com.logi.optionsplus.updater.plist
|
||||||
|
/Library/LaunchDaemons/org.nixos.nix-daemon.plist
|
||||||
|
/Library/LaunchDaemons/us.zoom.ZoomDaemon.plist
|
||||||
|
/Library/LaunchDaemons/com.autodesk.AdskLicensingService.plist
|
||||||
156
inventory/current/library-application-support-top.txt
Normal file
156
inventory/current/library-application-support-top.txt
Normal file
|
|
@ -0,0 +1,156 @@
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.callintelligenced
|
||||||
|
/Users/rathi/Library/Application Support/Xcode
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.control-center.tips
|
||||||
|
/Users/rathi/Library/Application Support/Granola
|
||||||
|
/Users/rathi/Library/Application Support/SESStorage
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.replayd
|
||||||
|
/Users/rathi/Library/Application Support/Music
|
||||||
|
/Users/rathi/Library/Application Support/familycircled
|
||||||
|
/Users/rathi/Library/Application Support/Zed
|
||||||
|
/Users/rathi/Library/Application Support/obs-studio
|
||||||
|
/Users/rathi/Library/Application Support/Telegram Desktop
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.dt.Xcode
|
||||||
|
/Users/rathi/Library/Application Support/com.raycast.shared
|
||||||
|
/Users/rathi/Library/Application Support/ngrok
|
||||||
|
/Users/rathi/Library/Application Support/net.imput.helium
|
||||||
|
/Users/rathi/Library/Application Support/com.conductor.app
|
||||||
|
/Users/rathi/Library/Application Support/Mozilla
|
||||||
|
/Users/rathi/Library/Application Support/networkserviceproxy
|
||||||
|
/Users/rathi/Library/Application Support/RepoPrompt
|
||||||
|
/Users/rathi/Library/Application Support/google-heartbeat-storage
|
||||||
|
/Users/rathi/Library/Application Support/DiskImages
|
||||||
|
/Users/rathi/Library/Application Support/rekordboxAgent
|
||||||
|
/Users/rathi/Library/Application Support/Spotlight
|
||||||
|
/Users/rathi/Library/Application Support/ControlCenter
|
||||||
|
/Users/rathi/Library/Application Support/discord
|
||||||
|
/Users/rathi/Library/Application Support/Anki2
|
||||||
|
/Users/rathi/Library/Application Support/go
|
||||||
|
/Users/rathi/Library/Application Support/clawdbot
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.ap.promotedcontentd
|
||||||
|
/Users/rathi/Library/Application Support/CodeRabbit
|
||||||
|
/Users/rathi/Library/Application Support/com.openai.chat
|
||||||
|
/Users/rathi/Library/Application Support/com.openai.atlas
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.exchangesync
|
||||||
|
/Users/rathi/Library/Application Support/com.dimillian.codexmonitor
|
||||||
|
/Users/rathi/Library/Application Support/Animoji
|
||||||
|
/Users/rathi/Library/Application Support/interview-coder-v1
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.akd
|
||||||
|
/Users/rathi/Library/Application Support/interviewcoder
|
||||||
|
/Users/rathi/Library/Application Support/Cursor
|
||||||
|
/Users/rathi/Library/Application Support/LogiOptionsPlus
|
||||||
|
/Users/rathi/Library/Application Support/firestore
|
||||||
|
/Users/rathi/Library/Application Support/Insomnia
|
||||||
|
/Users/rathi/Library/Application Support/iMazing
|
||||||
|
/Users/rathi/Library/Application Support/GensparkSoftware
|
||||||
|
/Users/rathi/Library/Application Support/pypoetry
|
||||||
|
/Users/rathi/Library/Application Support/Google
|
||||||
|
/Users/rathi/Library/Application Support/CallHistoryTransactions
|
||||||
|
/Users/rathi/Library/Application Support/lazygit
|
||||||
|
/Users/rathi/Library/Application Support/Microsoft
|
||||||
|
/Users/rathi/Library/Application Support/Claude
|
||||||
|
/Users/rathi/Library/Application Support/zoxide
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.MediaPlayer
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.spotlight
|
||||||
|
/Users/rathi/Library/Application Support/segment
|
||||||
|
/Users/rathi/Library/Application Support/App Store
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.mobileAssetDesktop
|
||||||
|
/Users/rathi/Library/Application Support/Codex
|
||||||
|
/Users/rathi/Library/Application Support/gogcli
|
||||||
|
/Users/rathi/Library/Application Support/R
|
||||||
|
/Users/rathi/Library/Application Support/icloudmailagent
|
||||||
|
/Users/rathi/Library/Application Support/Postman
|
||||||
|
/Users/rathi/Library/Application Support/locationaccessstored
|
||||||
|
/Users/rathi/Library/Application Support/homeenergyd
|
||||||
|
/Users/rathi/Library/Application Support/appplaceholdersyncd
|
||||||
|
/Users/rathi/Library/Application Support/tipsd
|
||||||
|
/Users/rathi/Library/Application Support/Code
|
||||||
|
/Users/rathi/Library/Application Support/abnerworks.Typora
|
||||||
|
/Users/rathi/Library/Application Support/Windsurf - Next
|
||||||
|
/Users/rathi/Library/Application Support/com.vercel.cli
|
||||||
|
/Users/rathi/Library/Application Support/RStudio
|
||||||
|
/Users/rathi/Library/Application Support/identityservicesd
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.NewDeviceOutreach
|
||||||
|
/Users/rathi/Library/Application Support/com.dinoki.osaurus
|
||||||
|
/Users/rathi/Library/Application Support/TV
|
||||||
|
/Users/rathi/Library/Application Support/Autodesk
|
||||||
|
/Users/rathi/Library/Application Support/Docker Desktop
|
||||||
|
/Users/rathi/Library/Application Support/Trae
|
||||||
|
/Users/rathi/Library/Application Support/CrashReporter
|
||||||
|
/Users/rathi/Library/Application Support/Notion
|
||||||
|
/Users/rathi/Library/Application Support/zen
|
||||||
|
/Users/rathi/Library/Application Support/CodexBar
|
||||||
|
/Users/rathi/Library/Application Support/assistant_service
|
||||||
|
/Users/rathi/Library/Application Support/Chromium
|
||||||
|
/Users/rathi/Library/Application Support/ai.opencode.desktop
|
||||||
|
/Users/rathi/Library/Application Support/CloudDocs
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.sharedfilelist
|
||||||
|
/Users/rathi/Library/Application Support/Comet
|
||||||
|
/Users/rathi/Library/Application Support/com.mitchellh.ghostty
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.desktop.photos
|
||||||
|
/Users/rathi/Library/Application Support/Instruments
|
||||||
|
/Users/rathi/Library/Application Support/com.operasoftware.Opera
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.dt.Xcode.ITunesSoftwareService
|
||||||
|
/Users/rathi/Library/Application Support/so.cap.desktop
|
||||||
|
/Users/rathi/Library/Application Support/cluely
|
||||||
|
/Users/rathi/Library/Application Support/Knowledge
|
||||||
|
/Users/rathi/Library/Application Support/Code - Insiders
|
||||||
|
/Users/rathi/Library/Application Support/icdd
|
||||||
|
/Users/rathi/Library/Application Support/iTerm2
|
||||||
|
/Users/rathi/Library/Application Support/Kiro
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.TCC
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.shazamd
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.MediaPlaybackCore.PlaybackEventStreams
|
||||||
|
/Users/rathi/Library/Application Support/com.bugsnag.Bugsnag
|
||||||
|
/Users/rathi/Library/Application Support/UI Launcher
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.ContextStoreAgent
|
||||||
|
/Users/rathi/Library/Application Support/contactsd
|
||||||
|
/Users/rathi/Library/Application Support/ZoomUpdater
|
||||||
|
/Users/rathi/Library/Application Support/Serato
|
||||||
|
/Users/rathi/Library/Application Support/FileProvider
|
||||||
|
/Users/rathi/Library/Application Support/Windsurf
|
||||||
|
/Users/rathi/Library/Application Support/AddressBook
|
||||||
|
/Users/rathi/Library/Application Support/FaceTime
|
||||||
|
/Users/rathi/Library/Application Support/Microsoft Edge
|
||||||
|
/Users/rathi/Library/Application Support/Dia
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.AMPLibraryAgent
|
||||||
|
/Users/rathi/Library/Application Support/DifferentialPrivacy
|
||||||
|
/Users/rathi/Library/Application Support/dev.warp.Warp-Stable
|
||||||
|
/Users/rathi/Library/Application Support/k9s
|
||||||
|
/Users/rathi/Library/Application Support/GitHub Desktop
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.windowmanager
|
||||||
|
/Users/rathi/Library/Application Support/Slack
|
||||||
|
/Users/rathi/Library/Application Support/com.logitech.logiaipromptbuilder
|
||||||
|
/Users/rathi/Library/Application Support/com.raycast.macos
|
||||||
|
/Users/rathi/Library/Application Support/com.vercel.token
|
||||||
|
/Users/rathi/Library/Application Support/Pioneer
|
||||||
|
/Users/rathi/Library/Application Support/stickersd
|
||||||
|
/Users/rathi/Library/Application Support/daytona
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.wallpaper
|
||||||
|
/Users/rathi/Library/Application Support/io.sentry
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.siri.inference
|
||||||
|
/Users/rathi/Library/Application Support/Arc
|
||||||
|
/Users/rathi/Library/Application Support/Ultralytics
|
||||||
|
/Users/rathi/Library/Application Support/virtualenv
|
||||||
|
/Users/rathi/Library/Application Support/iCloud
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.controlcenter
|
||||||
|
/Users/rathi/Library/Application Support/Vivaldi
|
||||||
|
/Users/rathi/Library/Application Support/turborepo
|
||||||
|
/Users/rathi/Library/Application Support/eigent
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.avfoundation
|
||||||
|
/Users/rathi/Library/Application Support/CallHistoryDB
|
||||||
|
/Users/rathi/Library/Application Support/BetterTouchTool
|
||||||
|
/Users/rathi/Library/Application Support/Signal
|
||||||
|
/Users/rathi/Library/Application Support/TorBrowser-Data
|
||||||
|
/Users/rathi/Library/Application Support/Loom
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.iTunesCloud
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.RemoteManagementAgent
|
||||||
|
/Users/rathi/Library/Application Support/ConfigurationProfiles
|
||||||
|
/Users/rathi/Library/Application Support/BraveSoftware
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.games
|
||||||
|
/Users/rathi/Library/Application Support/OpenAI
|
||||||
|
/Users/rathi/Library/Application Support/com.apple.ProtectedCloudStorage
|
||||||
|
/Users/rathi/Library/Application Support/4kdownload.com
|
||||||
|
/Users/rathi/Library/Application Support/Wispr Flow
|
||||||
|
/Users/rathi/Library/Application Support/AnkiProgramFiles
|
||||||
|
/Users/rathi/Library/Application Support/Screen Studio
|
||||||
|
/Users/rathi/Library/Application Support/Caches
|
||||||
539
inventory/current/library-preferences-top.txt
Normal file
539
inventory/current/library-preferences-top.txt
Normal file
|
|
@ -0,0 +1,539 @@
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.pommes.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.launchdarkly.client.X35+6+kkrwIMqzRZDHyxezsqjizBZbbxTADyKoHmkIo=.AmbpBWnkuTgbRRhkadGx57XvAzVjAUiljSKf1xaCLE8=.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cloud.quota.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.bookdatastored.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.FamilyCircle.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ScreenContinuity.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.FontRegistry.user.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.followup.engagement.plist
|
||||||
|
/Users/rathi/Library/Preferences/us.zoom.ZoomAutoUpdater.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.gnu.Emacs.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.serato.seratovideo.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.FinanceKit.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.logitech.logiaipromptbuilder.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.pqrs.Karabiner-Elements.Settings.plist
|
||||||
|
/Users/rathi/Library/Preferences/so.cap.desktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.suggestions.TextUnderstandingObserver.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.4kdownload.4K Video Downloader+.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CallHistorySyncHelper.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Sharing.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iphonesimulator.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.icloud.gm.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.suggestd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.speech.synthesis.general.prefs.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.chat.RemoteFeatureFlags.3cfee17b-496d-4fe5-a237-ec8ee35491cb.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.GEO.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SiriExperimentMetricsWorker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SocialLayer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.FolderActionsDispatcher.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.stocks.stockskit.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.commcenter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ids.subservices.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.findmy.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DPSubmissionService.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.trae.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.universalaccessAuthWarning.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.maTraIoFR37bbM937mbCRTm4WRijPR4s.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AppleMultitouchMouse.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ClassKit-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.screensaver.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siriknowledged.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AppleMultitouchTrackpad.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.electron.dockerdesktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.spotlight.mdwrite.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.chat.RemoteFeatureFlags.95c2b867-8d2a-424d-a534-4ed0b696b64e.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DataDeliveryServices.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.whispersystems.signal-desktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ComfortSounds.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sociallayerd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.ewjp2RGpYO4hHSErQ3lBOOjnR0YqolJo.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.generativepartnerservicesettings.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mobiletimerd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.ticket.cache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DuetExpertCenter.MagicalMoments.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.frauddefensed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.wifi.nearby-recommended-networks.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.bluetooth.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.google.Keystone.Agent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.StatusKitAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.atlas.web.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.seeding.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ipTelephony.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iApps.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Accessibility.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.FaceTime.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.migrations.plist
|
||||||
|
/Users/rathi/Library/Preferences/company.thebrowser.dia.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Music.eq.plist
|
||||||
|
/Users/rathi/Library/Preferences/io.tailscale.ipn.macsys.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sms.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Classroom-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imessage.bag.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mobilerepaird.systemhealth.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.menuextra.clock.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.rapport.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.backgroundassets.managed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.APFSUserAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.clawdbot.mac.debug.plist
|
||||||
|
/Users/rathi/Library/Preferences/8469064923.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.madrid.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.UserAccountUpdater.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AvatarUI.Staryu.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.StocksKitService.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mobileipod.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.contactsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.todesktop.230313mzl4w4u92.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.keyboard.preferences.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CoreGraphics.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.tipsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.findmy.fmipcore.notbackedup.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudKit.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.personalizationportrait.TextUnderstandingObserver.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.contextsync.subscriptions.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.conductor.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.admigrator2025.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AccessibilityVisualsAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/group.com.apple.mail.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.bluetoothuserd.plist
|
||||||
|
/Users/rathi/Library/Preferences/ZoomChat.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.classroom.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CoreDuet.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Keyboard-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.BezelServices.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AssetMetricsWorker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.messaging.expire.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.pioneerdj.rekordboxdj.plist
|
||||||
|
/Users/rathi/Library/Preferences/ai.opencode.desktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sociallayerd.CloudKit.ckwriter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.wallpaper.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.benjitaylor.Readout.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SoftwareUpdate.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.screencapture.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.fileproviderd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.coreservices.UASharedPasteboardProgressUI.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.accountsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.spotlightknowledge.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.liveactivitiesd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mail-shared.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.translationd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.C7NDNMWW5WHsquF09H9JIGoDlAD6yxls.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.Installer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.print.custompresets.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Safari.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.VoiceShortcuts.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Console.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.config.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ibtool.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.inputAnalytics.serverStats.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cmio.ContinuityCaptureAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sonic.music.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.suggestions.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.serato.seratodj.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.anthropic.claudefordesktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/codex-monitor.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.tdesktop.Telegram.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ExtensionsPreferences.ShareMenu.plist
|
||||||
|
/Users/rathi/Library/Preferences/embeddedBinaryValidationUtility.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.protectedcloudstorage.protectedcloudkeysyncing.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.knollsoft.Rectangle.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.inputAnalytics.IASSRAnalyzer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.github.GitHubClient.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.MobileSMS.CKDNDList.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.DigiDNA.iMazing3Mac.plist
|
||||||
|
/Users/rathi/Library/Preferences/ai.perplexity.comet.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.osanalytics.DiagnosticsReporter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AMPDevicesAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.chat.StatsigService.plist
|
||||||
|
/Users/rathi/Library/Preferences/Avatar Cache Index.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.ODDI.MetricsWorker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imagecapture.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.commcenter.data.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.granola.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/.GlobalPreferences_m.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.ezeEu4UqtErfpKf9TpbuQ4UvWgqYL9Ik.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imservice.ids.iMessage.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.steipete.codexbar.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ViewBridge.masquerading-service-lacks-host-bundle-identifier.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.cluely.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.driver.AppleBluetoothMultitouch.mouse.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.settings.PrivacySecurity.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dt.xcodebuild.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appkit.xpc.openAndSavePanelService.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.games.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.itunescloud.daemon.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.hnc.Discord.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.timpler.screenstudio.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.newsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/net.imput.helium.plist
|
||||||
|
/Users/rathi/Library/Preferences/us.zoom.updater.config.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.gms.availability.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SafariBookmarksSyncAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appleaccount.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.usernotificationskit.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.WindowManager.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cmfsyncagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/ScopedBookmarkAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dt.instruments.backgroundinstruments.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.systempreferences.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dock.external.extra.arm64.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.keyboardservicesd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.managedappdistributionagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.optIn.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.helpd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.AutoCAD2025.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.systemsettings.extensions.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.calaccessd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.amp.mediasharingd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudTelemetryService.xpc.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AdLib.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dock.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.analytics.assistant.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Maps.mapssyncd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.triald.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.voicetrigger.notbackedup.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.mitchellh.ghostty.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.insomnia.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.businessservicesd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.logi.optionsplus.driverhost.plist
|
||||||
|
/Users/rathi/Library/Preferences/dev.zed.Zed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.MigrateAssistant.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.internal.ck.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.remindd.babysitter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SystemProfiler.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.configurationprofiles.user.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.shortcuts.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SafariServices.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.generativeassistantsettings.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.geoCache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cseventlistener.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.spaces.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.itunescloudd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.4kdownload.ApplicationDirectories.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.atlas.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.github.Electron.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imdpersistence.IMDPersistenceAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/loginwindow.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.talagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appleseed.FeedbackAssistant.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.chat.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CoreSimulator.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.electron.wispr-flow.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.settings.Storage.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.telemetrydeck.8eeccaa74051.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DiagnosticExtensions.extensionTracker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.DownloadManager.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TV.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.tinyspeck.slackmacgap.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ReportCrash.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.commerce.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.wifi.removed-networks.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.shazamd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SpeechRecognitionCore.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.dinoki.osaurus.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AddressBook.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.newscore.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.security.ctkd-db.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ids.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.lemon.ccdownloader.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.AdskIdentityManager.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.proactive.PersonalizationPortrait.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TrustedPeersHelper.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.coreservices.useractivityd.dynamicuseractivites.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.anvil.501.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.homeeventsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.assistant.support.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.EscrowSecurityAlert.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.virtualbox.app.VirtualBoxVM.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.chromium.Chromium.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.corespotlightui.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.EmojiCache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AdPlatforms.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.waitlist.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mlruntimed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AppStore.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.pioneerdj.FwDownloader.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.findmy.fmfcore.notbackedup.plist
|
||||||
|
/Users/rathi/Library/Preferences/dev.kiro.desktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.messages.commsafety.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TelephonyUtilities.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.facetime.bag.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.passd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.hnc.Discord.helper.Renderer.plist
|
||||||
|
/Users/rathi/Library/Preferences/vercept.vy.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSharingUI.AddParticipants.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.1f1G4Yg6Ca2De9zafBSlsDQ1fH8PSwej.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.microsoft.VSCode.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.usernotificationsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.locationaccessstored.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.google.Chrome.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appplaceholdersyncd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CacheDelete.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AccessibilityUIServer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AMPLibraryAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.context.service.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Sharing-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dt.Xcode.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.logi.optionsplus.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.qtproject.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.assistant.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mediaplaybackcore.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iCal.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TextInputMenuAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.commerce.knownclients.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.obsproject.obs-studio.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.microsoft.VSCodeInsiders.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.cache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.onetimepasscodes.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.seserviced.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.logi.cp-dev-mgr.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AppStoreComponents.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.widgets.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sharingd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Siri.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.stockholm.plist
|
||||||
|
/Users/rathi/Library/Preferences/.GlobalPreferences.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.itunescloud.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.inputAnalytics.IASGenmojiUsageAnalyzer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CommCenter.counts.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.driver.AppleHIDMouse.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mediaanalysisd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.itunesstored.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Accessibility.Assets.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ids.deviceproperties.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.inputAnalytics.IASImageGenerationCreationAnalyzer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dataaccess.babysitter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ncprefs.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.remindd.plist
|
||||||
|
/Users/rathi/Library/Preferences/desktop_sdk_macos_exe.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siriinferenced.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.passd.class-d.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.google.chrome.for.testing.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.airplay.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ActivityMonitor.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.EmojiPreferences.plist
|
||||||
|
/Users/rathi/Library/Preferences/ChatGPTHelper.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.MobileSMSPreview.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.PhotoBooth.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.gamecenter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.Guillemot.DJUCED.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.chunginlee.interviewcoder.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.googlecode.iterm2.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AppleMediaServices.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.exafunction.windsurf.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Safari.SafeBrowsing.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.GamePolicyAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imessage.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.frameworks.diskimages.diuiagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.metrickitd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.chat.RemoteFeatureFlags.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.rstudio.desktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.screencaptureui.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.photos.picker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cloudpaird.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dataaccess.dataaccessd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.ODDI.ExperimentationWorker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.wifi.WiFiAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/notion.id.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.accessory.Hearing.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.virtualbox.app.VirtualBox.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.icloud.searchpartyuseragent.plist
|
||||||
|
/Users/rathi/Library/Preferences/diagnostics_agent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.hegenberg.bettertouchtool-setapp.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SpeakSelection.plist
|
||||||
|
/Users/rathi/Library/Preferences/familycircled.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.homed.notbackedup.plist
|
||||||
|
/Users/rathi/Library/Preferences/corespotlightd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.StorageManagement.Service.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.NewDeviceOutreach.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.animoji.plist
|
||||||
|
/Users/rathi/Library/Preferences/pbs.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Messages.plist
|
||||||
|
/Users/rathi/Library/Preferences/CodexSkillManager.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.financed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.diagnosticextensionsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.textInput.keyboardServices.textReplacement.plist
|
||||||
|
/Users/rathi/Library/Preferences/ContextStoreAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Passwords.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iTunes.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AuthKit.AgeRangeSettingsCache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.amsaccountsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.hegenberg.BetterTouchTool.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imdsmsrecordstore.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iclouddrive.features.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AppleMediaServices.notbackedup.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.DialogEngine.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.WatchListKit.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.controlstrip.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iCloudNotificationAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Safari.SandboxBroker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.morphun.plist
|
||||||
|
/Users/rathi/Library/Preferences/python.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.gamed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.raycast.macos.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.install.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.contacts.postersyncd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.eigent.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ProblemReporter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.messages.nicknames.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TextInputMenu.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.electron.ui-launcher.plist
|
||||||
|
/Users/rathi/Library/Preferences/MiniLauncher.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.people.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.accessibility.heard.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.preferences.softwareupdate.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.donotdisturbd.plist
|
||||||
|
/Users/rathi/Library/Preferences/mpv.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.loginwindow.plist
|
||||||
|
/Users/rathi/Library/Preferences/systemgroup.com.apple.icloud.searchpartyd.sharedsettings.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.clawdbot.shared.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.speech.recognition.AppleSpeechRecognition.prefs.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AccessibilityHearingNearby.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.facetimemessagestored.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.weather.sensitive.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TelephonyUtilities.sharePlayAppPolicies.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appleintelligencereporting.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.pqrs.Karabiner-Updater.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.FileMerge.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.inputAnalytics.IASGenmojiAnalyzer.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.pqrs.Karabiner-EventViewer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.security.cloudkeychainproxy3.keysToRegister.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.commerce.configurator.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cameracapture.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AudioAccessory.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.chronod.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.assistant.backedup.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.openai.codex.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.serato.seratodj-monitor.plist
|
||||||
|
/Users/rathi/Library/Preferences/us.zoom.updater.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CharacterPaletteIM.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CharacterPicker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.oai.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.coreservices.uiagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.UnifiedAssetFramework.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.HIToolbox.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Wallpaper-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/org.torproject.torbrowser.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.PersonalAudio.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.speakerrecognition.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.registration.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iChat.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.LoginItems-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.amsengagementd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CrashReporter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ap.adprivacyd.plist
|
||||||
|
/Users/rathi/Library/Preferences/dev.warp.Warp-Stable.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.inputAnalytics.IASWTAnalyzer.plist
|
||||||
|
/Users/rathi/Library/Preferences/company.thebrowser.Browser.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV2
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.stickersd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.storeagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.controlcenter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.postmanlabs.mac.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.accounts.suggestions.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.commcenter.callservices.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.electron.rekordboxagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.wallpaper.aerial.plist
|
||||||
|
/Users/rathi/Library/Preferences/MobileMeAccounts.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appstored.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.sirisuggestions.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DuetExpertCenter.AppPredictionExpert.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appleaccount.informationcache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mmcs.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ServicesMenu.Services.plist
|
||||||
|
/Users/rathi/Library/Preferences/us.zoom.ZoomClips.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.preferences.extensions.ShareMenu.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.MobileSMS.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mlhost.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.autodesk.Autodesk Licensing Manager.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AuthenticationServicesCore.AuthenticationServicesAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.biomesyncd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SiriMetricsWorker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ScriptEditor2.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ScreenSharingSharedDefaults.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SetupAssistant.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.loom.desktop.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.stocks.account.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.driver.AppleBluetoothMultitouch.trackpad.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cloudd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.newscore2.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.GenerativeFunctions.GenerativeFunctionsInstrumentation.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.knowledge-agent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siriactionsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.xpc.activity2.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.generativeassistanttools.GenerativeAssistantExtension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.siri.ODDI.PoirotMetricsWorker.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.homeenergyd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.voiceservices.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.exafunction.windsurfNext.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.bird.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SpotlightResources.Defaults.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.IMCoreSpotlight.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.systemuiserver.plist
|
||||||
|
/Users/rathi/Library/Preferences/app.zen-browser.zen.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.jetpackassetd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.studentd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.remotemanagement.ManagedSettingsSubscriber.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Music.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.touchbar.agent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appstorecomponentsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Wallet.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.ColorSyncUtility.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.coreservices.useractivityd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Terminal.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.messages.critical-messaging.storage.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Displays-Settings.extension.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Safari.PasswordBreachAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.dimillian.codexskillmanager.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sidecar.display.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.HearingAids.plist
|
||||||
|
/Users/rathi/Library/Preferences/mbuseragent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.findmy.findmylocateagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.symbolichotkeys.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.MediaPlayer.RemotePlayerService.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.universalaccess.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.parsecd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.photos.shareddefaults.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.appleaccountd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.IMAutomaticHistoryDeletionAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.gmCache.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.homed.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DiskUtility.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.transparencyd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.dt.SKAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.BatteryCenter.BatteryWidget.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.quicklook.ThumbnailsAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.voicetrigger.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.TTY.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.sync.NanoHome.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.scriptmenu.plist
|
||||||
|
/Users/rathi/Library/Preferences/ai.mainfunc.genspark.browser.beta.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.networkserviceproxy.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DigitalColorMeter.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.cloudphotod.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imtranscoding.IMTranscoderAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.springboard.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.iChat.inputLine.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.mobiletimer.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.DictionaryServices.plist
|
||||||
|
/Users/rathi/Library/Preferences/abnerworks.Typora.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.Spotlight.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.identityservicesd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.paladin.SecureW2-JoinNow.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.messages.pinning.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.finder.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.assistantd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.bookstoreagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.SafariCloudHistoryPushAgent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.syncdefaultsd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.imservice.ids.FaceTime.plist
|
||||||
|
/Users/rathi/Library/Preferences/sharedfilelistd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.CloudSubscriptionFeatures.diagnostic.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.pioneer.FwDownloader.app.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.security.sosaccount.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.segment.storage.iPpQNH6wvMEPKjSpizGePwfn91Kk8ds9.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.replayd.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.AuthKit.plist
|
||||||
|
/Users/rathi/Library/Preferences/icloudmailagent.plist
|
||||||
|
/Users/rathi/Library/Preferences/com.apple.migrationhelper.plist
|
||||||
1
inventory/current/login-items.txt
Normal file
1
inventory/current/login-items.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Rectangle, Raycast, PastePal
|
||||||
0
inventory/current/nix-profile.txt
Normal file
0
inventory/current/nix-profile.txt
Normal file
43
inventory/current/npm-global.txt
Normal file
43
inventory/current/npm-global.txt
Normal file
|
|
@ -0,0 +1,43 @@
|
||||||
|
/opt/homebrew/lib
|
||||||
|
├── @anthropic-ai/claude-code@2.1.5
|
||||||
|
├── @augmentcode/auggie@0.4.0
|
||||||
|
├── @companion-ai/cli@0.1.10
|
||||||
|
├── @fission-ai/openspec@1.2.0
|
||||||
|
├── @googleworkspace/cli@0.8.1
|
||||||
|
├── @humanlayer/linear-cli@0.4.1
|
||||||
|
├── @humanlayer/rpi@0.7.0
|
||||||
|
├── @kubasync/cli@1.0.0 -> ./../../../Users/rathi/Documents/GitHub/kubasync/apps/cli
|
||||||
|
├── @letta-ai/letta-code@0.6.3
|
||||||
|
├── @mariozechner/pi-coding-agent@0.56.1
|
||||||
|
├── @mermaid-js/mermaid-cli@11.12.0
|
||||||
|
├── @polarityinc/paragon@0.1.1
|
||||||
|
├── @qodo/gen@0.20.2
|
||||||
|
├── @railway/cli@4.0.0
|
||||||
|
├── @shopify/cli@3.75.4
|
||||||
|
├── @shopify/theme@3.58.2
|
||||||
|
├── @withgraphite/graphite-cli@1.6.6
|
||||||
|
├── agent-browser@0.9.0
|
||||||
|
├── aws-cdk@2.1033.0
|
||||||
|
├── bun@1.2.8
|
||||||
|
├── claude-task-master@1.6.4
|
||||||
|
├── clawdbot@2026.1.15
|
||||||
|
├── corepack@0.31.0
|
||||||
|
├── cors@2.8.5
|
||||||
|
├── evaluclaude-harness@0.1.0 -> ./../../../Users/rathi/Documents/GitHub/evaluclaude-harness
|
||||||
|
├── express@4.21.2
|
||||||
|
├── happy-coder@0.13.0
|
||||||
|
├── markserv@1.17.4
|
||||||
|
├── moltbot@0.1.0
|
||||||
|
├── npm@10.9.2
|
||||||
|
├── osgrep@0.5.16
|
||||||
|
├── phia-partnerships@1.0.0 -> ./../../../Users/rathi/Documents/GitHub/phia/trending
|
||||||
|
├── pnpm@9.15.2
|
||||||
|
├── prisma@6.1.0
|
||||||
|
├── remodex@1.1.2
|
||||||
|
├── task-master-ai@0.13.1
|
||||||
|
├── task-master@2.3.0
|
||||||
|
├── vercel@50.28.0
|
||||||
|
├── ws@8.18.1
|
||||||
|
├── wscat@6.0.1
|
||||||
|
└── yarn@1.22.22
|
||||||
|
|
||||||
6
inventory/current/pipx.txt
Normal file
6
inventory/current/pipx.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
venvs are in /Users/rathi/.local/pipx/venvs
|
||||||
|
apps are exposed on your $PATH at /Users/rathi/.local/bin
|
||||||
|
manual pages are exposed at /Users/rathi/.local/share/man
|
||||||
|
package supabase-mcp-server 0.3.1, installed using Python 3.13.1
|
||||||
|
- supabase-mcp-inspector
|
||||||
|
- supabase-mcp-server
|
||||||
0
inventory/current/pnpm-global.txt
Normal file
0
inventory/current/pnpm-global.txt
Normal file
59
inventory/current/python-user-packages.txt
Normal file
59
inventory/current/python-user-packages.txt
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
annotated-types==0.7.0
|
||||||
|
anyio==4.10.0
|
||||||
|
boto3==1.42.7
|
||||||
|
botocore==1.42.7
|
||||||
|
cachetools==5.5.2
|
||||||
|
certifi==2025.8.3
|
||||||
|
charset-normalizer==3.4.3
|
||||||
|
click==8.1.8
|
||||||
|
deprecation==2.1.0
|
||||||
|
exceptiongroup==1.3.0
|
||||||
|
google-api-core==2.25.1
|
||||||
|
google-auth==2.40.3
|
||||||
|
google-cloud-bigquery==3.35.1
|
||||||
|
google-cloud-core==2.4.3
|
||||||
|
google-crc32c==1.7.1
|
||||||
|
google-resumable-media==2.7.2
|
||||||
|
googleapis-common-protos==1.70.0
|
||||||
|
grpcio==1.74.0
|
||||||
|
grpcio-status==1.74.0
|
||||||
|
h11==0.16.0
|
||||||
|
h2==4.2.0
|
||||||
|
hpack==4.1.0
|
||||||
|
httpcore==1.0.9
|
||||||
|
httpx==0.28.1
|
||||||
|
hyperframe==6.1.0
|
||||||
|
idna==3.10
|
||||||
|
iniconfig==2.1.0
|
||||||
|
jmespath==1.0.1
|
||||||
|
packaging==25.0
|
||||||
|
pluggy==1.6.0
|
||||||
|
postgrest==1.1.1
|
||||||
|
proto-plus==1.26.1
|
||||||
|
protobuf==6.32.0
|
||||||
|
pyasn1==0.6.1
|
||||||
|
pyasn1_modules==0.4.2
|
||||||
|
pydantic==2.11.7
|
||||||
|
pydantic_core==2.33.2
|
||||||
|
Pygments==2.19.2
|
||||||
|
PyJWT==2.10.1
|
||||||
|
pytest==8.4.2
|
||||||
|
python-dateutil==2.9.0.post0
|
||||||
|
python-dotenv==1.1.1
|
||||||
|
realtime==2.7.0
|
||||||
|
requests==2.32.5
|
||||||
|
rsa==4.9.1
|
||||||
|
ruff==0.14.9
|
||||||
|
s3transfer==0.16.0
|
||||||
|
sniffio==1.3.1
|
||||||
|
storage3==0.12.1
|
||||||
|
StrEnum==0.4.15
|
||||||
|
supabase==2.18.1
|
||||||
|
supabase_auth==2.12.3
|
||||||
|
supabase_functions==0.10.1
|
||||||
|
tomli==2.3.0
|
||||||
|
typing_extensions==4.14.1
|
||||||
|
typing-inspection==0.4.1
|
||||||
|
urllib3==1.26.20
|
||||||
|
uvicorn==0.38.0
|
||||||
|
websockets==15.0.1
|
||||||
108
inventory/current/repos-github.txt
Normal file
108
inventory/current/repos-github.txt
Normal file
|
|
@ -0,0 +1,108 @@
|
||||||
|
/Users/rathi/Documents/GitHub/short-video-maker
|
||||||
|
/Users/rathi/Documents/GitHub/Dawn-Website2-main
|
||||||
|
/Users/rathi/Documents/GitHub/humanlayer
|
||||||
|
/Users/rathi/Documents/GitHub/ralph-cli
|
||||||
|
/Users/rathi/Documents/GitHub/clank-artifacts
|
||||||
|
/Users/rathi/Documents/GitHub/openpoke
|
||||||
|
/Users/rathi/Documents/GitHub/eval-skill
|
||||||
|
/Users/rathi/Documents/GitHub/atlas-01
|
||||||
|
/Users/rathi/Documents/GitHub/untitledui-nextjs-starter-kit
|
||||||
|
/Users/rathi/Documents/GitHub/CodexMonitor
|
||||||
|
/Users/rathi/Documents/GitHub/agent-browser
|
||||||
|
/Users/rathi/Documents/GitHub/distributed-systems
|
||||||
|
/Users/rathi/Documents/GitHub/Twylo-agent
|
||||||
|
/Users/rathi/Documents/GitHub/thread-view
|
||||||
|
/Users/rathi/Documents/GitHub/vibe-with-ai-turbokit
|
||||||
|
/Users/rathi/Documents/GitHub/React Portfolio
|
||||||
|
/Users/rathi/Documents/GitHub/agentikube
|
||||||
|
/Users/rathi/Documents/GitHub/Resume-website
|
||||||
|
/Users/rathi/Documents/GitHub/befreed
|
||||||
|
/Users/rathi/Documents/GitHub/sire
|
||||||
|
/Users/rathi/Documents/GitHub/companion-skill
|
||||||
|
/Users/rathi/Documents/GitHub/nix
|
||||||
|
/Users/rathi/Documents/GitHub/interview-coder
|
||||||
|
/Users/rathi/Documents/GitHub/Habit-Tracker
|
||||||
|
/Users/rathi/Documents/GitHub/clawdbot
|
||||||
|
/Users/rathi/Documents/GitHub/claude-code-vertical
|
||||||
|
/Users/rathi/Documents/GitHub/Twylo
|
||||||
|
/Users/rathi/Documents/GitHub/FurniSwipe
|
||||||
|
/Users/rathi/Documents/GitHub/whitebox
|
||||||
|
/Users/rathi/Documents/GitHub/openclaw
|
||||||
|
/Users/rathi/Documents/GitHub/symphony
|
||||||
|
/Users/rathi/Documents/GitHub/inspector
|
||||||
|
/Users/rathi/Documents/GitHub/veet-code
|
||||||
|
/Users/rathi/Documents/GitHub/dueflow-admin
|
||||||
|
/Users/rathi/Documents/GitHub/web-ui
|
||||||
|
/Users/rathi/Documents/GitHub/claude-code-docs
|
||||||
|
/Users/rathi/Documents/GitHub/mixbridge
|
||||||
|
/Users/rathi/Documents/GitHub/claude-setup
|
||||||
|
/Users/rathi/Documents/GitHub/DynamicIslandToast
|
||||||
|
/Users/rathi/Documents/GitHub/tpm
|
||||||
|
/Users/rathi/Documents/GitHub/theburnouts
|
||||||
|
/Users/rathi/Documents/GitHub/agents inc
|
||||||
|
/Users/rathi/Documents/GitHub/evaluclaude-harness
|
||||||
|
/Users/rathi/Documents/GitHub/emails
|
||||||
|
/Users/rathi/Documents/GitHub/dueflow
|
||||||
|
/Users/rathi/Documents/GitHub/akupara
|
||||||
|
/Users/rathi/Documents/GitHub/gtmark
|
||||||
|
/Users/rathi/Documents/GitHub/codex
|
||||||
|
/Users/rathi/Documents/GitHub/GymSupps
|
||||||
|
/Users/rathi/Documents/GitHub/map-next-js
|
||||||
|
/Users/rathi/Documents/GitHub/OpenManus
|
||||||
|
/Users/rathi/Documents/GitHub/ai-scripts
|
||||||
|
/Users/rathi/Documents/GitHub/.claude
|
||||||
|
/Users/rathi/Documents/GitHub/justhtml
|
||||||
|
/Users/rathi/Documents/GitHub/midday
|
||||||
|
/Users/rathi/Documents/GitHub/uvacompute
|
||||||
|
/Users/rathi/Documents/GitHub/bolt.diy-main
|
||||||
|
/Users/rathi/Documents/GitHub/PersonalWebsite
|
||||||
|
/Users/rathi/Documents/GitHub/Axiom
|
||||||
|
/Users/rathi/Documents/GitHub/truman-backend
|
||||||
|
/Users/rathi/Documents/GitHub/BMAD-METHOD
|
||||||
|
/Users/rathi/Documents/GitHub/continual-learning
|
||||||
|
/Users/rathi/Documents/GitHub/rev
|
||||||
|
/Users/rathi/Documents/GitHub/SuperClaude_Framework
|
||||||
|
/Users/rathi/Documents/GitHub/imsg
|
||||||
|
/Users/rathi/Documents/GitHub/rpi-artifacts
|
||||||
|
/Users/rathi/Documents/GitHub/repo-summarizer-py
|
||||||
|
/Users/rathi/Documents/GitHub/delphi
|
||||||
|
/Users/rathi/Documents/GitHub/vex
|
||||||
|
/Users/rathi/Documents/GitHub/The-Truman-Project
|
||||||
|
/Users/rathi/Documents/GitHub/TickPickerView
|
||||||
|
/Users/rathi/Documents/GitHub/youtube-posting
|
||||||
|
/Users/rathi/Documents/GitHub/fireplexity
|
||||||
|
/Users/rathi/Documents/GitHub/goGreen-main
|
||||||
|
/Users/rathi/Documents/GitHub/kafka
|
||||||
|
/Users/rathi/Documents/GitHub/blendify-vibes
|
||||||
|
/Users/rathi/Documents/GitHub/autoMate
|
||||||
|
/Users/rathi/Documents/GitHub/hari-data-pipeline
|
||||||
|
/Users/rathi/Documents/GitHub/CodexSkillManager
|
||||||
|
/Users/rathi/Documents/GitHub/AI image editor
|
||||||
|
/Users/rathi/Documents/GitHub/phia
|
||||||
|
/Users/rathi/Documents/GitHub/lumen
|
||||||
|
/Users/rathi/Documents/GitHub/meta-vision-api
|
||||||
|
/Users/rathi/Documents/GitHub/diffs
|
||||||
|
/Users/rathi/Documents/GitHub/SupplMen
|
||||||
|
/Users/rathi/Documents/GitHub/clawd-stack
|
||||||
|
/Users/rathi/Documents/GitHub/memex
|
||||||
|
/Users/rathi/Documents/GitHub/system-design
|
||||||
|
/Users/rathi/Documents/GitHub/firecracker
|
||||||
|
/Users/rathi/Documents/GitHub/dots
|
||||||
|
/Users/rathi/Documents/GitHub/kubasync
|
||||||
|
/Users/rathi/Documents/GitHub/agent-orchestrator
|
||||||
|
/Users/rathi/Documents/GitHub/Atlas
|
||||||
|
/Users/rathi/Documents/GitHub/claude-statusline
|
||||||
|
/Users/rathi/Documents/GitHub/composio
|
||||||
|
/Users/rathi/Documents/GitHub/ship-fast-ts
|
||||||
|
/Users/rathi/Documents/GitHub/suna
|
||||||
|
/Users/rathi/Documents/GitHub/auto-school
|
||||||
|
/Users/rathi/Documents/GitHub/EstateAI
|
||||||
|
/Users/rathi/Documents/GitHub/x-bookmarks
|
||||||
|
/Users/rathi/Documents/GitHub/twylo-backend
|
||||||
|
/Users/rathi/Documents/GitHub/agentikube.coding
|
||||||
|
/Users/rathi/Documents/GitHub/loom
|
||||||
|
/Users/rathi/Documents/GitHub/remotion
|
||||||
|
/Users/rathi/Documents/GitHub/opencode
|
||||||
|
/Users/rathi/Documents/GitHub/znyie
|
||||||
|
/Users/rathi/Documents/GitHub/companion
|
||||||
|
/Users/rathi/Documents/GitHub/Solvex
|
||||||
9
inventory/current/repos-outside-github.txt
Normal file
9
inventory/current/repos-outside-github.txt
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
/Users/rathi/.config/nvim.bak
|
||||||
|
/Users/rathi/.kubasync/clank-artifacts
|
||||||
|
/Users/rathi/.oh-my-zsh
|
||||||
|
/Users/rathi/.veetcode
|
||||||
|
/Users/rathi/Documents/College
|
||||||
|
/Users/rathi/Documents/better
|
||||||
|
/Users/rathi/dev/diffs.nvim
|
||||||
|
/Users/rathi/dots
|
||||||
|
/Users/rathi/meta-agent
|
||||||
48
inventory/current/ruby-gems.txt
Normal file
48
inventory/current/ruby-gems.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
bigdecimal (default: 1.4.1)
|
||||||
|
bundler (default: 1.17.2)
|
||||||
|
CFPropertyList (2.3.6)
|
||||||
|
cmath (default: 1.0.0)
|
||||||
|
csv (default: 3.0.9)
|
||||||
|
date (default: 2.0.3)
|
||||||
|
dbm (default: 1.0.0)
|
||||||
|
did_you_mean (1.3.0)
|
||||||
|
e2mmap (default: 0.1.0)
|
||||||
|
etc (default: 1.0.1)
|
||||||
|
fcntl (default: 1.0.0)
|
||||||
|
fiddle (default: 1.0.0)
|
||||||
|
fileutils (default: 1.1.0)
|
||||||
|
forwardable (default: 1.2.0)
|
||||||
|
io-console (default: 0.4.7)
|
||||||
|
ipaddr (default: 1.2.2)
|
||||||
|
irb (default: 1.0.0)
|
||||||
|
json (default: 2.1.0)
|
||||||
|
libxml-ruby (3.2.1)
|
||||||
|
logger (default: 1.3.0)
|
||||||
|
matrix (default: 0.1.0)
|
||||||
|
mini_portile2 (2.8.0)
|
||||||
|
minitest (5.11.3)
|
||||||
|
mutex_m (default: 0.1.0)
|
||||||
|
net-telnet (0.2.0)
|
||||||
|
nokogiri (1.13.8)
|
||||||
|
openssl (default: 2.1.2)
|
||||||
|
ostruct (default: 0.1.0)
|
||||||
|
power_assert (1.1.3)
|
||||||
|
prime (default: 0.1.0)
|
||||||
|
psych (default: 3.1.0)
|
||||||
|
rake (12.3.3)
|
||||||
|
rdoc (default: 6.1.2.1)
|
||||||
|
rexml (default: 3.4.2)
|
||||||
|
rss (default: 0.2.7)
|
||||||
|
scanf (default: 1.0.0)
|
||||||
|
sdbm (default: 1.0.0)
|
||||||
|
shell (default: 0.7)
|
||||||
|
sqlite3 (1.3.13)
|
||||||
|
stringio (default: 0.0.2)
|
||||||
|
strscan (default: 1.0.0)
|
||||||
|
sync (default: 0.5.0)
|
||||||
|
test-unit (3.2.9)
|
||||||
|
thwait (default: 0.1.0)
|
||||||
|
tracer (default: 0.1.0)
|
||||||
|
webrick (default: 1.9.1)
|
||||||
|
xmlrpc (0.3.0)
|
||||||
|
zlib (default: 1.0.0)
|
||||||
1
inventory/current/system-computer-name.txt
Normal file
1
inventory/current/system-computer-name.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
hari-macbook-pro
|
||||||
1
inventory/current/system-hostname.txt
Normal file
1
inventory/current/system-hostname.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
hari-macbook-pro.local
|
||||||
1
inventory/current/system-local-host-name.txt
Normal file
1
inventory/current/system-local-host-name.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
hari-macbook-pro
|
||||||
3
inventory/current/system-sw_vers.txt
Normal file
3
inventory/current/system-sw_vers.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
ProductName: macOS
|
||||||
|
ProductVersion: 26.3
|
||||||
|
BuildVersion: 25D5112c
|
||||||
1
inventory/current/system-uname.txt
Normal file
1
inventory/current/system-uname.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Darwin hari-macbook-pro.local 25.3.0 Darwin Kernel Version 25.3.0: Thu Jan 22 21:54:23 PST 2026; root:xnu-12377.80.0.501.1~2/RELEASE_ARM64_T8132 arm64
|
||||||
5
inventory/current/uv-tools.txt
Normal file
5
inventory/current/uv-tools.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
mistral-vibe v1.0.4
|
||||||
|
- vibe
|
||||||
|
- vibe-acp
|
||||||
|
nano-pdf v0.2.1
|
||||||
|
- nano-pdf
|
||||||
108
scripts/snapshot-machine.sh
Executable file
108
scripts/snapshot-machine.sh
Executable file
|
|
@ -0,0 +1,108 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
repo_root="$(cd "$(dirname "$0")/.." && pwd)"
|
||||||
|
out_dir="${1:-$repo_root/inventory/current}"
|
||||||
|
|
||||||
|
mkdir -p "$out_dir"
|
||||||
|
|
||||||
|
run_to_file() {
|
||||||
|
local name="$1"
|
||||||
|
shift
|
||||||
|
"$@" >"$out_dir/$name"
|
||||||
|
}
|
||||||
|
|
||||||
|
run_shell_to_file() {
|
||||||
|
local name="$1"
|
||||||
|
local cmd="$2"
|
||||||
|
bash -lc "$cmd" >"$out_dir/$name"
|
||||||
|
}
|
||||||
|
|
||||||
|
cat >"$out_dir/README.md" <<EOF
|
||||||
|
# Machine Snapshot
|
||||||
|
|
||||||
|
Generated by \`scripts/snapshot-machine.sh\`.
|
||||||
|
|
||||||
|
These files are intentionally raw inventories of the current machine state.
|
||||||
|
They are meant to answer "what was on the box?" before a migration, not to be
|
||||||
|
hand-edited.
|
||||||
|
EOF
|
||||||
|
|
||||||
|
run_to_file system-uname.txt uname -a
|
||||||
|
run_to_file system-sw_vers.txt sw_vers
|
||||||
|
run_to_file system-computer-name.txt scutil --get ComputerName
|
||||||
|
run_to_file system-local-host-name.txt scutil --get LocalHostName
|
||||||
|
run_to_file system-hostname.txt hostname
|
||||||
|
|
||||||
|
run_to_file applications-system.txt ls -1 /Applications
|
||||||
|
run_to_file applications-user.txt ls -1 "$HOME/Applications"
|
||||||
|
run_shell_to_file applications-app-store.txt "mdfind 'kMDItemAppStoreHasReceipt==1' | sort"
|
||||||
|
|
||||||
|
run_to_file fonts-user.txt find "$HOME/Library/Fonts" -maxdepth 1 -type f
|
||||||
|
run_to_file fonts-system.txt find /Library/Fonts -maxdepth 1 -type f
|
||||||
|
|
||||||
|
run_to_file launchagents-user.txt find "$HOME/Library/LaunchAgents" -maxdepth 1 -type f
|
||||||
|
run_to_file launchagents-system.txt find /Library/LaunchAgents -maxdepth 1 -type f
|
||||||
|
run_to_file launchdaemons-system.txt find /Library/LaunchDaemons -maxdepth 1 -type f
|
||||||
|
run_shell_to_file login-items.txt "osascript -e 'tell application \"System Events\" to get the name of every login item' 2>/dev/null || true"
|
||||||
|
|
||||||
|
run_to_file home-top-level.txt find "$HOME" -maxdepth 1 -mindepth 1
|
||||||
|
run_to_file home-top-level-dirs.txt find "$HOME" -maxdepth 1 -mindepth 1 -type d
|
||||||
|
run_to_file home-top-level-files.txt find "$HOME" -maxdepth 1 \( -type f -o -type l \)
|
||||||
|
|
||||||
|
run_to_file dot-config-top.txt find "$HOME/.config" -maxdepth 2 -mindepth 1
|
||||||
|
run_to_file library-application-support-top.txt find "$HOME/Library/Application Support" -maxdepth 1 -mindepth 1 -type d
|
||||||
|
run_to_file library-preferences-top.txt find "$HOME/Library/Preferences" -maxdepth 1 -type f
|
||||||
|
|
||||||
|
run_to_file repos-github.txt find "$HOME/Documents/GitHub" -maxdepth 1 -mindepth 1 -type d
|
||||||
|
run_shell_to_file repos-outside-github.txt "find \"$HOME\" -maxdepth 3 -type d -name .git 2>/dev/null | sed 's#/.git\$##' | sort"
|
||||||
|
|
||||||
|
if command -v brew >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file brew-bundle.txt "brew bundle dump --force --file=-"
|
||||||
|
run_shell_to_file brew-formulae.txt "brew list --formula"
|
||||||
|
run_shell_to_file brew-casks.txt "brew list --cask"
|
||||||
|
run_shell_to_file brew-leaves.txt "HOMEBREW_NO_AUTO_UPDATE=1 brew leaves | sort"
|
||||||
|
run_shell_to_file brew-services.txt "brew services list"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v npm >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file npm-global.txt "npm ls -g --depth=0 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v pnpm >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file pnpm-global.txt "pnpm ls -g --depth=0 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v pipx >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file pipx.txt "pipx list 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v uv >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file uv-tools.txt "uv tool list 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v cargo >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file cargo-installs.txt "cargo install --list 2>/dev/null || true"
|
||||||
|
run_shell_to_file cargo-bin.txt "ls -1 \"$HOME/.cargo/bin\" 2>/dev/null | sort"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v go >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file go-env.txt "go env"
|
||||||
|
run_shell_to_file go-bin.txt "ls -1 \"\$(go env GOPATH 2>/dev/null)/bin\" 2>/dev/null | sort"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v python3 >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file python-user-packages.txt "python3 -m pip list --user --format=freeze 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v gem >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file ruby-gems.txt "gem list 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v nix >/dev/null 2>&1; then
|
||||||
|
run_shell_to_file nix-profile.txt "nix --extra-experimental-features 'nix-command flakes' profile list 2>/dev/null || true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Wrote snapshot to $out_dir"
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue