Contribution Overview
This section explains how engineering work is proposed, tracked, and delivered in the Alternun monorepo.
It is written for:
- new contributors who need a clear path from idea to merged change
- maintainers who want consistent issue structure and status updates
- reviewers who need to understand how work is split across epics, tasks, and pull requests
Contribution Principles
The project uses a few simple operating rules:
- Track work before implementing it. Significant changes should start from a GitHub issue, not from an untracked branch.
- Split strategy from execution. Multi-step efforts should use an epic issue with linked child issues.
- Keep acceptance criteria explicit. Every issue should say what done means.
- Use labels as metadata, not decoration. Labels should answer what kind of work this is, what area it belongs to, how urgent it is, and whether it is blocked or in progress.
- Close with evidence. Issues should be closed only when their acceptance criteria are actually satisfied.
Standard Work Shape
Most work should follow this path:
- Open or confirm the GitHub issue.
- Label it by type, area, status, and priority.
- Add scope, deliverables, dependencies, and acceptance criteria.
- Link the implementation PR to the issue.
- Update status comments as meaningful milestones land.
- Close the issue only when validation is complete.
Issue Types
Alternun currently uses these issue types:
type:epicfor parent issues that coordinate multiple child issuestype:featurefor product or platform behavior changestype:specfor contracts, schemas, or design-definition worktype:taskfor focused implementation or operational work
Area Labels
Area labels help route work to the right subsystem:
area:identityarea:infraarea:backendarea:apiarea:dataarea:walletarea:blockchainarea:admin
Status And Priority
Status labels describe the current state:
status:plannedstatus:in-progressstatus:needs-validationstatus:blocked
Priority labels describe urgency:
priority:p0for critical-path or launch-blocking workpriority:p1for important near-term workpriority:p2for useful follow-up work
What To Read Next
To work inside the backlog correctly:
- Read Issue Tracking And Labels
- Then review the relevant architecture and delivery docs before implementation
When work changes repo structure or contracts, update the documentation in the same pull request whenever practical.