4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
49 lines
1.9 KiB
Markdown
49 lines
1.9 KiB
Markdown
# Good First Issues
|
|
|
|
New to OpenSRE? This page is your starting point.
|
|
|
|
## What is a "good first issue"?
|
|
|
|
A good first issue is a task that is:
|
|
|
|
- **Self-contained** — you don't need to understand the full codebase to solve it
|
|
- **Well-scoped** — the expected output is clearly defined
|
|
- **Low risk** — a mistake won't break critical paths
|
|
|
|
They're designed so you can make a real contribution while getting familiar with the project.
|
|
|
|
## Find open issues
|
|
|
|
Browse issues tagged with the `good first issue` label:
|
|
|
|
[View good first issues on GitHub](https://github.com/Tracer-Cloud/opensre/issues?q=is%3Aopen+label%3A%22good+first+issue%22)
|
|
|
|
## How to pick and work on one
|
|
|
|
1. **Browse the list** — read the issue description and comments before claiming
|
|
2. **Comment to claim it** — post a comment like `"I'd like to work on this"` so maintainers can assign it to you
|
|
3. **Read the setup guide** — get your environment running first: [SETUP.md](../../SETUP.md)
|
|
4. **Fork and branch** — `git checkout -b issue/123-short-description`
|
|
5. **Make your changes** — keep the scope tight; one issue, one PR
|
|
6. **Run local checks** before opening a PR:
|
|
```bash
|
|
make lint && make format-check && make typecheck && make test-cov
|
|
```
|
|
7. **Open a pull request** — link the issue with `Fixes #123` in your PR description
|
|
|
|
Full contribution flow is in [CONTRIBUTING.md](../../CONTRIBUTING.md).
|
|
|
|
## Ask for help
|
|
|
|
Stuck? Don't guess — ask early.
|
|
|
|
- **Discord:** [#contribute](https://discord.gg/opensre)
|
|
- **GitHub:** comment directly on the issue
|
|
|
|
## A few tips
|
|
|
|
- Read through `CONTRIBUTING.md` before you start — it answers most questions upfront
|
|
- One concern per PR; don't bundle unrelated fixes
|
|
- If the issue feels unclear, ask for clarification before writing code
|
|
- AI-assisted code is fine, but you must understand and be able to explain every line (see [AI-Assisted PRs](../../CONTRIBUTING.md#ai-assisted-prs))
|