outreach(feat): move distribution tracking to Airtable#22
Merged
Conversation
33b0e63 to
903e51b
Compare
Replace the hand-edited LAUNCH.md ledger with an Airtable base so multiple outreach agents can run in parallel without racing on a shared file. - Add scripts/outreach-tracker.mjs: zero-dependency Node helper (list/get/claim/release/upsert/set-status/log) with upsert-on-Key dedup, a 15-minute claim protocol, and 429 backoff. Kept out of the npm package. - Redirect agent.md to read and write the tracker instead of LAUNCH.md; add Concurrency and Owned-Listings-On-Release sections; drop the LAUNCH.md commit step from Durable State. - Slim LAUNCH.md to positioning, channel copy, launch order, policy gates, and metrics, with a pointer to the Airtable base. - Freeze archive/launch-ledger-history.md as the pre-Airtable record. - Add token guards to .gitignore and a `make outreach` helper target. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Summary: - replace mutable target claims with append-preserving lease records - add deterministic contention, owner-scoped release, and input validation - cover tracker behavior with a dependency-free fake Airtable server Rationale: - prevent stale workers from clearing another workflow's active claim - keep parallel outreach runs deduplicated without rewriting ledger history Tests: - make test - make lint - git diff --check - live Airtable claim, rejection, release, and reclaim smoke test
903e51b to
b896401
Compare
Summary: - validate calendar dates and required option values - reject unknown set-status flags and redact reflected tokens - widen the claim-expiry test margin to avoid timing flakes Rationale: - keep malformed operator input from reaching Airtable - preserve the tracker token boundary in API error output - make lease tests reliable on slower CI runners Tests: - make test - make lint - git diff --check
Summary: - move repository skills into Codex's .agents/skills discovery path - add exact Airtable tracker, claim, release, and handoff commands - strengthen layout, workflow, approval, and product-contract tests Rationale: - ensure Codex can discover and execute each outreach phase independently - keep concurrent target changes lease-safe and explicitly approval-gated Tests: - make test - make lint - git diff --check - quick_validate.py for all four skills
Summary: - reconcile duplicate submissions before closing-draft handoff - support issue-first qualification and monitoring repair paths - keep external observations out of shell source - clarify approval-gated closing metadata and status mappings Rationale: - prevent duplicate outreach and stranded Airtable records - make partial writes and claim cleanup explicit - preserve platform history while repairing broken links Tests: - make test - make lint - quick_validate.py for all four skills - plugin-eval analyze for qualification and monitoring - fresh-context qualification and monitoring scenarios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Targets, append-onlyLog, and append-preservingClaimsrecords.scripts/outreach-tracker.mjshelper for list, get, claim, release, upsert, status, and log operations.Claim safety
Verification
make testmake lintgit diff --check[0,3], non-owner release rejected, held target blocked, release and reclaim succeededThe operational tracker remains excluded from the published npm package.