Compliance calendar
GRC skills for Claude Code and AI agents. SOC 2, HIPAA, ISO 27001 — field-tested by Cycore Secure.
npx -y skills add cycoresecure/grc-skills --skill compliance-calendarAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 10 days oldThe repository was created 10 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Build a 12-month compliance calendar: the recurring monthly, quarterly, semiannual, and annual tasks (access reviews, vulnerability scan reviews, backup restore tests, policy reviews, vendor reviews, training, tabletop exercises) a team must perform to stay audit-ready for SOC 2, ISO 27001, or HIPAA. Use when someone asks to "build a compliance calendar", asks "what recurring compliance tasks do we need", wants an "audit-readiness schedule", an "annual compliance schedule", or asks what needs to happen each month/quarter to stay compliant. Output is a markdown calendar grouped by month plus a by-cadence summary. No external tools required.
SKILL.md
7.0 KB, as published. Nobody here has run it
Compliance Calendar
Generate a 12-month recurring-task compliance calendar from the cadence
catalog in cadence-catalog.yaml (same directory as this file). The calendar
is a planning deliverable, not live workflow tracking. Read the catalog before
building anything; it is the single source of truth for tasks, cadences,
owners, and evidence expectations.
Step 1: Establish scope
Collect these facts from the user (or from documents they provide, such as an export from their GRC platform). Ask only for what is missing; never re-ask for information already given.
- Frameworks in scope. One or more of SOC 2, ISO 27001, HIPAA. GDPR may also be noted; it activates the privacy tasks.
- SOC 2 Trust Services Categories, if SOC 2 is in scope. Security is always included. Ask whether Availability, Confidentiality, Processing Integrity, or Privacy are also in scope.
- Period start month. Anchor the calendar to the start of the audit observation period when one exists; otherwise the upcoming month. Month 1 of the calendar is this month.
- Policy list, if available. Each policy becomes one annual
review-and-reapprove task. If no list is supplied, use the
default_policiesset in the catalog (15 standard policies). - Adjustments. Any tasks the client already runs at a different cadence (for example monthly access reviews), tasks to add, or tasks to drop. Honor the stricter of the catalog default and the client's own policy; never schedule a task less often than their policy states.
Step 2: Filter the catalog
Include a task only when both conditions hold:
- Its
frameworkslist intersects the frameworks in scope. - Its
scope_gateis active:
| Gate | Active when |
|---|---|
always | always |
availability | Availability category scoped (SOC 2) |
confidentiality | Confidentiality category scoped (SOC 2) |
processing_integrity | Processing Integrity category scoped (SOC 2) |
privacy | Privacy category scoped, or GDPR in scope |
phi | HIPAA in scope |
eu_data | GDPR in scope |
Then add one annual review task per policy from Step 1 (title: "Review and
re-approve: [policy name]"), using each policy's month_offset from the
catalog's default_policies block, or offset 1 if unknown. Apply any user
adjustments last, and note every deviation from catalog defaults in the
output's assumptions section.
Step 3: Place tasks on the 12-month grid
Months are numbered 1 to 12 from the period start. month_offset in the
catalog is 0-based (offset 0 = month 1).
| Frequency | Placement |
|---|---|
monthly | every month |
quarterly | 4 occurrences starting at (month_offset % 3) + 1, then every 3 months |
semiannual | month_offset + 1 and month_offset + 7 |
annual | once, at month_offset + 1 |
continuous | not on the grid; list in an "Always-on" section |
event_driven | not on the grid; list in an "Event-driven" section |
The offsets exist to spread annual load across the year: risk assessment early, penetration test around month 9 so there is runway to remediate and retest before the period ends, performance evaluations at year-end. Preserve that spread. If the user's audit window compresses things (for example a 6-month Type I runway), rebalance deliberately and say so.
Step 4: Render the calendar
Produce a single markdown document with these sections, in order.
1. Header. Organization name (if given), frameworks and categories in scope, period covered (month-year to month-year), generation date, and a short assumptions list (policy set used, any cadence adjustments, anything excluded and why).
2. By-cadence summary. One table per cadence tier (Monthly, Quarterly, Semiannual, Annual), columns: Task, Domain, Owner, Evidence to retain, Months. Example:
### Quarterly
| Task | Domain | Owner | Evidence to retain | Months |
|---|---|---|---|---|
| User access review (all in-scope systems) | Access | Client system owners | Signed review record per system + tickets for removals | Mar, Jun, Sep, Dec |
3. Month-by-month calendar. One ### Month N: [Month Year] heading per
month, each with a table: Task, Cadence, Owner, Evidence to retain. Every
occurrence from Step 3 appears under its month. A quarterly task therefore
appears four times across the document. Keep months with only monthly tasks
short rather than padding them.
4. Always-on obligations. Bullet list of continuous tasks with the
evidence expectation (for example: monitoring and alerting operational
throughout the period). These have no due date; the auditor tests that they
ran the whole period.
5. Event-driven obligations. Bullet list of event_driven tasks with
their trigger and deadline (for example: access revoked within the policy
SLA per leaver; new-hire training within 30 days of start). Make clear these
fire on the event, not the calendar.
6. Load check. A one-line-per-month count of scheduled tasks. If any month carries 3 or more annual tasks on top of the recurring base, flag it and suggest which offsets to shift.
Quality bar
- Use the catalog's control IDs and evidence descriptions as written. Never invent control IDs or framework citations.
- Owner labels stay generic: "Client", "Client engineering", "Consultant", "Joint", "third-party tester". Platform references stay generic: "your GRC platform" (Vanta, Drata, and similar tools are examples, never requirements).
- Evidence phrasing must name a retainable artifact (a signed record, a dated report, a ticket trail), not an activity. "Reviewed access" is not evidence; "signed access-review record per system" is.
- Carry the catalog's scheduling notes into the output where they matter: the penetration test needs remediation runway, access reviews are the most commonly failed control, the annual policy re-approval is the most commonly missed one.
- If the user asks for a format other than markdown (spreadsheet, calendar invites), build the markdown version first as the source of truth, then convert.
Related skills
- soc2-advisor for what a specific SOC 2 control requires
- hipaa-advisor for HIPAA Security Rule specifics
- gap-assessment to find the gaps before scheduling the routine
- evidence-reviewer to check the artifacts each task produces