Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

structured-logging结构化日志记录

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

188

周安装

8

GitHub Stars

1

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:structured-logging(结构化日志记录)
来源仓库:https://github.com/cleanexpo/nodejs-starter-v1
仓库路径:skills/structured-logging
安装命令:
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill structured-logging
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cleanexpo/nodejs-starter-v1 --skill structured-logging

简介

structured-logging 统一前后端 JSON 结构化日志格式,包含关联 ID 与上下文元数据。

  • 适用于分布式系统追踪、故障排查与可观测性体系建设场景。
  • 后端使用 structlog 输出 JSON,前端 Logger 类支持敏感信息脱敏与级别控制。
  • 使用前请确认日志收集系统能解析 JSON 格式,并配置合适的存储与索引策略。
  • 建议在生产环境启用请求追踪 ID,便于跨服务调用链路的串联分析。

SKILL.md

Structured Logging - Observability Patterns

Consistent, machine-readable logging across the full stack. The backend uses structlog with JSON output; the frontend uses a custom Logger class. This skill codifies conventions for both and adds correlation IDs, log context, and level guidelines.

Description

Enforces JSON-structured logging with correlation IDs, consistent log levels, and contextual metadata across the FastAPI backend (structlog) and Next.js frontend (Logger class). Covers sensitive data redaction, request tracing, and observability best practices.

When to Apply

Positive Triggers

  • Adding logging to new modules or API endpoints
  • Reviewing existing log statements for consistency
  • Implementing request tracing or correlation IDs
  • Debugging production issues via log analysis
  • Setting up log aggregation or monitoring pipelines
  • User mentions: "logging", "logs", "observability", "tracing", "monitoring", "debug"

Negative Triggers

  • Implementing error response formats (use error-taxonomy instead)
  • Designing metrics/dashboards (use metrics-collector when available)
  • Configuring CI/CD pipelines (use ci-cd-patterns when available)

Core Directives

Always Structured, Never Unstructured

# GOOD: Structured with context
logger.info("Document created", document_id=doc.id, user_id=user.id)

# BAD: Unstructured string interpolation
logger.info(f"Document {doc.id} created by user {user.id}")

# BAD: print() for logging
print(f"Created doc: {doc.id}")

Log Levels

LevelWhen to UseExample
ERROROperation failed, needs attentionDatabase connection lost, agent execution failed
WARNINGRecoverable issue, degraded behaviourRate limit approaching, fallback provider used
INFOSignificant business eventsUser logged in, document created, agent run completed
DEBUGDevelopment-only detailQuery parameters, intermediate computation results

What NOT to Log

  • Passwords, tokens, API keys, or session IDs
  • Full request/response bodies (log summaries instead)
  • Personal information beyond what's needed for debugging
  • High-frequency events without sampling (e.g., every heartbeat)

Backend Patterns (structlog)

Existing Setup

The project configures structlog in apps/backend/src/utils/logging.py:

  • Debug mode: ConsoleRenderer() (human-readable)
  • Production mode: JSONRenderer() (machine-readable)
  • Context vars: merge_contextvars enables request-scoped context

Getting a Logger

from src.utils import get_logger

logger = get_logger(__name__)

# Logger name becomes the "logger" field in JSON output
# e.g., "logger": "src.api.routes.documents"

Correlation IDs

Add a middleware that generates a correlation ID per request and binds it to structlog context:

import uuid
import structlog
from starlette.middleware.base import BaseHTTPMiddleware
from starlette.requests import Request

class CorrelationIdMiddleware(BaseHTTPMiddleware):
    """Attach a correlation ID to every request for log tracing."""

    async def dispatch(self, request: Request, call_next):
        correlation_id = request.headers.get(
            "X-Correlation-ID",
            str(uuid.uuid4())
        )

        # Bind to structlog context (available to all loggers in this request)
        structlog.contextvars.clear_contextvars()
        structlog.contextvars.bind_contextvars(
            correlation_id=correlation_id,
        )

        response = await call_next(request)
        response.headers["X-Correlation-ID"] = correlation_id
        return response

Register in apps/backend/src/api/main.py:

from .middleware.correlation import CorrelationIdMiddleware

app.add_middleware(CorrelationIdMiddleware)

Request Logging

Log every API request with timing:

import time
from src.utils import get_logger

logger = get_logger(__name__)

class RequestLoggingMiddleware(BaseHTTPMiddleware):
    """Log request method, path, status, and duration."""

    async def dispatch(self, request: Request, call_next):
        start = time.perf_counter()
        response = await call_next(request)
        duration_ms = (time.perf_counter() - start) * 1000

        logger.info(
            "Request completed",
            method=request.method,
            path=request.url.path,
            status=response.status_code,
            duration_ms=round(duration_ms, 2),
        )
        return response

Agent Execution Logging

Log agent lifecycle events consistently:

logger = get_logger(__name__)

async def execute_agent(agent_name: str, task: str):
    logger.info("Agent started", agent=agent_name, task=task[:100])

    try:
        result = await agent.run(task)
        logger.info(
            "Agent completed",
            agent=agent_name,
            status="success",
            duration_ms=result.duration_ms,
        )
        return result
    except TimeoutError:
        logger.error(
            "Agent timed out",
            agent=agent_name,
            error_code="AGENT_RUNTIME_TIMEOUT",
        )
        raise
    except Exception as exc:
        logger.error(
            "Agent failed",
            agent=agent_name,
            error_code="AGENT_RUNTIME_FAILED",
            error=str(exc),
        )
        raise

