Back to list
tomcounsell

checking-system-logs

by tomcounsell

learning and building with AI

3🍴 1📅 Jan 22, 2026

SKILL.md


name: checking-system-logs description: Find bridge events, agent responses, timeouts, and errors in system logs. ALWAYS filter by project name. Use when debugging system behavior, investigating errors, or checking what the agent did.

System Logs

Location: /Users/valorengels/src/ai/logs/bridge.events.jsonl

IMPORTANT: Always filter by project to get relevant results.

Fields

  • project - required filter ("DM", "Valor", "Django Project Template", etc.)
  • type - event type (see below)
  • chat - group name (null for DMs)
  • session_id - e.g., "tg_dm_179144806"
  • sender - who triggered the event

Event Types

  • message_received - incoming message
  • agent_request - request sent to agent
  • agent_response - Valor's response
  • agent_timeout - response timed out
  • reply_sent - message sent back to user
  • error - system error

Query Examples

# ALWAYS filter by project first, then by type or other criteria

# All recent events for a project
grep '"project": "Valor"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | tail -20 | jq .

# Agent responses for a project
grep '"project": "Valor"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | grep '"type": "agent_response"' | tail -10 | jq .

# Errors for a project
grep '"project": "Valor"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | grep '"type": "error"' | tail -10 | jq .

# Timeouts for a project
grep '"project": "Valor"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | grep '"type": "agent_timeout"' | tail -10 | jq .

# Search keyword within a project
grep '"project": "Valor"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | grep -i "keyword" | tail -10 | jq .

List Available Projects

grep -o '"project": "[^"]*"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | sort -u

If No Results

If a project filter returns no results, list available projects and report them:

# No results? Check available projects:
grep -o '"project": "[^"]*"' /Users/valorengels/src/ai/logs/bridge.events.jsonl | sort -u
# Then retry with a valid project name from the list

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon