developer_board AgentBoard.

AgentBoard collects work items and runs workspace actions.

A Rust CLI for local agent queues: Jira, Linear, markdown, GitHub Projects, and GitHub Issues in; synced store, worktrees, and commands out.

[[sources]]
id = "jira-ready"

[sources.source]
kind = "jira"
site = "https://example.atlassian.net"
jql = "project = AB AND statusCategory = Todo"

[[sources.actions]]
uses = "agentboard/create-worktree"

[sources.actions.with]
repo = "~/dev/myrepo"
root = "~/dev/myrepo.trees/{{ item.id }}"
branch = "feat/{{ item.id }}-{{ item.summary | slugify }}"

[[sources.actions]]
uses = "agentboard/run-cmd"

[sources.actions.with]
cmd = '''
zellij action new-tab 
  --name "{{ item.id }}"
  --cwd "~/dev/myrepo.trees/{{ item.id }}" 
  pi
'''