Use when the user wants to ignore, skip, or exclude specific topics from being archived. Triggers on "ignore topic", "don't archive", "skip topic", "stop remembering", "list ignored topics", "remove ignore rule".
Scanned 5/27/2026
Install via CLI
openskills install hatawong/claude-recap---
name: ignore-topic
description: Use when the user wants to ignore, skip, or exclude specific topics from being archived. Triggers on "ignore topic", "don't archive", "skip topic", "stop remembering", "list ignored topics", "remove ignore rule".
---
# ignore-topic
Manage `.ignore` rules — glob patterns that prevent matching topic slugs from being archived. Topics still get tagged but archival is skipped (no LLM summary call, no file written).
## Step 1: Determine operation
Parse the user's message for operation (add/remove/list) and patterns. If clear, skip to Step 2.
Otherwise, ask using AskUserQuestion:
```
What would you like to do?
- Add: Add ignore patterns (topics matching these will not be archived)
- Remove: Remove an existing ignore pattern
- List: Show all current ignore rules
```
## Step 2: Execute
**add:**
1. If no patterns provided, ask for patterns (space-separated, glob supported: `*`, `?`, `[...]`).
2. Ask scope via AskUserQuestion:
```
Which scope?
- Global: applies to all projects (~/.memory/.ignore)
- Project: applies only to this project
```
3. Run:
```bash
bash "<plugin_scripts_path>/ignore-topic.sh" add "<scope>" <pattern1> [pattern2 ...]
```
`<scope>`: `global` or the project dir path from SessionStart context.
**remove:**
1. If no pattern provided, ask which pattern to remove.
2. Ask scope (global or project).
3. Run:
```bash
bash "<plugin_scripts_path>/ignore-topic.sh" remove "<scope>" "<pattern>"
```
**list:**
```bash
bash "<plugin_scripts_path>/ignore-topic.sh" list "<project_dir>"
```
## Path resolution
- `<plugin_scripts_path>`: from SessionStart injection `Plugin scripts path: ...`
- `<project_dir>`: from SessionStart injection `Your persistent memory is stored at <project_dir>`
## Examples
| User says | Operation | Scope question? |
|---|---|---|
| `/ignore-topic add git-* lint-fix` | add `git-*` and `lint-fix` | Yes |
| `/ignore-topic` | Ask all | Yes |
| `/ignore-topic list` | list | No |
| "don't archive run-tests topics" | add `run-tests` | Yes |
| `/ignore-topic remove git-*` | remove `git-*` | Yes |
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.
Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.
Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.
Run a single Terminal-Bench problem through Paperclip in a bounded, human-in-the-loop improvement cycle until the smoke passes, the board rejects the next fix, the iteration budget is exhausted, or a real blocker is named. Each iteration runs a bounded smoke against an isolated Paperclip App worktree, captures artifacts, diagnoses the exact stop point with `/diagnose-why-work-stopped`, requests board confirmation before any product fix, then reruns against the same worktree. Use whenever an i...