-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.beans.yml
More file actions
32 lines (32 loc) · 977 Bytes
/
.beans.yml
File metadata and controls
32 lines (32 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Beans configuration
# See: https://github.com/hmans/beans
project:
# Human-readable project name (displayed in the UI)
name: beans
beans:
# Directory where bean files are stored
path: .beans
# Prefix for bean IDs (e.g., "myproject-abc1")
prefix: beans-
# Length of the random ID suffix
id_length: 4
# Default status for new beans
default_status: todo
# Default type for new beans
default_type: task
worktree:
# Git ref to use as the base for new worktree branches (default: main)
base_ref: origin/main
integrate: pr
# Shell command to run inside a worktree after creation (e.g. "pnpm install")
setup: mise trust && mise setup
# Shell command to run the project (adds a "Run" button to workspace toolbar)
run: mise dev
agent:
# Enable agent functionality in the web UI (true, false)
enabled: true
# Default mode for agent sessions (act, plan)
default_mode: act
server:
# Port for the web UI (used by `beans-serve`)
port: 8080