Files
wehub-resource-sync 4b6817381b
Benchmark image — build + push to ECR (any adapter) / build + push (push) Waiting to run
CI / quality (ubuntu-latest) (push) Waiting to run
CI / test (tools-runtime) (push) Waiting to run
CI / test (e2e-general) (push) Waiting to run
CI / test (cli-runtime) (push) Waiting to run
CI / test (e2e-provider-and-openclaw) (push) Waiting to run
CI / test (integrations-and-misc) (push) Waiting to run
CI / coverage-report (push) Blocked by required conditions
CI / test-kubernetes (push) Waiting to run
CI / should-run-thorough (push) Waiting to run
CI / test-thorough (cloudwatch-demo) (push) Blocked by required conditions
CI / test-thorough (flink-ecs) (push) Blocked by required conditions
CI / test-thorough (upstream-lambda) (push) Blocked by required conditions
CI / test-thorough (prefect-ecs-fargate) (push) Blocked by required conditions
CodeQL / Analyze (python) (push) Waiting to run
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Blocked by required conditions
Release / publish-release (push) Blocked by required conditions
Release / publish-main-release (push) Blocked by required conditions
Release / prepare (push) Waiting to run
Release / verify (push) Blocked by required conditions
Release / build-python-dist (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Blocked by required conditions
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Waiting to run
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:10:45 +08:00

1.9 KiB

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

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
  4. Fork and branchgit 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:
   make lint && make format-check && make typecheck && make test-cov
  1. Open a pull request — link the issue with Fixes #123 in your PR description

Full contribution flow is in CONTRIBUTING.md.

Ask for help

Stuck? Don't guess — ask early.

  • Discord: #contribute
  • 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)