test(cli): batch 66 (5 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:11 +09:00
parent b66398c3a9
commit 5f13b823cc
5 changed files with 484 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
export const STAR_REPOSITORIES = [
"code-yeongyu/oh-my-openagent",
"code-yeongyu/lazycodex",
] as const
export function formatGitHubStarCommand(repository: string): string {
return `gh api --silent --method PUT /user/starred/${repository} >/dev/null 2>&1 || true`
}