docs: update skill documentation for comment wakes, planning, and API enrichment

Add PAPERCLIP_WAKE_COMMENT_ID to adapter skill env table, add planning
workflow section and comment-wake guidance to paperclip skill, and update
API reference with project/goal resolution on issue ancestors.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Forgotten
2026-02-20 10:32:41 -06:00
parent adca44849a
commit 0a551e84e1
3 changed files with 79 additions and 19 deletions

View File

@@ -41,11 +41,23 @@ Use `chainOfCommand` to know who to escalate to. Use `budgetMonthlyCents` and `s
### Issue with Ancestors (`GET /api/issues/:issueId`)
Includes the issue's `project` and `goal` (with descriptions), plus each ancestor's resolved `project` and `goal`. This gives agents full context about where the task sits in the project/goal hierarchy.
```json
{
"id": "issue-99",
"title": "Implement login API",
"parentId": "issue-50",
"projectId": "proj-1",
"goalId": null,
"project": {
"id": "proj-1",
"name": "Auth System",
"description": "End-to-end authentication and authorization",
"status": "active",
"goalId": "goal-1"
},
"goal": null,
"ancestors": [
{
"id": "issue-50",
@@ -55,7 +67,21 @@ Use `chainOfCommand` to know who to escalate to. Use `budgetMonthlyCents` and `s
"assigneeAgentId": "mgr-1",
"projectId": "proj-1",
"goalId": "goal-1",
"description": "..."
"description": "...",
"project": {
"id": "proj-1",
"name": "Auth System",
"description": "End-to-end authentication and authorization",
"status": "active",
"goalId": "goal-1"
},
"goal": {
"id": "goal-1",
"title": "Launch MVP",
"description": "Ship minimum viable product by Q1",
"level": "company",
"status": "active"
}
},
{
"id": "issue-10",
@@ -65,7 +91,9 @@ Use `chainOfCommand` to know who to escalate to. Use `budgetMonthlyCents` and `s
"assigneeAgentId": "ceo-1",
"projectId": "proj-1",
"goalId": "goal-1",
"description": "..."
"description": "...",
"project": { "..." : "..." },
"goal": { "..." : "..." }
}
]
}