smithery/neversight

audit_logging

Ensure every critical action is logged (vital for UAG/Trust Room).

Installation

$ npx skills add smithery/neversight --skill audit-logging

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Edit, Write

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,132 B
  • docs SUMMARY.md 87 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Audit Logging Protocol

1. Principles

  • No Invisible Actions: Every state-changing API call (POST, PUT, DELETE) must produce a log entry.
  • Traceability: Logs must include userId, action, resourceId, and metadata.

2. Implementation Standards

  • Backend (API):

- Use the project's standard Logger service (e.g., src/services/logger.ts or similar). - Example: ``typescript await Logger.info({ event: 'POST_CREATED', userId: user.id, metadata: { postId: newPost.id } }); ``

  • Database (Supabase):

- Ensure tables have createdat, updatedat, and createdby columns. - Check if specific Audit Table inserts are required (e.g. auditlogs table).

3. Verification Checklist

  • Does the new API endpoint call Logger?
  • Are logs visible in Supabase/Dashboards?
  • Is the log level appropriate (Info vs Error)?
  • Does the log contain enough context to debug issues later?