Skip to content

chore: remove an unsigned contributor from CONTRIBUTORS - #99

Merged
bkd-dotcom merged 1 commit into
mainfrom
chore/remove-unsigned-contributor
Aug 18, 2026
Merged

chore: remove an unsigned contributor from CONTRIBUTORS#99
bkd-dotcom merged 1 commit into
mainfrom
chore/remove-unsigned-contributor

Conversation

@bkd-dotcom

Copy link
Copy Markdown
Member

@adity982 never signed the CLA, so they should not be in CONTRIBUTORS.md.

Verified against the authoritative store

signatures/cla.json on the cla-signatures branch:

{
  "signedContributors": [
    { "name": "AdvaitVarhade", "pullRequestNo": 73, ... }
  ]
}

One signer. adity982 is not in it, and no cla check ever reported on feat/aider-executor.

Worth noting because it's misleading: grepping #55 for "I have read the CLA" returns two hits, but both are the bot's own instruction text and my quote of it — neither is a signature. The signature file is the thing to check.

CONTRIBUTORS.md says the people listed are acknowledged "for contributions accepted under the Contributor License Agreement", so an unsigned contribution doesn't belong there.

⚠️ This does not close the provenance question

Removing the credit line is the smaller half. The Aider adapter merged in #96 is a port of their #55, and signetry_core/executors/aider.py still records that derivation in its module docstring:

Ported from @adity982's implementation in PR #55

Without a signed CLA the copyright assignment never happened, so the repo now holds code derived from an unassigned contribution — and removing the attribution while keeping the derivation is the least defensible combination of the two.

Two ways to resolve it, and it's a licensing call rather than a technical one:

  1. Reimplement aider.py from the sibling adapters (codex.py / claude_code.py, both owner-authored). The Executor protocol dictates most of the shape, Aider's CLI dictates the flags, and the repo's security model dictates the redaction — so an independent implementation is straightforward. Then drop the docstring credit. Removes the exposure entirely.
  2. Ask @adity982 to sign, and restore the credit if they do.

I've left #55 open pending that decision rather than closing it, since option 2 keeps it alive.

Say which and I'll do it.

@github-actions

Copy link
Copy Markdown

Signetry Reviewer — 🟡 Needs human review

A human should decide — the required check is pending.

Deterministic gates (the authority)

Gate Status
Required status check ⏳ pending
Secret scan ✅ clean
CI permission / OIDC ✅ no forbidden change
Dependency skew ✅ ok
All green

Findings

No issues found by the deterministic scanners.

Merge

A human should review and merge.

This review is advisory. It never merges on its own judgement — the deterministic gates + a human are the authority. Findings can have false negatives; a green bot verdict is not a guarantee.

@adity982 never signed the CLA. Verified against the authoritative store —
signatures/cla.json on the cla-signatures branch lists exactly one signed
contributor (AdvaitVarhade, from #73). The two "I have read the CLA"
strings on #55 are the bot's own instruction text and a quote of it in a
maintainer comment, not a signature.

CONTRIBUTORS.md states that the people listed are acknowledged "for
contributions accepted under the Contributor License Agreement", so an
unsigned contribution does not belong in that list.

NOTE — this leaves an open provenance question, not resolved here. The
Aider adapter merged in #96 is a port of their #55, and aider.py still
records that derivation in its module docstring. Without a signed CLA the
copyright assignment never happened, so the repo now contains code derived
from an unassigned contribution. That needs a decision (reimplement from
the sibling adapters, or obtain a signature) — flagged rather than settled
by this commit.
@bkd-dotcom
bkd-dotcom force-pushed the chore/remove-unsigned-contributor branch from 0f6c46b to e863872 Compare August 18, 2026 20:29
@bkd-dotcom
bkd-dotcom merged commit ecaa5bd into main Aug 18, 2026
8 checks passed
@bkd-dotcom
bkd-dotcom deleted the chore/remove-unsigned-contributor branch August 18, 2026 20:41
bkd-dotcom added a commit that referenced this pull request Aug 18, 2026
Resolves the provenance question flagged in #99.

The version merged in #96 was a port of an unsigned contribution (#55).
Without a signed CLA the copyright assignment never happened, so keeping
derived code — especially after removing the attribution — was the least
defensible combination. This rewrites the adapter from the sibling
adapters (codex.py / claude_code.py, both owner-authored) so nothing in
the tree derives from an unassigned contribution, and drops the
attribution from the module docstring and the v0.7.0 changelog entry.

Behaviour is unchanged: all 33 executor tests written against the previous
implementation pass without modification, because they assert behaviour
rather than structure.

Two things the rewrite adds, both from house patterns the port lacked:

  * --model is validated before use, like the Codex adapter's -m value, so
    a caller-supplied string cannot smuggle shell metacharacters or extra
    arguments into the command. The first character must be alphanumeric —
    my own test caught that a naive character class accepts
    "--dangerously-x", since "-" is legal inside a model name, and an
    argument parser may read a leading dash as a new option rather than as
    --model's value.
  * The withheld-authority flags are a named constant, so removing one
    shows up in review instead of disappearing into the command
    construction. A test asserts the set, not just individual flags.

Also logs a non-zero exit like claude_code.py does, which the port did not.

Co-authored-by: Binay <bkd-dotcom@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant