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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
93 changes: 89 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,20 @@ edition = "2021"
description = "Multi-agent orchestration dashboard for gbqr.us"
authors = ["gbqr.us"]
license = "MIT"
default-run = "operator"

[lib]
name = "operator"
path = "src/lib.rs"

[[bin]]
name = "operator"
path = "src/main.rs"

[[bin]]
name = "generate_types"
path = "src/bin/generate_types.rs"

[dependencies]
# TUI
ratatui = "0.29"
Expand All @@ -31,7 +40,10 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
schemars = "0.8"

# Schema and TypeScript generation
schemars = { version = "1.0", features = ["chrono04", "uuid1", "preserve_order"] }
ts-rs = { version = "10", features = ["uuid-impl", "chrono-impl", "no-serde-warnings", "serde-json-impl"] }

# CLI
clap = { version = "4", features = ["derive"] }
Expand All @@ -48,6 +60,8 @@ dirs = "5"
glob = "0.3"
regex = "1"
once_cell = "1"
lazy_static = "1"
backon = "1"

# System info (for core count)
sysinfo = "0.32"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,5 +314,6 @@ cargo run -- docs --only config
## TODO

* [ ] `--setup jira` option for jira sync for workspace setup
* [ ] `--setup notion` option for notion sync for workspace setup
* [ ] `--setup linear` option for linear kanban provider
* [ ] `--setup gitlab` option for gitlab repository provider
* [ ] `--sync https://foobar.atlassian.net --project ABC` option for jira ticket sync
Loading