New to Claude Skills? Learn how to install them →

mukul975 on GitHub

Access Recertification with Saviynt

Free

Automate access review processes for compliance and security.

Get this skill

Free · Opens the source repo

What Access Recertification with Saviynt does

Access recertification is a critical process for organizations to ensure that users have appropriate access to sensitive systems and data. This skill enables you to configure and execute access recertification campaigns using Saviynt Enterprise Identity Cloud (EIC). By automating this process, it helps validate user entitlements, revoke excessive access, and maintain compliance with regulations such as SOX, SOC 2, and HIPAA.

The skill provides a structured approach to managing certification campaigns, allowing you to set up various campaign types based on user roles, entitlements, or application access. Campaigns can be configured to run on a schedule or triggered by specific events, such as role changes or department transfers. Saviynt's intelligence features, including risk scoring and usage analytics, assist certifiers in making informed decisions about user access.

When using this skill, you will be able to define campaign parameters, configure the certifier experience, and launch campaigns via API. This streamlines the entire lifecycle of access reviews, from configuration to remediation of access issues. It is particularly useful for security teams, compliance officers, and IT administrators who need to ensure that access rights are regularly reviewed and aligned with organizational policies.

This skill is designed for organizations that have a Saviynt EIC tenant and require a systematic approach to access governance. It is beneficial for those involved in security assessments, incident response, and compliance audits, ensuring that access controls are effectively validated and maintained.

When to use it

Use this skill when you need to conduct regular access reviews or respond to security incidents that involve user entitlements.

When not to use it

This skill may not be suitable for organizations without a Saviynt EIC tenant or those not focused on compliance-driven access management.

What you can build with it

Quarterly Access Reviews

Conduct regular access recertification campaigns every quarter to ensure users maintain appropriate access.

Incident Response

Utilize the skill during incident response to validate user access and remediate any excessive entitlements.

Compliance Audits

Leverage automated access reviews to gather documentation and evidence for compliance audits.

How to install Access Recertification with Saviynt

View source

1. Install with the skills CLI

npx skills add mukul975/anthropic-cybersecurity-skills/performing-access-recertification-with-saviynt --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by mukul975

Performing Access Recertification with Saviynt

Overview

Access recertification (also called access certification or access review) is a periodic process where designated reviewers validate that users have appropriate access to systems and data. Saviynt Enterprise Identity Cloud (EIC) automates this process through certification campaigns that present reviewers with current access assignments and collect approve/revoke/conditionally-certify decisions. Campaigns can be triggered on schedule (quarterly, semi-annually), event-driven (department transfer, role change), or on-demand. Saviynt provides intelligence features including risk scoring, usage analytics, and peer-group analysis to help reviewers make informed decisions.

When to Use

  • When conducting security assessments that involve performing access recertification with saviynt
  • When following incident response procedures for related security events
  • When performing scheduled security testing or auditing activities
  • When validating security controls through hands-on testing

Prerequisites

  • Saviynt Enterprise Identity Cloud (EIC) tenant with admin access
  • Identity data synchronized from authoritative sources (HR, AD, cloud)
  • Entitlement data imported from target applications
  • Certifier roles assigned (managers, application owners, data owners)
  • Campaign templates defined for each certification type

Core Concepts

Campaign Types

TypeScopeTriggerCertifier
User ManagerAll access for users under a managerScheduled (quarterly)Direct manager
Entitlement OwnerAll users with a specific entitlementScheduled (semi-annually)Entitlement/app owner
ApplicationAll access to a specific applicationScheduledApplication owner
Role-BasedAll users assigned to a specific roleScheduledRole owner
Event-BasedUsers whose attributes changedAttribute change triggerNew manager
Micro-CertificationSingle user, single entitlementOn-demandManager or owner

Certification Decisions

DecisionEffectUse Case
Certify (Approve)Access maintainedAccess is still required
RevokeAccess removal ticket createdAccess no longer needed
Conditionally CertifyAccess maintained with conditionsAccess needed temporarily, review again
DelegateReassign to another certifierCertifier lacks knowledge to decide
AbstainNo decision recordedConflict of interest

Campaign Lifecycle

CONFIGURATION → PREVIEW → ACTIVE → IN PROGRESS → COMPLETED → REMEDIATION
       │            │         │          │             │            │
       │            │         │          │             │            └── Revoke tickets
       │            │         │          │             │                executed
       │            │         │          │             │
       │            │         │          │             └── All decisions
       │            │         │          │                 collected
       │            │         │          │
       │            │         │          └── Certifiers reviewing
       │            │         │              and making decisions
       │            │         │
       │            │         └── Campaign launched,
       │            │             notifications sent
       │            │
       │            └── Read-only preview for validation
       │
       └── Campaign parameters defined

Workflow

Step 1: Configure Campaign Template

In Saviynt Admin Console:

  1. Navigate to Certifications > Campaign > Create New Campaign
  2. Define campaign parameters:
