Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .changeset/tugasna-cli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"@sawala/cli": minor
---

Add a `sawala tugasna` command group for driving Tugasna work-tracking boards
from the CLI. You can now list/create/update/delete/archive boards and their
statuses, manage items on a board (create, update, move, delete), work the
project backlog (create, place onto a board, unplace), read and write item
comments, and read the project timeline and tags — all scoped to the active
project (`sawala project use <slug>`). Write commands take their body via
`-f/--file` or `-d/--data`, support `--dry-run`, and destructive verbs require
`-y/--yes`.
2 changes: 2 additions & 0 deletions packages/sawala/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { createLogoutCommand } from './commands/logout'
import { createOrgCommand } from './commands/org'
import { createProjectCommand } from './commands/project'
import { createSebarCommand } from './commands/sebar'
import { createTugasnaCommand } from './commands/tugasna'
import { createWhoamiCommand } from './commands/whoami'

export function createProgram(): Command {
Expand All @@ -32,6 +33,7 @@ export function createProgram(): Command {
program.addCommand(createDatanaCommand())
program.addCommand(createAjenaCommand())
program.addCommand(createSebarCommand())
program.addCommand(createTugasnaCommand())

return program
}
Expand Down
Loading
Loading