skills/audit-backend-java/SKILL.md
Implement audit logging and audit trails for Java Spring Boot applications. Covers JPA entity listeners, Hibernate Envers, user action logging, audit interceptors, and compliance patterns. Use when: adding audit trails to data changes, logging user actions, implementing compliance requirements (GDPR, SOC2, HIPAA), or reviewing audit coverage in Java.
npx skillsauth add congiuluc/my-awesome-copilot audit-backend-javaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
@EnableJpaAuditing)@CreatedBy, @LastModifiedBy, @CreatedDate, @LastModifiedDate to base entitiesAuditorAware<String> bean for the current user@EntityListener (see audit listener sample)| Field | Type | Description |
|-------|------|-------------|
| id | String | Unique audit entry ID (UUID) |
| timestamp | Instant | When the action occurred (UTC) |
| userId | String | Who performed the action |
| action | String | CREATE, UPDATE, DELETE, ACCESS, LOGIN, etc. |
| entityType | String | The type of entity affected |
| entityId | String | The ID of the entity affected |
| changes | String | JSON diff of old/new values (for updates) |
| ipAddress | String | Client IP address |
| correlationId | String | Request correlation ID from MDC |
Instant)tools
Build VS Code extensions with TypeScript. Covers extension anatomy, activation events, commands, tree views, webview panels, language features, testing, and publishing. Use when: creating a new VS Code extension, adding commands/views/providers, building webview UIs, implementing language server features, testing extensions, or packaging for the marketplace.
development
Track implementations, features, bugs, and releases in a versioning document. Use when: adding a commit, completing a feature, fixing a bug, or preparing a release. Automatically updates CHANGELOG.md following Keep a Changelog format and Semantic Versioning.
development
Write frontend tests using Vitest and React Testing Library. Use when: testing React components, hooks, user interactions, form submissions, accessibility assertions, or mocking API services.
development
Write Angular frontend tests using Jasmine, Karma, and Angular TestBed. Use when: testing Angular components, services, pipes, directives, user interactions, form submissions, accessibility assertions, or mocking HTTP services.