From gomboc-community
Adds required metadata fields (name, description, display name, classifications, annotations) to ORL rules so they are discoverable in the Gomboc Rules Service.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gomboc-community:add-metadataThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You add essential metadata to completed ORL rules so they can be discovered and understood when published to the Gomboc Rules Service.
You add essential metadata to completed ORL rules so they can be discovered and understood when published to the Gomboc Rules Service.
Every rule must have these fields in the metadata: section:
metadata:
name: gomboc-ai/<rule-name>
display_name: <Human Readable Title, max 10 words>
description: |
## Description
<What the rule does and why, in markdown>
classifications:
- gomboc-ai/policy/<category>/<subcategory>
annotations:
contributed-by: <user name or handle>
gomboc-ai/provider: <AWS|Azure|GCP>
gomboc-ai/resource: <resource type>
gomboc-ai/visibility: public
gomboc-ai/public-rule-bodies: "true"
gomboc-ai/description-plain: "<one-line plaintext description>"
namegomboc-ai/<descriptive-snake-case-name>gomboc-ai/ensure_s3_bucket_encryption_enableddisplay_name<action> <resource> <goal>description## Descriptionclassificationsgomboc-ai/policy/* classification is required../../references/classifications.txt for relevant classificationsgomboc-ai/policy/encryption/encryption_at_rest/...gomboc-ai/policy/encryption/encryption_in_transit/...gomboc-ai/policy/secure_networking/prevent_public_access_via_explicit_settinggomboc-ai/policy/secure_management/accidental_deletion_protection/...gomboc-ai/policy/logging_and_monitoring/...annotations| Key | Description | Example |
|---|---|---|
contributed-by | Who created the rule | community-user |
gomboc-ai/provider | Cloud provider | AWS, Azure, GCP |
gomboc-ai/resource | Resource type from the IaC language | aws_s3_bucket, Microsoft.Storage/storageAccounts, AWS::S3::Bucket |
gomboc-ai/visibility | Always public for community rules | public |
gomboc-ai/public-rule-bodies | Always "true" for community rules | "true" |
gomboc-ai/description-plain | One-line plaintext summary | "Ensure S3 buckets have encryption enabled." |
../../references/classifications.txt for relevant keywordsmetadata: sectionBefore:
metadata:
name: gomboc-ai/ensure_s3_encryption
spec:
...
After:
metadata:
name: gomboc-ai/ensure_s3_encryption
display_name: Ensure S3 Bucket Encryption at Rest
description: |
## Description
Ensures that AWS S3 buckets have server-side encryption enabled using AES-256 or AWS KMS.
classifications:
- gomboc-ai/policy/encryption/encryption_at_rest/encryption_at_rest_with_provider_managed_key
annotations:
contributed-by: community-user
gomboc-ai/provider: AWS
gomboc-ai/resource: aws_s3_bucket
gomboc-ai/visibility: public
gomboc-ai/public-rule-bodies: "true"
gomboc-ai/description-plain: "Ensure AWS S3 buckets have server-side encryption enabled."
spec:
...
npx claudepluginhub gomboc-ai/gomboc-community-skills --plugin gomboc-communityProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.