Skip to content

Commit e14d21e

Browse files
committed
fix skills
1 parent 9b82206 commit e14d21e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.claude/skills/project-pipeline/SKILL.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This skill runs **fully autonomously** — no confirmation prompts, no user ques
3838
#### 0a. Fetch Ready Issues
3939

4040
```bash
41-
gh project item-list 8 --owner CodingThrust --format json
41+
gh project item-list 8 --owner CodingThrust --format json --limit 500
4242
```
4343

4444
Filter items where `status == "Ready"`. Partition into `[Model]` and `[Rule]` buckets.
@@ -215,3 +215,4 @@ Completed: 2/4 | In Review: 3 | Returned to Ready: 1
215215
| Not syncing main between batch issues | Each issue gets a fresh worktree from `origin/main` |
216216
| Worktree left behind on failure | Always clean up with `git worktree remove` in Step 5 |
217217
| Working in main checkout | All work happens in `.worktrees/` — never modify the main checkout |
218+
| Missing items from project board | `gh project item-list` defaults to 30 items — always use `--limit 500` |

.claude/skills/review-pipeline/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This skill runs **fully autonomously** -- no confirmation prompts, no user quest
3434
### 0. Discover review-agentic Items
3535

3636
```bash
37-
gh project item-list 8 --owner CodingThrust --format json
37+
gh project item-list 8 --owner CodingThrust --format json --limit 500
3838
```
3939

4040
Filter items where `status == "review-agentic"`. Each item should have an associated PR. Extract the PR number from the item title or linked issue.

0 commit comments

Comments
 (0)