Install
$ agentstack add skill-prasad-vennam-awesome-android-ai-agent-skills-android-google-workspace-expert ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Google Workspace Integration Expert 📅🔐
A robust guideline for implementing Google Workspace APIs (Calendar, Drive) in modern Android applications using Android's Credential Manager and secure OAuth scopes.
⚡ When to Use
- Google Sign-In: Authenticating users securely.
- Calendar Sync: Reading/writing events to the user's Google Calendar.
- Drive Backup: Saving or restoring app data via Google Drive.
🔑 Rule 1: Modern Authentication (Credential Manager)
Google has deprecated legacy Google Sign-In (GoogleSignInClient). You MUST use Android's CredentialManager API for requesting permissions and access tokens.
Scopes for Calendar
If an agent needs to add a Todo item to a calendar, request:
private val SCOPES = listOf("https://www.googleapis.com/auth/calendar.events")
📅 Rule 2: Google Calendar Integration
Anti-Pattern: NEVER manually craft HTTP requests to www.googleapis.com/calendar/v3/.... This invites token expiration crashes and parsing errors.
The Architect Standard: Use the official Google API Client Libraries for Android.
- Add dependencies in
build.gradle.kts:
``kotlin implementation("com.google.api-client:google-api-client-android:1.33.0") implementation("com.google.apis:google-api-services-calendar:v3-rev411-1.25.0") ``
- Construct the Calendar Client securely:
```kotlin val credential = GoogleAccountCredential.usingOAuth2(context, listOf(CalendarScopes.CALENDAR_EVENTS)) credential.selectedAccount = account.account // from CredentialManager
val service = Calendar.Builder( com.google.api.client.extensions.android.http.AndroidHttp.newCompatibleTransport(), com.google.api.client.json.gson.GsonFactory.getDefaultInstance(), credential ).setApplicationName("TodoApp").build() ```
🔄 Rule 3: Background Sync via WorkManager
Never sync to Google Calendar on the main thread or directly from the UI layer. Ensure event-creation happens in the background.
class CalendarSyncWorker(context: Context, params: WorkerParameters) : CoroutineWorker(context, params) {
override suspend fun doWork(): Result = withContext(Dispatchers.IO) {
val todoId = inputData.getString("TODO_ID") ?: return@withContext Result.failure()
try {
val event = Event().apply {
summary = "Complete Todo: $todoId"
start = EventDateTime().setDateTime(DateTime(System.currentTimeMillis()))
end = EventDateTime().setDateTime(DateTime(System.currentTimeMillis() + 3600000))
}
// service is injected
service.events().insert("primary", event).execute()
Result.success()
} catch (e: Exception) {
Result.retry() // WorkManager will automatically retry on network failure!
}
}
}
🛑 Common Hallucinations to Avoid
- API Keys: Google Workspace APIs (Calendar/Drive) require OAuth 2.0 Client IDs, NOT restricted API Keys.
- Intent Fallback: If a user is not signed in to a Google Account, you cannot blindly fire the Calendar Client. You must intercept the
UserRecoverableAuthIOExceptionto re-prompt the user to sign in.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: prasad-vennam
- Source: prasad-vennam/Awesome-Android-AI-Agent-Skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.