fix(skills): address greptile review on paperclip-routines skill

- Add missing `description` field to the Creating a Routine field table
- Document optional `label` field available on all trigger kinds
This commit is contained in:
Aron Prins 2026-04-01 13:56:10 +02:00
parent 62d8b39474
commit e5b2e8b29b

View file

@ -54,6 +54,7 @@ POST /api/companies/{companyId}/routines
| Field | Required | Notes |
|-------|----------|-------|
| `title` | yes | Max 200 chars |
| `description` | no | Human-readable description of the routine |
| `assigneeAgentId` | yes | Agents: must be themselves |
| `projectId` | yes | |
| `goalId` | no | Inherited by run issues |
@ -92,6 +93,8 @@ Controls what happens with scheduled runs that were missed (e.g. server downtime
A routine can have multiple triggers of different kinds.
All trigger kinds accept an optional `label` field (max 120 chars) — useful for distinguishing multiple triggers of the same kind on one routine.
```
POST /api/routines/{routineId}/triggers
```