Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

preparing-compliance-documentation准备合规文件

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

315

周安装

13

GitHub Stars

9

下载量

103
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:preparing-compliance-documentation(准备合规文件)
来源仓库:https://github.com/cockroachlabs/cockroachdb-skills
仓库路径:skills/preparing-compliance-documentation
安装命令:
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill preparing-compliance-documentation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cockroachlabs/cockroachdb-skills --skill preparing-compliance-documentation

简介

preparing-compliance-documentation 用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写,适合让 Agent 提炼结构、补齐章节、统一术语或检查链接。

  • 适用于研究检索类任务,使用时应保留项目已有事实、命令和路径,避免写成确定结论。
  • 涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Preparing Compliance Documentation

Guides the preparation of compliance documentation for CockroachDB Cloud deployments by identifying available certifications, mapping security features to compliance controls, and providing a configuration checklist for compliance readiness. Covers SOC 2 Type II, PCI DSS, ISO 27001, HIPAA, and GDPR.

When to Use This Skill

  • Responding to customer security questionnaires about CockroachDB Cloud
  • Preparing for SOC 2, PCI DSS, or HIPAA compliance audits
  • Locating CockroachDB Cloud certification documents (SOC 2 reports, PCI AOC, ISO certificates)
  • Assessing whether a cluster's configuration meets a specific compliance framework
  • Understanding which compliance features are available on each CockroachDB Cloud plan

Prerequisites

  • CockroachDB Cloud account — Any plan
  • Cloud Console access — For downloading compliance documents
  • Understanding of your compliance requirements — Which frameworks apply to your organization

Steps

1. Identify Available Certifications

CockroachDB Cloud maintains the following certifications and attestations:

CertificationTypeScopeWhere to Find
SOC 2 Type IIAttestation reportCloud infrastructure and operationsTrust Center or request via support
PCI DSSCertificate of Compliance (AOC)Payment data processingTrust Center or request via support
ISO 27001CertificationInformation security managementTrust Center or request via support
HIPAABAA eligibilityProtected health informationContact sales for BAA execution
GDPRComplianceEU personal data protectionDPA available on request

CockroachDB Cloud Trust Center: The Trust Center is the primary location for downloading compliance documents. Access it via the Cloud Console or request documents through a support ticket.

2. Map Compliance Controls to CockroachDB Features

See compliance matrix reference for a detailed mapping of compliance controls to CockroachDB features.

SOC 2 — Key Controls

Control AreaCockroachDB FeatureConfiguration Required
Access ControlRBAC, SSO, SCIMConfigure roles, enable SSO
EncryptionTLS (always on), CMEKEnable CMEK on Advanced plan
Audit LoggingSQL audit logging, log exportEnable audit logging + log export
Network SecurityIP allowlists, private endpointsConfigure network restrictions
AvailabilityMulti-region, managed backupsBuilt-in on all plans
Change ManagementCluster versioning, TerraformUse IaC for cluster management

PCI DSS — Key Requirements

RequirementCockroachDB FeatureNotes
Req 1: Network SecurityIP allowlists, private endpointsRestrict access to cardholder data environment
Req 3: Protect Stored DataEncryption at rest (default), CMEKCMEK provides key control
Req 4: Encrypt TransmissionTLS (always on)Enforced by default
Req 7: Restrict AccessRBAC, least privilegeUse hardening-user-privileges skill
Req 8: Identify UsersSQL users, SSO, MFAEnable SSO with MFA at IdP
Req 10: Track AccessAudit logging, log exportEnable and export audit logs

HIPAA — Key Safeguards

SafeguardCockroachDB FeatureNotes
Access ControlRBAC, SSOImplement least privilege
Audit ControlsAudit logging, log exportExport to SIEM
IntegrityChecksums, replicationBuilt-in data integrity
Transmission SecurityTLS (always on)Enforced by default
EncryptionEncryption at rest, CMEKCMEK for key control

HIPAA requirement: A Business Associate Agreement (BAA) must be executed with Cockroach Labs before storing PHI. Contact your account team to execute a BAA.

3. Assess Cluster Configuration for Compliance

Use this checklist to evaluate whether a cluster meets common compliance requirements:

Baseline (All Frameworks)

-- Check password policy
SHOW CLUSTER SETTING server.user_login.min_password_length;
-- Should be >= 12

-- Check admin user count
SELECT COUNT(*) AS admin_count FROM [SHOW GRANTS ON ROLE admin];
-- Should be minimized (1-3)

-- Check audit logging
SHOW CLUSTER SETTING sql.log.admin_audit.enabled;
SHOW CLUSTER SETTING sql.log.user_audit;
-- Should be enabled

-- Check PUBLIC role privileges
SELECT database_name, privilege_type
FROM [SHOW GRANTS FOR public]
WHERE privilege_type NOT IN ('USAGE')
  AND schema_name = 'public';
-- Should return no rows for application databases
# Check network security
ccloud cluster networking allowlist list <cluster-id> -o json
# Should NOT contain 0.0.0.0/0

# Check SSO configuration (Cloud Console)
# Verify in Cloud Console > Organization Settings > Authentication

# Check CMEK (Advanced plan)
ccloud cluster info <cluster-name> -o json
# Check for cmek_config

# Check log export (Advanced plan)
# Look for log_export_config in cluster info output

Advanced Compliance (SOC 2 + PCI DSS + HIPAA)

CheckCommand/LocationExpected State
SSO enabledCloud ConsoleEnabled and enforced
SCIM provisioningCloud ConsoleEnabled
CMEK enabledccloud cluster infoEnabled with valid key
Audit loggingSQL: SHOW CLUSTER SETTING sql.log.admin_audit.enabledtrue
Log exportccloud cluster infoConfigured and ENABLED
IP allowlistccloud cluster networking allowlist listNo 0.0.0.0/0
Private endpointsCloud Console: Networking > Private endpointConfigured (recommended)
Password policySQL: min_password_length>= 12
Admin countSQL: admin role grants<= 3
PUBLIC privilegesSQL: SHOW GRANTS FOR publicMinimal

4. Respond to Security Questionnaires

When responding to customer or auditor questionnaires, reference these standard answers:

Encryption at rest:

  • CockroachDB Cloud encrypts all data at rest using AES-256
  • CMEK is available on Advanced plan with Advanced Security Add-on for customer-controlled keys
  • Key management follows cloud provider best practices (AWS KMS, GCP Cloud KMS, Azure Key Vault)

Encryption in transit:

  • TLS 1.2+ is enforced on all connections — cannot be disabled
  • Client certificate authentication (mTLS) is supported

Data residency:

  • Clusters can be deployed in specific regions to meet data residency requirements
  • Multi-region clusters keep data within specified regions

Backup and recovery:

  • Managed backups are automatic on all plans
  • RPO and RTO depend on plan type and configuration
  • Backups are encrypted and stored in the same cloud provider

Incident response:

  • Cockroach Labs maintains a documented incident response plan
  • Details are available in the SOC 2 Type II report

5. Prepare for Compliance Audits

Before the audit:

  1. Run the auditing-cloud-cluster-security skill to identify gaps
  2. Remediate any FAIL findings using the linked remediation skills
  3. Download current compliance documents from the Trust Center
  4. Document your CockroachDB Cloud configuration with screenshots or Terraform state

During the audit:

  1. Provide the SOC 2 Type II report to demonstrate CockroachDB Cloud's controls
  2. Show your cluster configuration (security audit report) to demonstrate your controls
  3. Demonstrate audit log export and review capability
  4. Show RBAC configuration and access control policies

Compliance documents to have ready:

  • SOC 2 Type II report (from Trust Center)
  • PCI AOC (if processing payment data)
  • ISO 27001 certificate (if required)
  • BAA (if storing PHI — executed with Cockroach Labs)
  • DPA (if processing EU personal data)
  • Your security audit report (from auditing-cloud-cluster-security skill)

Safety Considerations

  • This skill is read-only. No cluster configuration is modified.
  • Compliance documents may be confidential. Handle SOC 2 reports and PCI AOCs according to your organization's information classification policy.
  • Compliance is shared responsibility. CockroachDB Cloud provides the platform controls; your organization is responsible for configuring and using them correctly.

References

Skill references:

Related skills:

Official CockroachDB Documentation:

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.36%
按下载量换算36

Claude

29.15%
按下载量换算30

Cursor

19.13%
按下载量换算20

Gemini CLI

8.78%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills