databricks-identity-network-security

databricks-identity-network-security is a skill for Claude Code from VincentChuWaiChow/vanguard-frontier-agentic. It costs 85 tokens per session (3,047 once invoked), scanned A, original, Apache-2.0.

A review guide for identity and network security in Databricks. It covers administrator roles, user-directory integration, service accounts, credentials, access restrictions, network policies, and secret handling.

In plain words
What is it for?
It helps review administrator separation, SCIM and federation setups, OAuth and personal-access-token use, credential lifecycles, IP access lists, serverless network policies, and secret scopes.
Why use it?
It helps prevent excessive access, unsafe credentials, weak network boundaries, and secrets appearing in logs. It also clarifies how different authentication and identity options should be used.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the vanguard-frontier-agentic plugin — 193 skills shipped together

Good fit It helps review administrator separation, SCIM and federation setups, OAuth and personal-access-token use, credential lifecycles, IP access lists, serverless network policies, and secret scopes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add VincentChuWaiChow/vanguard-frontier-agentic --skill databricks-identity-network-security
Clone the repo
git clone --depth 1 https://github.com/VincentChuWaiChow/vanguard-frontier-agentic

Made for: Claude Code.

Or install vanguard-frontier-agentic, the plugin that ships this one along with the rest of its 193 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for databricks-identity-network-security

README.md
[![agentmods](https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security/github.svg)](https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security)
Your own site
<a href="https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security"><img src="https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for databricks-identity-network-security

Your own site · 80×15
<a href="https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security"><img src="https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-identity-network-security.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,047 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 67
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 77
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 106
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.03047
Opus 5 $0.00043 $0.01523
Sonnet 5 $0.00017 $0.00609
Haiku 4.5 $0.00009 $0.00305

Measured 8d ago against content hash 9ff7b4f9347f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

databricks-identity-network-security scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/databricks/databricks-identity-network-security/SKILL.md · 144 lines

How it starts

The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.

databricks-identity-network-security

Purpose

This skill decides whether Databricks identity and network security are sound: admin roles are properly separated, external identity integration respects limits, credentials are managed securely, token lifecycle is enforced, network boundaries are properly configured, and secret redaction is safe. Security is correct only when account-admin scope is minimal, service principals are API-only, tokens auto-revoke after 90 days, IP access lists and network policies are properly layered, and redaction protects against all logging scenarios.

When to use

  • An organization is designing account admin and workspace admin roles and needs role-separation guidance.
  • A user is planning to integrate external identity (SCIM, OAuth, federation) and needs to understand limits and provider support.
  • A user is designing credential management for CI/CD, batch workloads, or programmatic access and needs service-principal guidance.
  • A user is implementing token lifecycle policy and needs to understand automatic revocation and inactivity periods.
  • A user is configuring IP access lists or serverless network policies and needs guidance on limits and evaluation order.

When NOT to use

  • No admin role assignments or identity configuration are provided — ask for them rather than assuming.
  • The request is to create, update, or rotate a token or credential — this is static review, not execution; the path is the live-guard gate.
  • The request is about GRANT hierarchy or privilege model — route to databricks-unity-catalog-governance-agent.
  • The request is about workspace topology or metastore strategy — route to databricks-platform-architecture-agent.
  • The request is about masking or data classification — route to databricks-data-protection-privacy-agent.
  • A token, OAuth client secret, or service-principal secret payload is included — deny and flag the exposure.

Scope

  • Admin role separation: account, workspace, metastore admins and their responsibilities.
  • SCIM and identity federation: user/group/service-principal limits, provider support, nested-group capability.
  • Service principal design and lifecycle: API-only access, CI/CD and batch patterns, secret rotation.
  • OAuth vs PAT: trade-offs, automatic revocation, inactivity period, admin-enforced max lifetime.
  • Account IP access lists: CIDR inventory, block-list evaluation order, PrivateLink bypass.
  • Serverless network policies: FQDN and storage allowlists, destination caps, propagation time.
  • Secret scopes and redaction: scope naming, permission model, redaction scope (literal value only).
  • Least-privilege identity patterns: smallest account-admin group, service-principal delegation.

Read the full file on GitHub · 144 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 144 lines · 85 tokens per session scan A 9ff7b4f9347f

Subscribe to this mod's changes

databricks-identity-network-security is a skill published in the GitHub repository VincentChuWaiChow/vanguard-frontier-agentic (22 stars, last pushed today), licensed Apache-2.0. It adds 85 tokens to every session and 3,047 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

auditing-azure-active-directory-configuration

Auditing Microsoft Entra ID (Azure Active Directory) configuration to identify risky authentication policies, overly permissive role assignments, stale accounts, conditional access gaps, and guest user risks using AzureAD PowerShell, Microsoft Graph API, and ScoutSuite.

Youngmaidainon/Agent-Level-Up · 58 tokens

analyzing-azure-activity-logs-for-threats

Queries Azure Monitor activity logs and sign-in logs via azure-monitor-query to detect suspicious administrative operations, impossible travel, privilege escalation, and resource modifications. Builds KQL queries for threat hunting in Azure environments. Use when investigating suspicious Azure tenant activity or…

Youngmaidainon/Agent-Level-Up · 68 tokens

detecting-misconfigured-azure-storage

Detecting misconfigured Azure Storage accounts including publicly accessible blob containers, missing encryption settings, overly permissive SAS tokens, disabled logging, and network access violations using Azure CLI, PowerShell, and Microsoft Defender for Storage.

xalgorix/xalgorix · 52 tokens

implementing-azure-defender-for-cloud

Implementing Microsoft Defender for Cloud to enable cloud security posture management, workload protection across VMs, containers, databases, and storage, configure security recommendations, and set up adaptive security controls with automated remediation.

xalgorix/xalgorix · 49 tokens

subdomain-takeover-hunt

Detect and verify subdomain takeover via dangling CNAME to unclaimed services.

uphiago/recon-skills · 23 tokens

detecting-azure-lateral-movement

Detect lateral movement in Azure AD/Entra ID environments using Microsoft Graph API audit logs, Azure Sentinel KQL hunting queries, and sign-in anomaly correlation to identify privilege escalation, token theft, and cross-tenant pivoting.

xalgorix/xalgorix · 54 tokens