├── .editorconfig ├── .gitignore ├── .gitmodules ├── .tangled └── workflows │ └── build.yaml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── atfile.code-workspace ├── atfile.sh ├── examples └── example.sh └── src ├── commands ├── ai.sh ├── auth.sh ├── bsky_profile.sh ├── help.sh ├── install.sh ├── now.sh ├── old_cmds.sh ├── record.sh ├── release.sh ├── resolve.sh ├── something_broke.sh ├── stream.sh ├── token.sh └── update.sh ├── entry.sh ├── lexi ├── app_bsky.sh ├── blue_zio_atfile.sh └── com_atproto.sh └── shared ├── cache.sh ├── die.sh ├── http.sh ├── invoke.sh ├── say.sh ├── util.sh └── xrpc.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tangled/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/.tangled/workflows/build.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/README.md -------------------------------------------------------------------------------- /atfile.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/atfile.code-workspace -------------------------------------------------------------------------------- /atfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/atfile.sh -------------------------------------------------------------------------------- /examples/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/examples/example.sh -------------------------------------------------------------------------------- /src/commands/ai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/ai.sh -------------------------------------------------------------------------------- /src/commands/auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/auth.sh -------------------------------------------------------------------------------- /src/commands/bsky_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/bsky_profile.sh -------------------------------------------------------------------------------- /src/commands/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/help.sh -------------------------------------------------------------------------------- /src/commands/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/install.sh -------------------------------------------------------------------------------- /src/commands/now.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/now.sh -------------------------------------------------------------------------------- /src/commands/old_cmds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/old_cmds.sh -------------------------------------------------------------------------------- /src/commands/record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/record.sh -------------------------------------------------------------------------------- /src/commands/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/release.sh -------------------------------------------------------------------------------- /src/commands/resolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/resolve.sh -------------------------------------------------------------------------------- /src/commands/something_broke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/something_broke.sh -------------------------------------------------------------------------------- /src/commands/stream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/stream.sh -------------------------------------------------------------------------------- /src/commands/token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/token.sh -------------------------------------------------------------------------------- /src/commands/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/commands/update.sh -------------------------------------------------------------------------------- /src/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/entry.sh -------------------------------------------------------------------------------- /src/lexi/app_bsky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/lexi/app_bsky.sh -------------------------------------------------------------------------------- /src/lexi/blue_zio_atfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/lexi/blue_zio_atfile.sh -------------------------------------------------------------------------------- /src/lexi/com_atproto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/lexi/com_atproto.sh -------------------------------------------------------------------------------- /src/shared/cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/cache.sh -------------------------------------------------------------------------------- /src/shared/die.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/die.sh -------------------------------------------------------------------------------- /src/shared/http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/http.sh -------------------------------------------------------------------------------- /src/shared/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/invoke.sh -------------------------------------------------------------------------------- /src/shared/say.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/say.sh -------------------------------------------------------------------------------- /src/shared/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/util.sh -------------------------------------------------------------------------------- /src/shared/xrpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziodotsh/atfile/HEAD/src/shared/xrpc.sh --------------------------------------------------------------------------------