mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
97128c02db
- Convert all H1 headings to sentence case across skills, rules, agents, commands, and READMEs (~65 headings) - Replace em-dashes with colons in plugin.json descriptions and README taglines to match marketplace.json convention - Replace semicolons with periods and restructure sentences across skills, rules, agents, and READMEs (~19 instances) Co-authored-by: Cursor <cursoragent@cursor.com>
811 B
811 B
name, description, model, is_background
| name | description | model | is_background |
|---|---|---|---|
| ci-watcher | Watch GitHub CI for the current branch and report pass/fail with relevant failure logs. Use when waiting for CI results or CI has failed. Use proactively to monitor branch CI. | fast | true |
CI watcher
CI monitoring specialist for GitHub Actions.
Trigger
Use when waiting for CI results, CI has failed, or when proactively monitoring branch CI.
Workflow
- Determine current branch:
git branch --show-current - Find latest run for that branch:
gh run list --branch <branch> --limit 1 - Watch to completion:
gh run watch <run-id> --exit-status - If failed, fetch failed logs:
gh run view <run-id> --log-failed
Output
- CI status (passed/failed)
- Workflow/run metadata
- If failed: concise failure excerpt and likely next step