JSON Output Format

In production, each log line is a single JSON object:

{
  "timestamp": "2026-02-13T09:30:00.000Z",
  "level": "info",
  "event": "Request completed",
  "logger": "src.api.middleware.logging",
  "correlation_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "method": "POST",
  "path": "/api/documents",
  "status": 201,
  "duration_ms": 42.5
}

Frontend Patterns (Logger)

Existing Setup

The project has a Logger class in apps/web/lib/logger.ts:

  • Level filtering via LOG_LEVEL env var
  • ISO timestamp formatting
  • JSON context serialisation

Usage Convention

import { logger } from '@/lib/logger';

// Business events
logger.info('Document created', { documentId: doc.id, userId: user.id });

// Warnings
logger.warn('API response slow', { endpoint: '/api/agents', durationMs: 2500 });

// Errors (always include the error object)
logger.error('Failed to fetch documents', error, { userId: user.id });

// Debug (stripped in production via LOG_LEVEL)
logger.debug('API response', { status: response.status, body: data });

Correlation ID Propagation

Pass the correlation ID from backend responses to subsequent requests:

let correlationId: string | null = null;

export async function apiRequest(path: string, options?: RequestInit) {
  const headers: Record<string, string> = {
    'Content-Type': 'application/json',
    ...(correlationId ? { 'X-Correlation-ID': correlationId } : {}),
  };

  const response = await fetch(`${BACKEND_URL}${path}`, {
    ...options,
    headers: { ...headers, ...options?.headers },
  });

  // Capture correlation ID from response
  correlationId = response.headers.get('X-Correlation-ID');

  return response;
}

Replacing console.log

All console.log, console.error, and console.warn calls should use the logger instead:

// BAD
console.log('User logged in');
console.error('Failed to load', error);

// GOOD
logger.info('User logged in', { userId: user.id });
logger.error('Failed to load', error, { component: 'Dashboard' });

Log Context Standards

Required Fields

Every log entry should include (automatically via middleware or manually):

FieldSourceExample
timestampAuto (structlog/Logger)2026-02-13T09:30:00.000Z
levelAutoinfo, error, warn, debug
eventFirst argument"Document created"
correlation_idMiddleware"a1b2c3d4-..."

Recommended Fields (per domain)

DomainFields
API requestsmethod, path, status, duration_ms
Authenticationuser_id, action (login/logout/token_refresh)
Agent executionagent, task (truncated), status, duration_ms
Database operationstable, operation (select/insert/update/delete), row_count
External servicesservice, endpoint, status, duration_ms

Logging Checklist

When adding or reviewing logging:

  • Use get_logger(__name__) (backend) or logger import (frontend)
  • Use structured key-value context, not f-strings
  • Correct log level (ERROR/WARNING/INFO/DEBUG)
  • No secrets, tokens, or passwords in log output
  • Error logs include error_code from error-taxonomy where applicable
  • High-frequency operations use DEBUG level (not INFO)

Anti-Patterns

PatternProblemCorrect Approach
Unstructured log.info(f"User {id} logged in") stringsNot machine-parseable, breaks log aggregationUse structured key-value pairs: logger.info("User logged in", user_id=id)
Logging sensitive data (passwords, tokens, API keys)Security breach via log exposureRedact sensitive fields; never log credentials or session tokens
No correlation IDs across requestsCannot trace a request through backend and frontendUse CorrelationIdMiddleware and propagate X-Correlation-ID header
Inconsistent log levels (ERROR for warnings, INFO for debug)Noisy alerts, missed critical errorsFollow the log level table: ERROR/WARNING/INFO/DEBUG
Using console.log instead of the Logger classNo level filtering, no structured context, no timestampsImport logger from @/lib/logger and use its methods

Checklist

  • JSON-structured log output configured for production (structlog JSONRenderer)
  • Correlation IDs propagated via X-Correlation-ID header
  • Sensitive data redacted from all log output
  • Log levels consistently applied per the level guidelines table
  • All console.log calls replaced with logger methods in frontend code
  • Error logs include error_code from the error taxonomy

Response Format

[AGENT_ACTIVATED]: Structured Logging
[PHASE]: {Implementation | Review | Configuration}
[STATUS]: {in_progress | complete}

{logging analysis or implementation guidance}

[NEXT_ACTION]: {what to do next}

Integration Points

Error Taxonomy

Error logs should include error_code from the error taxonomy:

logger.error("Agent failed", error_code="AGENT_RUNTIME_FAILED", agent=name)

Council of Logic (Shannon Check)

  • Log messages must be concise — maximum signal, minimum noise
  • Avoid logging the same event at multiple levels
  • Use sampling for high-frequency events (e.g., log 1 in 100 health checks)

Australian Localisation (en-AU)

  • Timestamps: ISO 8601 (UTC) in log output, DD/MM/YYYY in human reports
  • Spelling: behaviour, colour, organisation, analyse, centre, serialisation
  • Compliance: Logs must not contain data subject to Privacy Act 1988 without justification

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.98%
按下载量换算22

Claude

30.45%
按下载量换算20

Cursor

18.87%
按下载量换算12

Gemini CLI

8.71%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills