skilly. Buy ad slot
All skills
Research · Automation / AGENT SKILL

rename

Vinnish-A/AutoR
0 installs 2 GitHub stars
0

Rename paper directories to Author-Year-Title format using JSON metadata.
Rename paper directories to standardized Author-Year-Title format based on JSON metadata. Use when the user wants to normalize filenames after metadata corrections.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# Rename Paper Files

Normalize paper directory names (to the `Author-Year-Title` format) based on JSON metadata.

## Execution Logic

1. Determine user intent:
   - Rename a single paper: specify a paper_id
   - Rename all papers: use `--all`
   - Preview before applying: use `--dry-run`

2. Run the command:

**Preview all renames:**
```bash
autor rename --all --dry-run
```

**Apply all renames:**
```bash
autor rename --all
```

**Rename a single paper:**
```bash
autor rename <paper-id>
```

3. After renaming, it is recommended to rebuild the index:
```bash
autor pipeline reindex
```

## Examples

User says: "Clean up my paper filenames."
→ First run `rename --all --dry-run` to preview, then apply with `rename --all` after confirmation