From operations
Track compliance requirements and audit readiness. Trigger with "compliance", "audit prep", "SOC 2", "ISO 27001", "GDPR", "regulatory requirement", or when the user needs help tracking, preparing for, or documenting compliance activities.
How this skill is triggered — by the user, by Claude, or both
Slash command
/operations:compliance-trackingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help track compliance requirements, prepare for audits, and maintain regulatory readiness.
Help track compliance requirements, prepare for audits, and maintain regulatory readiness.
| Framework | Focus | Key Requirements |
|---|---|---|
| SOC 2 | Service organizations | Security, availability, processing integrity, confidentiality, privacy |
| ISO 27001 | Information security | Risk assessment, security controls, continuous improvement |
| GDPR | Data privacy (EU) | Consent, data rights, breach notification, DPO |
| HIPAA | Healthcare data (US) | PHI protection, access controls, audit trails |
| PCI DSS | Payment card data | Encryption, access control, vulnerability management |
Short-Lived Climate Pollutants Reduction Act — requires organic waste diversion from landfills.
| Tier | Effective | Who | Examples |
|---|---|---|---|
| Tier 1 | Jan 2022 | Large generators | Supermarkets ($2M+ revenue), grocery stores (10K+ sqft), food distributors, food processors |
| Tier 2 | Jan 2024 | Mid-size generators | Restaurants (250+ seats), hotels (200+ rooms), hospitals (100+ beds), large venues, schools (enrollment 500+) |
lea_contacts table (Ops DB)SELECT * FROM lea_contacts WHERE agency ILIKE '%los angeles%'| Compliance Need | Dyrt Solution |
|---|---|
| Waste tracking data | Per-pickup weight data from weigh_ins, categorized in waste_entries |
| Diversion reporting | 99% diversion rate documentation, automated monthly/quarterly reports |
| Contamination metrics | Contamination tracking per pickup with data from bin scans |
| Compliance documentation | Audit-ready reports showing organic waste diversion by period |
| Generator education | Training materials and signage for proper sorting |
-- Find LEA contacts for a city/county
SELECT name, title, agency, email, phone
FROM lea_contacts
WHERE agency ILIKE '%[city or county]%';
-- Deals in proposal+ stage that mention compliance
SELECT company_name, stage, mrr, assigned_to
FROM sales_pipeline
WHERE notes ILIKE '%1383%' OR notes ILIKE '%compliance%'
AND stage NOT IN ('closed_won', 'closed_lost', 'churned');
Produce compliance status dashboards, gap analyses, audit prep checklists, evidence collection plans, and SB 1383 readiness assessments.
npx claudepluginhub dyrt-labs/knowledge-work-plugins --plugin operationsGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.