From wendy-agentic-coding
Use when preparing Wendy repo commits, GitHub PRs, review-thread cleanup, or CI fixes, especially for wendy-agent Go changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wendy-agentic-coding:wendy-pr-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this for Wendy Labs PR, CI, and review cleanup work.
Use this for Wendy Labs PR, CI, and review cleanup work.
For wendy-agent Go changes:
cd /Users/maximilianalexander/wendylabsinc/wendy-agent/go
gofmt -w <changed-go-files>
go test ./internal/cli/commands ./internal/agent/services
git diff --check
Adjust packages to match touched files. When CI uses race-sensitive checks, match the workflow flags locally instead of relying on plain go test.
When resolving review conversations, use GraphQL reviewThreads so thread state is accurate. After patching and pushing, resolve only the addressed threads, then re-query to confirm isResolved.
Useful shape:
gh api graphql -f owner=wendylabsinc -f repo=wendy-agent -F number=<pr-number> -f query='
query($owner:String!, $repo:String!, $number:Int!) {
repository(owner:$owner, name:$repo) {
pullRequest(number:$number) {
reviewThreads(first:100) {
nodes {
id
isResolved
isOutdated
path
line
comments(first:10) { nodes { url body author { login } } }
}
}
}
}
}'
Resolve an addressed thread:
gh api graphql -f threadId=<thread-id> -f query='
mutation($threadId:ID!) {
resolveReviewThread(input:{threadId:$threadId}) {
thread { id isResolved }
}
}'
main, inspect divergence first so unrelated local commits are not bundled.npx claudepluginhub wendylabsinc/wendy-agentic-coding --plugin wendy-agentic-codingGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.