Before starting work on any issue, you **must** assign it to yourself. If an issue is already assigned to someone else, **do not submit a competing PR**.
On April 11, 2026, we found 12 stale PRs caused by Rockachopa and the `[claude]` auto-bot racing on the same issues. The auto-bot merged first, orphaning the manual PRs. Assignment-as-lock prevents this race condition.
**Never** create a duplicate module at the repo root (e.g., `mnemosyne/` when `nexus/mnemosyne/` already exists). Check `FEATURES.yaml` manifests for the canonical path.
**Check the manifest before creating new PRs.** If your feature is already shipped, you're duplicating work. If it's in-progress by someone else, coordinate.
Some repos in this org (hermes-agent, the-nexus as it grows) can exceed 1000 tracked files, which causes `git clone --depth 1` to time out and also hits the Gitea tree-API cap of 1000 entries.
### Recommended clone patterns for agents
**Blobless partial clone** — fastest overall; metadata arrives immediately, blobs are fetched on demand:
```sh
git clone --filter=blob:none --depth 1 <repo-url>
```
**Treeless partial clone** — skips tree objects for past commits; best when you need full working tree but not history:
```sh
git clone --filter=tree:0 <repo-url>
```
**Sparse checkout** — only materialise the subdirectories you actually need:
git sparse-checkout set nexus tests # only check out these dirs
git checkout main
```
### Gitea tree API workaround
When the tree endpoint returns exactly 1000 entries and you suspect truncation, pass `recursive=1` and page through with the `page` parameter:
```
GET /api/v1/repos/{owner}/{repo}/git/trees/{sha}?recursive=1&page=2
```
### Why `.gitattributes` export-ignore exists
Directories marked `export-ignore` in `.gitattributes` are excluded from `git archive` tarballs and future sparse-export tooling. This reduces the surface area for export-based agent workflows. It does **not** affect `git clone` directly — use the partial-clone flags above for that.
Closed PRs receive a comment explaining which PR superseded them. If your PR was auto-closed but contains unique work, reopen it, rebase against `main`, and update the feature manifest.