Search for new tech weeklies to add to config
Searches GitHub for new tech weeklies that accept submissions and suggests additions to your config file. Use when you want to discover new publications to share your work with.
/plugin marketplace add ourines/oss-promoter/plugin install oss-promoter@oss-promoterFind new tech weeklies on GitHub that accept submissions.
Use gh to search for weekly repositories with >100 stars:
# Search for "weekly" repos
gh search repos "weekly" --stars=">100" --limit=50 --json fullName,stargazersCount,description
# Search for "周刊" repos
gh search repos "周刊" --stars=">100" --limit=50 --json fullName,stargazersCount,description
Filter to find actual tech weeklies (not just repos with "weekly" in name):
For each candidate, use WebFetch to check:
gh repo view <repo> --json hasIssuesEnabled,readme
If new weeklies are found, suggest additions to weeklies.json:
{
"id": "new-weekly-id",
"name": "周刊名称",
"repo": "owner/repo",
"stars": 1000,
"language": "zh",
"type": "issue",
"title_template": "【推荐】{name} - {short_description}",
"categories": ["tech", "tools"],
"enabled": true
}
Output a table of discovered weeklies:
| Repo | Stars | Description | Accepts Issues | Added |
|---|---|---|---|---|
| owner/repo | 1000 | Description | ✅ | ❌ New |
If GitHub search is insufficient, use WebSearch: