mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
Initial release: AI-powered job application framework
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
committed by
Mads Lorentzen
co-authored by
Claude Opus 4.6
commit
c66d599d75
@@ -0,0 +1,20 @@
|
||||
import { createCLI } from "@bunli/core"
|
||||
import { search } from "./commands/search.js"
|
||||
import { detail } from "./commands/detail.js"
|
||||
import { categories } from "./commands/categories.js"
|
||||
import { autocomplete } from "./commands/autocomplete.js"
|
||||
import { locations } from "./commands/locations.js"
|
||||
|
||||
const cli = await createCLI({
|
||||
name: "jobdanmark-cli",
|
||||
version: "1.0.0",
|
||||
description: "CLI for the Jobdanmark.dk public job search API",
|
||||
})
|
||||
|
||||
cli.command(search)
|
||||
cli.command(detail)
|
||||
cli.command(categories)
|
||||
cli.command(autocomplete)
|
||||
cli.command(locations)
|
||||
|
||||
await cli.run()
|
||||
Reference in New Issue
Block a user