ParameterValue
Campaign NameQ1 2025 Manager Access Review
Campaign TypeUser Manager
DescriptionQuarterly review of all user access
Certifier TypeManager (dynamic - user's direct manager)
Secondary CertifierApplication Owner (fallback if manager unavailable)
Due Date14 days from launch
Reminder ScheduleDay 7, Day 10, Day 13
EscalationAuto-revoke on Day 15 if no decision
  1. Configure scope filters:

    • Include: All active users
    • Exclude: Service accounts, break-glass accounts
    • Application filter: All connected applications
  2. Configure intelligence features:

    • Enable risk scoring (high-risk entitlements highlighted)
    • Enable usage data (last access date shown)
    • Enable peer analysis (compare access to peer group)
    • Enable SoD violation flagging

Step 2: Configure Certifier Experience

Customize what certifiers see during the review:

Columns Displayed:

  • User name and title
  • Application name
  • Entitlement/role name
  • Risk score (1-10)
  • Last access date
  • Peer group comparison (% of peers with same access)
  • SoD violation flag

Decision Options:

  • Certify with justification (free text)
  • Revoke with reason (dropdown: no longer needed, SoD conflict, role change)
  • Conditionally certify with expiry date

Bulk Actions:

  • Certify all low-risk items
  • Revoke all items not accessed in 90+ days
  • Filter by application, risk level, or SoD status

Step 3: Launch Campaign via API

import requests

SAVIYNT_URL = "https://tenant.saviyntcloud.com"
SAVIYNT_TOKEN = "your-api-token"

def create_certification_campaign(campaign_config):
    """Create and launch a Saviynt certification campaign."""
    headers = {
        "Authorization": f"Bearer {SAVIYNT_TOKEN}",
        "Content-Type": "application/json"
    }

    # Create campaign
    response = requests.post(
        f"{SAVIYNT_URL}/ECM/api/v5/createCampaign",
        headers=headers,
        json={
            "campaignname": campaign_config["name"],
            "campaigntype": campaign_config["type"],
            "description": campaign_config["description"],
            "certifier": campaign_config["certifier_type"],
            "duedate": campaign_config["due_date"],
            "reminderdays": campaign_config["reminder_days"],
            "autorevoke": campaign_config.get("auto_revoke", True),
            "autorevokedays": campaign_config.get("auto_revoke_days", 15),
            "scope": campaign_config.get("scope", {}),
        }
    )
    response.raise_for_status()
    campaign_id = response.json().get("campaignId")

    # Launch campaign
    launch_response = requests.post(
        f"{SAVIYNT_URL}/ECM/api/v5/launchCampaign",
        headers=headers,
        json={"campaignId": campaign_id}
    )
    launch_response.raise_for_status()

    return {
        "campaign_id": campaign_id,
        "status": "launched",
        "certifications_created": launch_response.json().get("certificationCount", 0)
    }

def get_campaign_status(campaign_id):
    """Get current status and progress of a campaign."""
    headers = {"Authorization": f"Bearer {SAVIYNT_TOKEN}"}
    response = requests.get(
        f"{SAVIYNT_URL}/ECM/api/v5/getCampaignDetails",
        headers=headers,
        params={"campaignId": campaign_id}
    )
    response.raise_for_status()
    data = response.json()

    return {
        "campaign_id": campaign_id,
        "status": data.get("status"),
        "total_items": data.get("totalLineItems", 0),
        "certified": data.get("certifiedCount", 0),
        "revoked": data.get("revokedCount", 0),
        "pending": data.get("pendingCount", 0),
        "completion_rate": data.get("completionPercentage", 0),
    }

Step 4: Monitor Campaign Progress

Track certification progress and send escalations:

  • Dashboard: Saviynt provides real-time campaign dashboard with completion rates
  • Reminders: Automatic email reminders at configured intervals
  • Escalation: If certifier does not respond by due date, escalate to manager's manager or auto-revoke
  • Delegation: Allow certifiers to delegate specific items to application owners

Step 5: Execute Remediation

After campaign closes:

  1. Auto-Remediation: Saviynt automatically creates provisioning tasks to revoke denied access
  2. Ticket Integration: Revocation tasks create tickets in ServiceNow/Jira for tracking
  3. Grace Period: Configure a grace period (e.g., 5 business days) before access is actually removed
  4. Verification: After revocation, verify access is removed from target systems
  5. Audit Trail: All decisions, revocations, and remediations logged for compliance evidence

Validation Checklist

  • Campaign templates configured for each certification type
  • Certifier roles assigned (managers, app owners, data owners)
  • Risk scoring and usage analytics enabled
  • SoD violation detection configured
  • Reminder and escalation schedules defined
  • Auto-revoke policy for non-responsive certifiers configured
  • Campaign launched and certifiers notified
  • Campaign completion rate > 95% before close
  • Revocation tasks created for all denied entitlements
  • Remediation completed within SLA
  • Campaign report generated for compliance audit
  • Evidence archived for regulatory retention period

References

Frequently asked questions about Access Recertification with Saviynt

Similar skills