一键导入
doc-issue-readme
Post structured documentation to GitHub issue as a comment. Use when starting work on an issue to document approach and track progress.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Post structured documentation to GitHub issue as a comment. Use when starting work on an issue to document approach and track progress.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run 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.
| name | doc-issue-readme |
| description | Post structured documentation to GitHub issue as a comment. Use when starting work on an issue to document approach and track progress. |
| category | doc |
Post structured documentation to GitHub issues following ML Odyssey standards.
# Post documentation to issue
gh issue comment <number> --body "$(cat <<'EOF'
## Issue Documentation
### Objective
[What this issue accomplishes]
### Approach
[Implementation approach]
### Files to Modify
- path/to/file1
- path/to/file2
### Success Criteria
- [ ] Criterion 1
- [ ] Criterion 2
EOF
)"
gh issue comment <number> --body "$(cat <<'EOF'
## Implementation Started
**Branch**: `<branch-name>`
### Objective
[1-2 sentence description of what this issue accomplishes]
### Approach
[Brief description of implementation approach]
### Files to Create/Modify
- [ ] `path/to/file1.mojo` - [purpose]
- [ ] `path/to/file2.mojo` - [purpose]
### Success Criteria
- [ ] Criterion 1
- [ ] Criterion 2
### References
- Related: #[other-issue]
- Design: [link to relevant docs]
EOF
)"
gh issue comment <number> --body "$(cat <<'EOF'
## Progress Update
### Completed
- [x] Item 1
- [x] Item 2
### In Progress
- [ ] Item 3 (70%)
### Blockers
None / [describe blockers]
### Notes
[Any findings or decisions made]
EOF
)"
gh issue comment <number> --body "$(cat <<'EOF'
## Implementation Complete
**PR**: #<pr-number>
### Summary
[What was implemented]
### Files Changed
- `path/to/file1.mojo` - [change description]
- `path/to/file2.mojo` - [change description]
### Testing
- All tests pass
- Coverage: X%
### Verification
- [x] `pixi run test` passes
- [x] `just pre-commit-all` passes
EOF
)"
gh issue view <number> --commentsGood: "Implement tensor operations (add, multiply, matmul) with SIMD optimization" Bad: "Work on tensors"
Good: "Use SIMD for vectorized operations, implement lazy evaluation for chain operations" Bad: "Code stuff"
Must be measurable checkboxes:
| Issue | Fix |
|---|---|
| Issue locked | Contact maintainer |
| Rate limited | Wait and retry |
| Content too long | Split into multiple comments |
| Missing context | Run gh issue view <number> --comments first |
.claude/shared/github-issue-workflow.md for workflow patternsgh-read-issue-context skill for reading issue contextgh-post-issue-update skill for posting updates