From e108f8a8da3772cd0919112f13f5fb62f9d2cd2e Mon Sep 17 00:00:00 2001 From: WLTBAgent Date: Fri, 20 Feb 2026 17:23:18 +0000 Subject: [PATCH] Initial commit: Nextcloud integration with Files, Contacts, Calendar, and Mail - CLI tools: nextcloud-client, nextcloud-contacts, nextcloud-calendar, nextcloud-mail - Build script with compile-time credentials - Skills for all four tools - Full documentation and examples - Email tool supports IMAP/SMTP with attachment download - SSL/TLS support with optional certificate validation --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d47e6e --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Credentials and sensitive data +CREDENTIALS.md + +# Compiled binaries +tools/go/*/nextcloud-* + +# Go build artifacts +tools/go/*/*.exe +tools/go/*/*.exe~ +tools/go/*/*.dll +tools/go/*/*.so +tools/go/*/*.dylib +tools/go/*/bin/ +tools/go/*/dist/ + +# Test binaries +tools/go/*/*-test + +# Go module cache +tools/go/*/go.sum + +# IDE files +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# OS files +.DS_Store +Thumbs.db