Files
oh-my-opencode/src/cli/star-request.ts
T

9 lines
273 B
TypeScript
Raw Normal View History

2026-05-30 19:12:11 +09:00
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`
}