Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e2f1179
chore: remove committed build artifacts and fix repository hygiene
gautammanak1 Aug 13, 2026
ff3eca2
fix(ci): make the test job actually run tests, and let review-require…
gautammanak1 Aug 13, 2026
a89aada
fix(deps): restore ag2-agents and ticketlens-agent, broken by upstrea…
gautammanak1 Aug 13, 2026
c3da4d3
docs: fix the examples index
gautammanak1 Aug 13, 2026
562db9c
fix(ci): stop lint, format and typecheck from failing on unrelated ch…
gautammanak1 Aug 13, 2026
894ba3c
fix(examples): remove committed PII and correct broken docs and env t…
gautammanak1 Aug 13, 2026
3e6cd2d
fix(ci): pin the repo-wide ruff rule selection
gautammanak1 Aug 13, 2026
7f063a3
style: ruff-format duffel-agent/protocols/chat_proto.py
gautammanak1 Aug 13, 2026
3e88a2c
docs: record the audit fixes in CHANGELOG.md
gautammanak1 Aug 13, 2026
058b164
fix(ci): stop changelog-check failing on large PRs
gautammanak1 Aug 13, 2026
70d4f26
chore: remove GSSoC '26 program automation
gautammanak1 Aug 13, 2026
f7cdbc7
docs: restructure README for discoverability
gautammanak1 Aug 13, 2026
767ced2
fix(ci): restore the test runner script
gautammanak1 Aug 13, 2026
cfef05f
feat(ci): ASI:One AI code review on pull requests
gautammanak1 Aug 13, 2026
1f0434c
fix(examples): restore examples that cannot start, and add missing de…
gautammanak1 Aug 13, 2026
4ee9a59
docs(ci): clarify that GITHUB_TOKEN is the automatic Actions token
gautammanak1 Aug 13, 2026
ed21fa6
fix: resolve reported security and reliability bugs in examples
gautammanak1 Aug 13, 2026
c226545
fix: make Dockerfile and setup.sh work on Windows and without require…
gautammanak1 Aug 13, 2026
347487e
test: pin calculator RCE fix, narrow remaining bare excepts
gautammanak1 Aug 13, 2026
70cc97c
chore: drop the root changelog and the CI gates that required it
gautammanak1 Aug 13, 2026
0f5f452
fix(ci): stop failing on file deletions, formatting drift and latent …
gautammanak1 Aug 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file removed .DS_Store
Binary file not shown.
18 changes: 13 additions & 5 deletions .github/BRANCH_PROTECTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,36 @@ Community PRs must **not merge without review**. Configure these settings on the

3. **Require status checks to pass before merging**
- Require branches to be up to date before merging: recommended
- Required checks (match workflow job names in `pull_request_ci.yml`):
- Required checks (must match actual workflow job names — a required check that
no workflow produces blocks every PR indefinitely):

From `pull_request_ci.yml`:
- `stargazer-gate`
- `contributor-path-check`
- `changelog-check`
- `review-required`
- `lint`
- `format`
- `typecheck`
- `validate-architecture`
- `test`

From `review-required.yml`:
- `review-required`

4. **Do not allow bypassing the above settings** (recommended for `main`)

5. **Restrict who can push to matching branches** (optional)
- Prevents direct pushes to `main`

## CI vs GitHub settings

- The `review-required` workflow job fails until a reviewer approves the PR.
- The `review-required` workflow job fails until a reviewer approves the PR. It lives in its own
workflow so that it also runs on `pull_request_review` events — otherwise the check would stay
red after an approval and never re-evaluate.
- Branch protection must list `review-required` as a required check, or merges can still proceed if only other checks are required.
- Admins can bypass protection unless "Include administrators" is enforced.

## After updating workflows

When new jobs are added to `pull_request_ci.yml`, re-open branch protection and add the new check names to the required list.
When jobs are added, removed or renamed in any PR workflow, re-open branch protection and update
the required check list to match. Required checks are matched by job name; a stale name that no
workflow produces will never report and will block merges forever.
Binary file removed .github/badges/ai-master.png
Binary file not shown.
Binary file removed .github/badges/contributor.png
Binary file not shown.
Binary file removed .github/badges/elitist-wizard.png
Binary file not shown.
Binary file removed .github/badges/expert-coder.png
Binary file not shown.
Binary file removed .github/badges/participant.png
Binary file not shown.
38 changes: 0 additions & 38 deletions .github/labels/gssoc-labels.json

This file was deleted.

2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Describe what this PR changes.
- [ ] I added `.env.example` if environment variables are required.
- [ ] I added demo image/GIF (if applicable).
- [ ] I added agent profile link (if applicable).
- [ ] I updated `contributors/CHANGELOG.md` for community agent changes, or root `CHANGELOG.md` for other non-doc changes.
- [ ] I updated `contributors/CHANGELOG.md`, if this PR changes a community agent.
- [ ] I added my agent to the **Community Contributors** table in root `README.md` (if new agent).
- [ ] I verified paths/commands used in docs.
- [ ] I understand this PR **requires maintainer review** before merge (`review-required` CI).
Expand Down
Loading
Loading