---
name: Peon Ping Log
slug: peon-ping-log
category: Automation
description: Peon Ping Log logs exercise reps for the Peon Trainer via a shell command. Use it when a user says they did pushups or squats and wants to log reps.
github: "https://github.com/PeonPing/peon-ping/tree/main/skills/peon-ping-log"
language: Shell
stars: 4992
forks: 373
install: "npx degit https://github.com/PeonPing/peon-ping/tree/main/skills/peon-ping-log ~/.claude/skills/peon-ping-log"
installs_to: ~/.claude/skills/peon-ping-log
source_path: skills/peon-ping-log/SKILL.md
collection_size: 7
category_size: 1523
collection_url: "https://dirskills.com/collections/PeonPing/peon-ping"
added: 2026-08-16T07:00:49.965Z
last_synced: 2026-08-16T07:00:49.965Z
canonical_url: "https://dirskills.com/skills/peon-ping-log"
---

# Peon Ping Log

Peon Ping Log logs exercise reps for the Peon Trainer via a shell command. Use it when a user says they did pushups or squats and wants to log reps.

**Install:**

```bash
npx degit https://github.com/PeonPing/peon-ping/tree/main/skills/peon-ping-log ~/.claude/skills/peon-ping-log
```

## README

# peon-ping-log

Log exercise reps for the Peon Trainer.

## Usage

The user provides a number and exercise type. Run the following command using the Bash tool:

```bash
bash ~/.claude/hooks/peon-ping/peon.sh trainer log <count> <exercise>
```

Where:
- `<count>` is the number of reps (e.g. `25`)
- `<exercise>` is `pushups` or `squats`

### Examples

```bash
bash ~/.claude/hooks/peon-ping/peon.sh trainer log 25 pushups
bash ~/.claude/hooks/peon-ping/peon.sh trainer log 30 squats
```

Report the output to the user. The command will print the updated rep count and play a trainer voice line.

## If trainer is not enabled

If the output says trainer is not enabled, tell the user to run `/peon-ping-toggle` or `peon trainer on` first.

## Check status

If the user asks for their progress after logging, also run:

```bash
bash ~/.claude/hooks/peon-ping/peon.sh trainer status
```
