Results for “logback”

34 skills
More results
sakamoto-family-smile
Quarkus Patterns
Provides Quarkus 3.x architecture patterns for building cloud-native, event-driven services with Apache Camel, covering REST APIs, CDI services, data access with Panache, async processing, and logging.
0
projectious-work
Standup Context
Writes a structured standup update as a session.standup LogEntry — capturing what was done, what is in progress, what comes next, and any blockers. Use when the user says "write a standup", "standup update", "what did I do today", "write a status update for the team", or at the end of a session on projects that run daily standups.
0 · bundle
fukukei23
Resume Session
セッション再開時に最新5件のhandoffを読み込み文脈を復元するスキル。「おはよう」「こんにちは」「こんばんは」「再開」「restart」または /resume-session を呼んだ時にトリガーする。new-session の対(読込側)。
0
projectious-work
Debugging
Systematic debugging — reproduce, read the error, isolate, hypothesize, fix, verify, document. Use when tracking down a bug, unexpected behavior, or test failure — including phrases like "this doesn't work", "why is this failing", or "help me debug".
0
georgeqle
Handoff
Generate a project-level context snapshot for resuming work in a fresh session
1 · bundle
claude-dev-suite
Redis
Redis in-memory data store. Covers data structures, caching, and pub/sub. Use for caching and real-time features. USE WHEN: user mentions "redis", "caching", "session storage", "rate limiting", "pub/sub", "sorted sets", "in-memory database", "cache invalidation" DO NOT USE FOR: relational data - use `postgresql` or `mysql` instead, document storage - use `mongodb` instead, full-text search - use `elasticsearch` instead
28 · bundle
levalencia
Retro
Retro
3
kensaurus
Test QA
Generic webapp QA fallback — use only when no project-specific QA skill applies (project-local QA wins; native builds → mobile-emulator-test). Use when "QA the app", "test CRUD", or "smoke test". Monkey / guest vs logged-in → test-exploratory. Dead buttons → plan-stub-checker. Pixel diffs → test-visual-regression.
8 · bundle
georgeqle
Debug
Investigate a problem, log it to the debug changelog, cross-check past issues, and suggest a non-duplicate fix.
1 · bundle
heath-gtm
Session Handoff
Close a work session without losing what just happened. Write a handoff brief that captures progress, the decisions you made, the unfinished items and their next steps, and the details that would evaporate overnight, then it asks whether to commit or save it, never automatically. Trigger on "wrap up this session", "write a handoff", "close out for the day", "hand this off", "what did we get done", or the end of any working session you might have to resume later.
0 · bundle
aiweline
Debug Logging
debug-logging
1
aniruddhaadak80
Session Logs
Search and analyze your own session logs (older/parent conversations) using jq.
0
thedixitjain
Retro
Weekly engineering retrospective. (gstack)
2 · bundle
promisingcoder
Session Logs
Search and analyze your own session logs (older/parent conversations) using jq.
0
solizardking
Session Logs
Search and analyze your own session logs (older/parent conversations) using jq.
0
projectious-work
Session Handover
Write an end-of-session handover LogEntry capturing current state, open threads, next action, and git context for session continuity.
0 · bundle
snoodleboot-io
Incident Automation
A runbook written in a wiki decays silently: the dashboard is renamed, the
2
dracounion
Failure Feedback Loop
当遭遇挫折、失败或结果不如预期时,用于将负面经验转化为成长燃料
11 · bundle
saranskumar
Debugging
Use when investigating a bug, runtime error, unexpected behavior, test failure, or crash. For systematic root cause analysis, error message interpretation, stack trace reading, reproduction steps, and targeted fixes. Activate when the user says "it's broken", "this doesn't work", "I'm getting an error", or "help me debug".
0 · bundle
livelybug
Retro
Weekly engineering retrospective. (gstack)
0 · bundle
bitwikiorg
History
Imported skill history from langchain
3
jasoncarreira
Introspection
Diagnose your own behavior by reading the structured logs you leave behind — turns.jsonl, events.jsonl, chat_history.jsonl, scheduler.yaml. Use when something has gone wrong (a message didn't land, a scheduled job isn't firing, a communication pattern feels off), when you need to understand a pattern over many turns, or when cost / token usage needs auditing. Covers jq query recipes and points at the debugging-jobs / debugging-communication / debugging-drift companion guides for specific failure modes.
6 · bundle
phuryn
Retro
Facilitate a structured sprint retrospective to surface insights and produce actionable improvements with owners and deadlines.
22.6k
heath-gtm
Session Closeout
Close out a work session safely. Verifies every change is committed, pushed, and green, confirms the work is live and verified, updates the notes for next time, and hands back a summary with links and a rollback path. Trigger on "close out the session", "wrap up", "lock it up", "are we good to close", "session QA", "end of session", or any moment before you stop or hand off.
0
dontbesilent2025
Dbs Save
Save the current diagnosis state to disk for cross-session recall, including conclusions, rejected directions, and next steps.
fukukei23
Reflection
週次リフレクション(1週の振り返りサマリ)を生成するスキル。直近の完了週の日記から4要素(作業傾向/思考癖/繰り返す課題/CCアドバイス)を生成し、_INDEX気づきTop3はユーザー承認後に反映。ユーザーが「リフレクション」「今週の振り返り」「思考癖まとめて」と言った時、または /reflection を呼んだ時に発動。resume-sessionの検知提案からも起動される。
0
peteedoo
Retro
Facilitate a structured sprint retrospective — what went well, what didn't, and prioritized action items with owners and deadlines. Use when running a retrospective, reflecting on a sprint, creating action items from team feedback, or learning how to run effective retros.
0
livelybug
Skillify
Codify the most recent successful /scrape flow into a permanent browser-skill on disk. (gstack)
0
livelybug
Context Restore
Restore working context saved earlier by /context-save. (gstack)
0
tinh2
Retro
Runs a full retrospective and dev cycle analysis, chaining /recall and /new-features to reconstruct what went wrong, extract lessons learned, identify rework patterns, and synthesize feature ideas from the findings.
13
claude-dev-suite
Nodejs Logging
Node.js logging with Winston, Pino, and built-in console. Covers structured logging, log levels, transports, async logging, and production best practices for Express/NestJS applications. USE WHEN: user mentions "node.js logging", "express logging", "nestjs logging", asks about "how to log in node", "winston vs pino", "node logging best practices" DO NOT USE FOR: Python logging - use `python-logging` instead, Java logging - use `slf4j` or `logback`, Browser logging - different environment and APIs
28 · bundle
claude-dev-suite
Python Logging
Python logging with the standard library logging module and structlog. Covers log levels, handlers, formatters, structured logging, and production best practices for FastAPI/Django applications. USE WHEN: user mentions "python logging", "fastapi logging", "django logging", asks about "how to log in python", "python logging module", "logging configuration python" DO NOT USE FOR: Node.js logging - use `nodejs-logging` instead, Java logging - use `slf4j` or `logback`, structlog-specific - use `structlog` skill for deep dive
28 · bundle