feat(skills): add pinpoint-briefing session health review skill#1163
feat(skills): add pinpoint-briefing session health review skill#1163timothyfroehlich merged 3 commits intomainfrom
Conversation
Adds a session-start skill that runs parallel checks across Sentry, GitHub (PRs, main CI, new issues, Dependabot), pnpm audit/outdated, worktrees, and beads to produce a structured triage briefing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…efing skill Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Updates to Preview Branch (worktree/jolly-yawning-steele) ↗︎
Tasks are run on every commit but only new migration files are pushed.
View logs for this Workflow Run ↗︎. |
There was a problem hiding this comment.
Pull request overview
Adds a new “session-start health review” agent skill (pinpoint-briefing) to help triage what to work on by gathering repo health signals (PRs/worktrees/beads, security audit/outdated deps, main CI, new GitHub issues, Sentry errors) and synthesizing a structured briefing.
Changes:
- Added
.agent/skills/pinpoint-briefing/SKILL.mdwith 5 parallel data-gathering groups + a standardized briefing output format. - Registered the new
pinpoint-briefingskill in theAGENTS.mdskills table.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| AGENTS.md | Registers the new pinpoint-briefing workflow skill in the skill table. |
| .agent/skills/pinpoint-briefing/SKILL.md | Defines the new session briefing procedure, commands, and expected structured output. |
- Group B: wrap audit+outdated in bash -c with pipefail to preserve exit status through pipe and satisfy single-invocation-per-group intent - Group C: use --status completed --limit 5 directly instead of fetching 10 runs and slicing with jq Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Summary
.agent/skills/pinpoint-briefing/SKILL.md— a session-start skill that runs 5 parallel data-gathering groups and synthesizes a structured triage briefingWhat the skill checks
orchestration-status.shpnpm audit+pnpm outdatedmaingh run list --branch maingh issue listOutput is a structured briefing with a "Recommended Next Actions" section. Designed to run before the orchestrator — answers "what should I work on?" before "how do I parallelize it?"
Test plan
gh issue list --sortflag bug caught during live run🤖 Generated with Claude Code