
from axiom-public15
Automates developer outreach: find relevant GitHub repos, enrich maintainer profiles, draft personalized messages, and track campaign contacts without paid APIs
Automates the workflow of developer outreach by searching GitHub for relevant projects, enriching maintainer profiles with public metadata, generating personalized outreach drafts, and tracking campaign status. The skill provides scripts to discover repos, enrich profiles, draft emails, run campaigns, and maintain a local contact database.
Use this when you need to run targeted developer outreach at scale — e.g., recruiting contributors, pitching integrations, or building partnerships. Good for running discovery queries, generating tailored messages quickly, and keeping a local history of contacts and statuses.
Designed for agents with shell/CLI capabilities and GitHub access (agents using gh/CLI integration, Copilot/Code-style agents that can run bash).
Outreach Automator automates GitHub-based developer outreach: discover repos, enrich maintainer profiles, draft personalized messages, and track campaigns. All four scripts failed in testing because they require CLI arguments — expected behavior for command-line tools. Scripts use gh CLI exclusively (no paid APIs), have proper error handling with set -euo pipefail, and produce structured JSON output.
Shell variable expansion in gh api calls (e.g. $QUERY, $USERNAME) could be an injection risk if untrusted input is passed. Scripts are well-organized with clear separation of concerns. campaign.sh orchestrates the other scripts nicely. track.sh uses atomic file writes (tmp+mv pattern).