원클릭으로
gh-post-issue-update
Post structured updates to GitHub issues. Use to report progress, findings, and implementation notes directly to issues.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Post structured updates to GitHub issues. Use to report progress, findings, and implementation notes directly to issues.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | gh-post-issue-update |
| description | Post structured updates to GitHub issues. Use to report progress, findings, and implementation notes directly to issues. |
| category | github |
Post implementation notes, status updates, and findings to GitHub issues.
# Short status update
gh issue comment <number> --body "Status: [brief update]"
# Detailed notes with heredoc
gh issue comment <number> --body "$(cat <<'EOF'
## Implementation Notes
Content here...
EOF
)"
# From file
gh issue comment <number> --body-file /path/to/file.md
Post regular updates as work progresses:
gh issue comment <number> --body "$(cat <<'EOF'
## Progress Update
### Completed
- [x] Created module structure
- [x] Implemented core functions
### In Progress
- [ ] Writing unit tests
### Next Steps
1. Complete test coverage
2. Integration testing
EOF
)"
Post when work is finished:
gh issue comment <number> --body "$(cat <<'EOF'
## Implementation Complete
**PR**: #<pr-number>
### Summary
[Brief description of what was implemented]
### Files Changed
- `path/to/file1.mojo` - Added tensor operations
- `path/to/file2.mojo` - Updated imports
### Testing
- All 15 tests pass
- Coverage: 85%
### Verification
- [x] `pixi run test` passes
- [x] `just pre-commit-all` passes
- [x] Manual verification complete
EOF
)"
Document important decisions:
gh issue comment <number> --body "$(cat <<'EOF'
## Design Decision
### Context
[Why this decision was needed]
### Options Considered
1. Option A - [pros/cons]
2. Option B - [pros/cons]
### Decision
Chose Option A because [reasoning]
### Consequences
- [Impact 1]
- [Impact 2]
EOF
)"
Report blockers clearly:
gh issue comment <number> --body "$(cat <<'EOF'
## Blocked
### Blocker
[Description of what's blocking]
### Impact
- Cannot proceed with [task]
- Waiting on [dependency/decision]
### Resolution Path
- Option 1: [approach]
- Option 2: [approach]
### Help Needed
@[username] - [specific request]
EOF
)"
## Status Update
**Status**: [In Progress | Blocked | Complete]
### Summary
[1-2 sentences about current state]
### Details
[Additional context if needed]
### Next Steps
1. [Step 1]
2. [Step 2]
## Review Complete
### Summary
[Brief summary of review]
### Findings
1. [Finding 1]
2. [Finding 2]
### Recommendations
- [Recommendation 1]
- [Recommendation 2]
## Investigation Complete
### Root Cause
[What's causing the issue]
### Evidence
- [Evidence 1]
- [Evidence 2]
### Fix Approach
[How to fix it]
### Testing Plan
- [ ] Unit test for regression
- [ ] Integration test
For complex content with special characters:
# Create temp file
cat > /tmp/update.md << 'EOF'
## Update
Complex content with `code` and special chars...
EOF
# Post using file
gh issue comment <number> --body-file /tmp/update.md
# Clean up
rm /tmp/update.md
| Problem | Solution |
|---|---|
| Issue locked | Contact maintainer or use PR comments |
| Rate limited | Wait and retry |
| Auth error | Run gh auth status |
| Content too long | Split into multiple comments |
.claude/shared/github-issue-workflow.md for complete workflowRun section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.