---
title: "Prune Pending Instincts"
description: "Remove expired pending instincts that were auto-generated but never reviewed or promoted."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/prune
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:37:15.787Z
license: CC-BY-4.0
attribution: "Prune Pending Instincts — Claudary (https://claudary.paisolsolutions.com/skills/prune)"
---

# Prune Pending Instincts
Remove expired pending instincts that were auto-generated but never reviewed or promoted.

## Overview

---
name: prune
description: Delete pending instincts older than 30 days that were never promoted
command: true
---

# Prune Pending Instincts

Remove expired pending instincts that were auto-generated but never reviewed or promoted.

## Implementation

Run the instinct CLI using the plugin root path:

```bash
python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" prune
```

Or if `CLAUDE_PLUGIN_ROOT` is not set (manual installation):

```bash
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py prune
```

## Usage

```
/prune                    # Delete instincts older than 30 days
/prune --max-age 60      # Custom age threshold (days)
/prune --dry-run         # Preview without deleting
```

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/prune) · https://claudary.paisolsolutions.com
