identity-access-management
Set up and manage SSO, SCIM provisioning, and MFA for startup teams using Google Workspace, Okta, or Azure AD. Use when centralizing authentication, onboarding SSO, or meeting compliance requirements.
What this skill does
# Identity & Access Management for Startups Centralized identity management is not optional once your team exceeds a handful of people. This skill covers practical, production-ready configurations for SSO, SCIM provisioning, MFA enforcement, and access governance using the three most common identity providers for startups: Google Workspace, Okta, and Azure AD (Entra ID). --- ## 1. When to Use This Skill Reach for this skill when: - **First SSO setup** -- You are moving from individual app logins to centralized authentication. - **Compliance audit preparation** -- SOC 2, ISO 27001, or HIPAA requires documented access controls, MFA enforcement, and audit logs. - **Team growth inflection** -- You are crossing 15-20 employees and manual onboarding/offboarding is becoming error-prone. - **Vendor security questionnaires** -- Customers are asking about your identity posture and you need to demonstrate controls. - **Incident response** -- You need to revoke access quickly across all systems for a departing or compromised user. Signs you are overdue: - Shared passwords in a spreadsheet or chat channel. - No central audit log of who accessed what and when. - Offboarding takes more than one business day. - Developers have standing admin access to production. --- ## 2. Google Workspace as Identity Provider Google Workspace is the most common starting IdP for startups. Combined with the GAM CLI tool, it provides powerful automation. ### Install GAM (Google Apps Manager) ```bash # Install GAM on Linux/macOS bash <(curl -s -S -L https://gam-shortn.appspot.com/gam-install) # Authorize GAM with your Workspace domain gam oauth create # Verify connection gam info domain ``` ### Create Organizational Units Organizational units (OUs) control policy inheritance and app access. ```bash # Create OUs for team structure gam create org "Engineering" gam create org "Engineering/Backend" gam create org "Engineering/Frontend" gam create org "Operations" gam create org "Operations/IT" gam create org "Finance" gam create org "Contractors" # Move a user into an OU gam update user [email protected] org "Engineering/Backend" # List all OUs gam print orgs ``` ### Configure a SAML App in Google Workspace ```bash # Export the Google IdP metadata (download from Admin Console or use GAM) # Admin Console: Apps > Web and mobile apps > Add app > Search for app > Download IdP metadata # For a custom SAML app, you need: # 1. ACS URL (from the service provider) # 2. Entity ID (from the service provider) # 3. Name ID format (usually EMAIL) # Example: Add a custom SAML app via Admin Console API gam create samlapp "Internal Dashboard" \ acs_url "https://dashboard.company.com/saml/acs" \ entity_id "https://dashboard.company.com" \ name_id_format "EMAIL" \ name_id "user.primaryEmail" # Assign the app to an OU gam update samlapp "Internal Dashboard" org "Engineering" enabled on # Verify SAML app status gam print samlappinfo "Internal Dashboard" ``` ### SCIM Provisioning with Google Workspace ```bash # Enable auto-provisioning for supported apps # Google Workspace supports automatic user provisioning for apps like: # Slack, Zoom, Box, Dropbox, Asana, GitHub Enterprise # List provisioned apps gam print tokens # Force sync provisioning for an app gam sync samlapp "Slack" users # Bulk create users from CSV # users.csv format: firstname,lastname,email,org,password gam csv users.csv gam create user ~email \ firstname ~firstname lastname ~lastname \ password ~password org ~org \ changepassword on ``` ### Enforce MFA at the Workspace Level ```bash # Enforce 2-step verification for the entire domain gam update org "/" 2sv enforced # Enforce 2SV for a specific OU gam update org "Engineering" 2sv enforced # Set enforcement date (give users time to enroll) gam update org "/" 2sv enforced enforceddate 2026-04-15 # Check 2SV enrollment status for all users gam print users fields isEnforcedIn2Sv,isEnrolledIn2Sv # Find users who have NOT enrolled in 2SV gam print users query "isEnrolledIn2Sv=false" fields primaryEmail,name ``` --- ## 3. Okta Setup Okta offers a free tier for startups (Okta for Startups program -- up to 100 users) making it an excellent choice for teams that need a dedicated IdP. ### Initial Okta Configuration via API ```bash # Set your Okta domain and API token export OKTA_ORG_URL="https://company.okta.com" export OKTA_API_TOKEN="your-api-token" # Verify connectivity curl -s -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ "${OKTA_ORG_URL}/api/v1/org" | jq '.companyName' # Create a user curl -s -X POST \ -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ -H "Content-Type: application/json" \ "${OKTA_ORG_URL}/api/v1/users?activate=true" \ -d '{ "profile": { "firstName": "Alice", "lastName": "Engineer", "email": "[email protected]", "login": "[email protected]" }, "credentials": { "password": { "value": "TempP@ss123!" } } }' | jq '.id' ``` ### Create Groups for RBAC ```bash # Create groups for group in "Engineering" "Operations" "Finance" "Contractors" "AdminAccess"; do curl -s -X POST \ -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ -H "Content-Type: application/json" \ "${OKTA_ORG_URL}/api/v1/groups" \ -d "{\"profile\": {\"name\": \"${group}\", \"description\": \"${group} team group\"}}" \ | jq '{id: .id, name: .profile.name}' done # Add user to group USER_ID="00u1abc123" GROUP_ID="00g1def456" curl -s -X PUT \ -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ "${OKTA_ORG_URL}/api/v1/groups/${GROUP_ID}/users/${USER_ID}" ``` ### Add a SAML Application in Okta ```bash # Create a SAML 2.0 application curl -s -X POST \ -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ -H "Content-Type: application/json" \ "${OKTA_ORG_URL}/api/v1/apps" \ -d '{ "name": "custom_saml_app", "label": "Internal Dashboard", "signOnMode": "SAML_2_0", "settings": { "signOn": { "defaultRelayState": "", "ssoAcsUrl": "https://dashboard.company.com/saml/acs", "audience": "https://dashboard.company.com", "recipient": "https://dashboard.company.com/saml/acs", "destination": "https://dashboard.company.com/saml/acs", "subjectNameIdFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress", "attributeStatements": [ { "type": "EXPRESSION", "name": "email", "namespace": "urn:oasis:names:tc:SAML:2.0:attrname-format:basic", "values": ["user.email"] }, { "type": "EXPRESSION", "name": "groups", "namespace": "urn:oasis:names:tc:SAML:2.0:attrname-format:basic", "values": ["getFilteredGroups({\"00g1def456\"}, \"group.name\", 50)"] } ] } } }' | jq '{id: .id, label: .label, status: .status}' # Assign group to application APP_ID="0oa1xyz789" curl -s -X PUT \ -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ -H "Content-Type: application/json" \ "${OKTA_ORG_URL}/api/v1/apps/${APP_ID}/groups/${GROUP_ID}" ``` ### Okta MFA Policy ```bash # Create an MFA enrollment policy requiring WebAuthn + TOTP curl -s -X POST \ -H "Authorization: SSWS ${OKTA_API_TOKEN}" \ -H "Content-Type: application/json" \ "${OKTA_ORG_URL}/api/v1/policies" \ -d '{ "type": "MFA_ENROLL", "name": "Require Strong MFA", "status": "ACTIVE", "settings": { "factors": { "webauthn": { "enroll": { "self": "REQUIRED" } }, "google_otp": { "enroll": { "self": "OPTIONAL" } }, "okta_email": { "enroll": { "self": "NOT_ALLOWED" } }, "okta_sms": { "enroll": { "self": "NOT_ALLOWED" } } } } }' | jq '{id: .id, name: .name, status: .status}' ``` --- ## 4. Azure AD / Entra ID Azure AD (now Microsoft Entra ID) is common at startups using Microsoft 365 or Azure cloud. ### Azure CLI Setup ```bash # Install Azure CLI and sign in az login # Set the default tena
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".