forked from anomalyco/opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.ts
More file actions
42 lines (38 loc) · 1.25 KB
/
Copy pathgithub.ts
File metadata and controls
42 lines (38 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Effect } from "effect"
import { cmd } from "./cmd"
import { effectCmd } from "../effect-cmd"
export { extractResponseText, formatPromptTooLargeError, parseGitHubRemote } from "./github.shared"
export const GithubInstallCommand = effectCmd({
command: "install",
describe: "install the GitHub agent",
handler: () =>
Effect.gen(function* () {
const { githubInstall } = yield* Effect.promise(() => import("./github.handler"))
return yield* githubInstall()
}),
})
export const GithubRunCommand = effectCmd({
command: "run",
describe: "run the GitHub agent",
builder: (yargs) =>
yargs
.option("event", {
type: "string",
describe: "GitHub mock event to run the agent for",
})
.option("token", {
type: "string",
describe: "GitHub personal access token (github_pat_********)",
}),
handler: (args) =>
Effect.gen(function* () {
const { githubRun } = yield* Effect.promise(() => import("./github.handler"))
return yield* githubRun(args)
}),
})
export const GithubCommand = cmd({
command: "github",
describe: "manage GitHub agent",
builder: (yargs) => yargs.command(GithubInstallCommand).command(GithubRunCommand).demandCommand(),
async handler() {},
})