Skip to main content
Back to registry

logging-best-practices

boristane/agent-skills

Installs2
Install command
npx skills add https://github.com/boristane/agent-skills --skill logging-best-practices
Security audits
Gen Agent Trust HubFAIL
SocketFAIL
SnykPASS
About this skill
Version: 1.0.0 This skill provides guidelines for implementing effective logging in applications. It focuses on wide events (also called canonical log lines) - a pattern where you emit a single, context-rich event per request per service, enabling powerful debugging and analytics. Apply these guidelines when: Emit one context-rich event per request per service . Instead of scattering log lines throughout your handler, consolidate everything into a single structured event emitted at request completion. Include fields with high cardinality (user IDs, request IDs - millions of unique values) and high dimensionality (many fields per event). This enables querying by specific users and answering questions you haven't anticipated yet. Always include business context: user subscription tier, cart value, feature flags, account age. The goal is to know "a premium customer couldn't complete a $2,499 purchase" not just "checkout failed." Include environment and deployment info in every event: commit hash, service version, region, instance ID.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does logging-best-practices do?

logging-best-practices is listed in SkillJury, but the source summary is still sparse.

Is logging-best-practices good?

logging-best-practices does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does logging-best-practices work with?

logging-best-practices currently lists compatibility with Agent compatibility has not been published yet..

What are alternatives to logging-best-practices?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install logging-best-practices?

npx skills add https://github.com/boristane/agent-skills --skill logging-best-practices

Related skills

Alternatives in Software Engineering