armor-tags
Classify and govern data with tags. Handles "tag this table as PII", "apply financial tag", "list tags", "classify data", "add governance label".
What this skill does
# Data Classification with Tags
Organize and classify database objects with tags for governance, compliance, and business categorization.
## Prerequisites
- AnomalyArmor API key configured (`~/.armor/config.yaml` or `ARMOR_API_KEY` env var)
- Python SDK installed (`pip install anomalyarmor`)
## When to Use
- "Tag this table as PII"
- "Apply financial reporting tag"
- "List all tags for this asset"
- "Mark these columns as sensitive"
- "Classify this data as confidential"
- "Add governance labels"
## Concepts
### Tag Categories
- **business**: Business domain tags (e.g., "finance", "marketing", "sales")
- **technical**: Technical classification (e.g., "fact_table", "dimension", "staging")
- **governance**: Compliance and security (e.g., "pii", "confidential", "gdpr")
### Tag Scope
Tags can be applied to:
- **Tables**: Full table classification
- **Columns**: Column-level classification (for PII, sensitive data)
## Steps
### Creating a Tag
1. Identify the asset and object (table or column) to tag
2. Choose the tag name and category
3. Call `client.tags.create()` with the object path
### Applying Multiple Tags
1. Prepare list of tag names to apply
2. Prepare list of object paths
3. Call `client.tags.apply()` for batch operations
### Bulk Tagging Across Assets
1. Create tag name
2. List asset IDs to tag
3. Call `client.tags.bulk_apply()`
## Example Usage
### List Existing Tags
```python
from anomalyarmor import Client
client = Client()
# List all tags for an asset
tags = client.tags.list(asset="postgresql.analytics")
for tag in tags:
print(f" {tag.name} ({tag.category}): {tag.object_path}")
# Filter by category
governance_tags = client.tags.list(
asset="postgresql.analytics",
category="governance"
)
```
### Tag a Table as PII
```python
tag = client.tags.create(
asset="postgresql.analytics",
name="pii_data",
object_path="public.customers",
object_type="table",
category="governance",
description="Contains personally identifiable information"
)
print(f"Created tag: {tag.id}")
```
### Tag a Column as Sensitive
```python
tag = client.tags.create(
asset="postgresql.analytics",
name="sensitive",
object_path="public.customers.email",
object_type="column",
category="governance"
)
```
### Apply Multiple Tags to Multiple Tables
```python
result = client.tags.apply(
asset="postgresql.analytics",
tag_names=["financial_reporting", "quarterly_data"],
object_paths=["gold.fact_orders", "gold.fact_revenue", "gold.dim_customers"],
category="business"
)
print(f"Applied: {result.applied}, Failed: {result.failed}")
```
### Tag Multiple Assets
```python
result = client.tags.bulk_apply(
tag_name="production_critical",
asset_ids=["postgresql.analytics", "postgresql.warehouse", "snowflake.main"],
category="technical"
)
print(f"Tagged {result.applied} assets")
```
## Expected Output
```
Tags for postgresql.analytics:
pii_data (governance): public.customers
financial_reporting (business): gold.fact_orders
quarterly_data (business): gold.fact_revenue
production_critical (technical): asset-level
By Category:
governance: 3 tags
business: 5 tags
technical: 2 tags
```
## Follow-up Actions
- After tagging PII: Set up access controls and audit logging
- After business classification: Use tags to filter dashboards and reports
- After technical tagging: Use tags to prioritize monitoring
- To view tagged data: Filter assets by tag in the AnomalyArmor dashboard
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.