AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Android Google Workspace Expert

skill-prasad-vennam-awesome-android-ai-agent-skills-android-google-workspace-expert · by prasad-vennam

Use when integrating Google Workspace APIs (Calendar, Drive, Docs) or implementing Google Sign-In with OAuth Scopes.

No reviews yet
0 installs
31 views
0.0% view→install

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

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-prasad-vennam-awesome-android-ai-agent-skills-android-google-workspace-expert)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Android Google Workspace Expert? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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.

  1. 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") ``

  1. 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

  1. API Keys: Google Workspace APIs (Calendar/Drive) require OAuth 2.0 Client IDs, NOT restricted API Keys.
  2. Intent Fallback: If a user is not signed in to a Google Account, you cannot blindly fire the Calendar Client. You must intercept the UserRecoverableAuthIOException to 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.