16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
import { EOL } from "os"
|
|
import { Effect } from "effect"
|
|
import { Skill } from "../../../skill"
|
|
import { effectCmd } from "../../effect-cmd"
|
|
|
|
export const SkillCommand = effectCmd({
|
|
command: "skill",
|
|
describe: "list all available skills",
|
|
builder: (yargs) => yargs,
|
|
handler: Effect.fn("Cli.debug.skill")(function* () {
|
|
const skill = yield* Skill.Service
|
|
const skills = yield* skill.all()
|
|
process.stdout.write(JSON.stringify(skills, null, 2) + EOL)
|
|
}),
|
|
})
|