# Send ops-journal to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ops-journal",
    "name": "ops-journal",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mariusfit/ops-journal",
    "canonicalUrl": "https://clawhub.ai/mariusfit/ops-journal",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ops-journal",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ops-journal",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/journal.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ops-journal",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T11:30:02.783Z",
      "expiresAt": "2026-05-19T11:30:02.783Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ops-journal",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ops-journal",
        "contentDisposition": "attachment; filename=\"ops-journal-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ops-journal"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ops-journal"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ops-journal",
    "downloadUrl": "https://openagent3.xyz/downloads/ops-journal",
    "agentUrl": "https://openagent3.xyz/skills/ops-journal/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ops-journal/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ops-journal/agent.md"
  }
}
```
## Documentation

### ops-journal — Automated Ops Logging & Incident Timeline for OpenClaw

Structured operational journal that captures deployments, incidents, changes, and decisions. Creates a searchable ops log with incident timeline reconstruction and automated postmortem generation.

### Quick Start

# Initialize journal
python3 scripts/journal.py init

# Log an event
python3 scripts/journal.py log "Upgraded nginx to 1.25" --category deploy
python3 scripts/journal.py log "Disk cleanup, freed 5GB" --category maintenance --tags storage

# Start an incident
python3 scripts/journal.py incident open "API latency spike" --severity high

# Resolve an incident
python3 scripts/journal.py incident resolve INC-001 "Root cause: disk full on /var"

# Search logs
python3 scripts/journal.py search "nginx" --since 7d
python3 scripts/journal.py search --category incident --severity high

# Generate reports
python3 scripts/journal.py summary --period week
python3 scripts/journal.py timeline INC-001

# Export
python3 scripts/journal.py export --format markdown --since 30d

### Entry Categories

CategoryDescriptionAuto-loggeddeployDeployments, upgrades, rollbacksVia hooksincidentIncidents, outages, degradationsVia watchdog integrationconfigConfiguration changesVia hooksmaintenanceScheduled maintenance, cleanupManual or cronsecuritySecurity events, audits, patchesVia security skillsnoteGeneral observations, decisionsManual

### Severity Levels

info — Normal operations (default)
warn — Something worth noting
high — Important event requiring attention
critical — Major incident or outage

### log — Create a journal entry

python3 scripts/journal.py log "message" [--category CAT] [--severity SEV] [--tags tag1,tag2]

### incident — Incident management

python3 scripts/journal.py incident open "description" [--severity SEV]
python3 scripts/journal.py incident resolve ID "resolution"
python3 scripts/journal.py incident list [--status open|resolved|all]
python3 scripts/journal.py incident show ID

### search — Search journal entries

python3 scripts/journal.py search [query] [--category CAT] [--severity SEV] [--since Nd|Nw|Nm] [--limit N]

### summary — Generate period summary

python3 scripts/journal.py summary [--period day|week|month] [--json]

### timeline — Incident timeline

python3 scripts/journal.py timeline ID [--format markdown|json]

### export — Export journal

python3 scripts/journal.py export [--format markdown|json|csv] [--since Nd] [--output file]

### stats — Journal statistics

python3 scripts/journal.py stats [--period month]

### Output Modes

Human: Colored terminal output with category icons and severity highlighting
JSON: Machine-readable output for integration (--json)
Markdown: Report-ready markdown for sharing (--format markdown)
CSV: Spreadsheet-compatible export (--format csv)

### Integration with infra-watchdog

When infra-watchdog detects an issue, ops-journal can auto-log it:

# In a cron or hook:
python3 scripts/journal.py log "Monitor CRITICAL: Gateway down" --category incident --severity critical

### OpenClaw Cron Integration

# Daily summary at 09:00
python3 scripts/journal.py summary --period day --json

# Weekly digest on Monday
python3 scripts/journal.py summary --period week

### Storage

All data stored in ~/.openclaw/workspace/ops-journal/:

journal.db — SQLite database with all entries
incidents/ — Individual incident files (markdown)

### Files

scripts/journal.py — Main journal engine
SKILL.md — This file
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mariusfit
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T11:30:02.783Z
- Expires at: 2026-05-19T11:30:02.783Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ops-journal)
- [Send to Agent page](https://openagent3.xyz/skills/ops-journal/agent)
- [JSON manifest](https://openagent3.xyz/skills/ops-journal/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ops-journal/agent.md)
- [Download page](https://openagent3.xyz/downloads/ops-journal)