confluence-labellisted
Install: claude install-skill ulises-jeremias/agent-toolkit
# Confluence Label Skill
Manage labels on Confluence content.
---
## ⚠️ PRIMARY USE CASE
**This skill manages labels (tags) on Confluence content.** Use for:
- Adding labels to pages
- Removing labels
- Finding content by label
- Viewing popular labels
---
## When to Use / When NOT to Use
| Use This Skill | Use Instead |
|----------------|-------------|
| Add/remove labels | - |
| Find by label | `confluence-search` (for complex queries) |
| List page labels | - |
| Create/edit pages | `confluence-page` |
| Set permissions | `confluence-permission` |
---
## Risk Levels
All operations are **low risk** and easily reversible:
| Operation | Risk | Notes |
|-----------|------|-------|
| List labels | - | Read-only |
| Add label | - | Can be removed |
| Remove label | - | Can be re-added |
| Search by label | - | Read-only |
---
## CLI Commands
### confluence-as label add
Add one or more labels to content.
**Usage:**
```bash
confluence-as label add PAGE_ID LABEL [LABEL ...]
confluence-as label add 12345 documentation --output json
```
**Options:**
- `--output, -o` - Output format: text or json
**Examples:**
```bash
confluence-as label add 12345 documentation
confluence-as label add 12345 doc approved v2
```
### confluence-as label remove
Remove a label from content.
**Usage:**
```bash
confluence-as label remove PAGE_ID LABEL
confluence-as label remove 12345 draft --output json
```
**Options:**
- `--output, -o` - Output format: text or json
**Examples:**
```bash