You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
β Researched across multiple files and modules
β Owned implementation decisions
β Written thorough, meaningful tests
β Delivered a clean, review-ready pull request
π Problem Description
The repository currently maintains separate GitHub Actions workflows and scripts for automatically assigning contributors to beginner and good-first-issue (GFI) issues.
These workflows contain overlapping logic and require independent maintenance. As the automation evolves, changes often need to be implemented in multiple locations, increasing the risk of inconsistent behavior and duplicated code.
Additionally, automatic assignment support is currently limited to beginner and GFI issues. Intermediate and advanced issues do not participate in the same automated assignment flow, resulting in inconsistent contributor experiences across issue difficulty levels.
π‘ Expected Solution
Implement a consolidated assignment automation solution that replaces duplicated beginner and GFI assignment logic with a shared implementation.
The resulting solution should preserve existing assignment behavior for beginner and GFI issues while providing a clear path for supporting intermediate and advanced issue assignment workflows.
Intermediate issues are high-risk. We expect more than just a 'working solution' and will recommend beginner issues if the PR does not meet these standards.
π Concrete Prerequisites
Advanced Programming Language: Higher level intermediate or advanced programming language.
Expertise: Strong understanding of files related to this issue (research before claiming!).
Proven History: Successfully completed β₯ 5 beginner issues in this repo.
Note
CI/CD Exception: For issues focused on GitHub Actions / Workflows, the repo-specific thresholds above may be waived if the contributor demonstrates intermediate-level proficiency in CI/CD.
If this feels like too big a step, that is completely fine β try a Beginner Issue first or a different Intermediate Issue. You can always come back when you are ready.
β οΈ AI Usage Policy
Using AI to generate code for Intermediate issues is strictly discouraged
Using AI as the main source of research is strictly discouraged, refer to language and library documentation, protobuf definitions and other SDKs.
β±οΈ Timeline & Workflow
Typical time: ~2 weeks / ~25 hours.
π΄ Completing an intermediate issue in 1β3 days is a red flag.
Tip
Suggested: share your proposed implementation approach as a comment before writing code to get early feedback and avoid wasted effort.
π§ͺ Testing Requirements
How you test depends on the type of change.
Important
At the intermediate level, testing is a major component.
Each method you implement should be verified. Tests should cover happy paths,
edge cases, and error handling.
Source code changes (e.g. in src/):
Write unit tests covering happy path, edge cases, and error handling
Run tests locally: uv run pytest tests/unit/<specific_file>_test.py -v
Check consistency with similar classes already in the SDK β use the same patterns
Integration tests will run automatically when you push
GitHub Actions / workflow changes (e.g. in .github/):Guide
Test by merging to your fork's main and simulating the scenario
Create test issues or PRs as evidence and link them in your PR
Include screenshots of workflow runs where applicable
Example script changes (e.g. in examples/):
Run the example script and confirm output matches expected behavior
Compare your example with similar existing examples for consistency
You will need a Hedera Portal account for testnet credentials
π‘οΈ Quality & Review Standards
Intermediate PRs must be "working, maintainable, and aligned with SDK architecture."
Working: The implementation must solve the problem and meet the acceptance criteria.
Maintainable: Code should be clear and concise enough for others to understand and debug without your assistance.
SDK Alignment: The solution should fit well with existing SDK patterns and abstractions.
Backward Compatibility: Public API signatures must be preserved.
Comprehensive Testing: Must include unit and integration tests covering all new logic paths, edge cases, and failure modes. AI generated tests based on AI generated code is grounds for immediate rejection.
β οΈ Breaking changes
Before changing any function signature, return type, or public API β stop and check
If a breaking change is unavoidable: get explicit maintainer approval before implementing
All existing tests should pass as-is.
π€ AI notes
AI often has outdated real-world knowledge: it will not be able to identify current packages.
AI has gaps or incorrect understanding of repo-specific patterns, logic, and protobuf schemes.
β PR Quality Checklist
Before opening your PR, confirm:
I have spent the majority of my time researching the problem and solution space extensively, including reviewing relevant code, documentation, and external resources.
My implementation works but is also of high quality - including maintainability, readability, and architectural fit.
I have checked for breaking changes - no public APIs regress.
The system design fits with current Hiero SDK architectural approaches.
Every line of code is personally understood and explainable.
Before requesting a review, confirm:
I have reviewed the diff line by line.
My implementation fully addresses the problem described above.
I did not modify files unrelated to this issue
Clean git history β no rebase artifacts, merge commits, or unrelated files
My commits are signed: git commit -S -s -m "chore: description" β Signing guide
I have verified naming, types, and field ordering against pinned Protobufs.
I have applied appropriate linting, code quality, and formatting tools used in this repo.
I have included appropriate tests and all CI checks pass.
Double and triple check β intermediate PRs are time-consuming to review
π Workflow quick reference
You know the workflow β here are the links if you need them:
π§βπ» Intermediate Issue
Welcome! This is an Intermediate Issue touching core SDK architecture.
π When this issue is complete, you will have:
β Researched across multiple files and modules
β Owned implementation decisions
β Written thorough, meaningful tests
β Delivered a clean, review-ready pull request
π Problem Description
The repository currently maintains separate GitHub Actions workflows and scripts for automatically assigning contributors to beginner and good-first-issue (GFI) issues.
.github/workflows/bot-gfi-assign-on-comment.yml
.github/workflows/bot-beginner-assign-on-comment.yml
These workflows contain overlapping logic and require independent maintenance. As the automation evolves, changes often need to be implemented in multiple locations, increasing the risk of inconsistent behavior and duplicated code.
Additionally, automatic assignment support is currently limited to beginner and GFI issues. Intermediate and advanced issues do not participate in the same automated assignment flow, resulting in inconsistent contributor experiences across issue difficulty levels.
π‘ Expected Solution
Implement a consolidated assignment automation solution that replaces duplicated beginner and GFI assignment logic with a shared implementation.
The resulting solution should preserve existing assignment behavior for beginner and GFI issues while providing a clear path for supporting intermediate and advanced issue assignment workflows.
π Background Research
.github/workflows/bot-gfi-assign-on-comment.js
.github/workflows/bot-gfi-assign-on-comment.yml
.github/workflows/bot-beginner-assign-on-comment.js
.github/workflows/bot-beginner-assign-on-comment.yml
π¬ Technical Domains
.protofiles,_to_proto()/_from_proto()correctness)π§ Intermediate Contributors β Prerequisites & Expectations
Caution
Intermediate issues are high-risk. We expect more than just a 'working solution' and will recommend beginner issues if the PR does not meet these standards.
π Concrete Prerequisites
Note
CI/CD Exception: For issues focused on GitHub Actions / Workflows, the repo-specific thresholds above may be waived if the contributor demonstrates intermediate-level proficiency in CI/CD.
If this feels like too big a step, that is completely fine β try a Beginner Issue first or a different Intermediate Issue. You can always come back when you are ready.
β±οΈ Timeline & Workflow
Tip
Suggested: share your proposed implementation approach as a comment before writing code to get early feedback and avoid wasted effort.
π§ͺ Testing Requirements
How you test depends on the type of change.
Important
At the intermediate level, testing is a major component.
Each method you implement should be verified. Tests should cover happy paths,
edge cases, and error handling.
Source code changes (e.g. in
src/):uv run pytest tests/unit/<specific_file>_test.py -vGitHub Actions / workflow changes (e.g. in
.github/): Guidemainand simulating the scenarioExample script changes (e.g. in
examples/):π‘οΈ Quality & Review Standards
Intermediate PRs must be "working, maintainable, and aligned with SDK architecture."
π€ AI notes
β PR Quality Checklist
Before opening your PR, confirm:
Before requesting a review, confirm:
git commit -S -s -m "chore: description"β Signing guideπ Workflow quick reference
You know the workflow β here are the links if you need them:
/assignbelowπ Resources & Support
π Stuck?
Tip
Comment on this issue: and describe what you have tried. A maintainer will respond.
Project references:
Protobuf references:
Python references:
Community: