forked from AutoMaker-Org/automaker
-
Notifications
You must be signed in to change notification settings - Fork 0
feat(Beads): Implement full Kanban board UI for issue tracking #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
0xtsotsi
merged 4 commits into
main
from
codex/github-mention-featbeads-implement-full-kanban-board-ui
Dec 24, 2025
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
eb9e242
Changes from main
0xtsotsi e5d51b3
feat(Beads): implement full Kanban board UI for issue tracking
0xtsotsi 898d325
Fix beads API payloads and harden CLI calls
0xtsotsi fd31d73
Merge remote-tracking branch 'origin/main' into codex/github-mention-…
0xtsotsi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 0.34.0 |
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "pid": 8024, | ||
| "parent_pid": 7988, | ||
| "database": "/home/oxtsotsi/Webrnds/DevFlow/.beads/beads.db", | ||
| "version": "0.34.0", | ||
| "started_at": "2025-12-24T05:32:47.425187425Z" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| # Automaker Project Configuration | ||
| # Copy this file to .env and configure your settings | ||
|
|
||
| # ============================================ | ||
| # Beads UI Configuration (OPTIONAL) | ||
| # ============================================ | ||
|
|
||
| # Path to the bd binary (optional, beads-ui usually auto-detects) | ||
| # Only needed if bd is not in your standard PATH | ||
| # BD_BIN=/home/oxtsotsi/.local/bin/bd | ||
|
|
||
| # Override runtime directory for beads-ui PID/logs (optional) | ||
| # Defaults to $XDG_RUNTIME_DIR/beads-ui or system temp dir | ||
| # BDUI_RUNTIME_DIR=/tmp/beads-ui | ||
|
|
||
| # Beads UI server bind address (default: 127.0.0.1) | ||
| # HOST=127.0.0.1 | ||
|
|
||
| # Beads UI server port (default: 3000) | ||
| # Note: This may conflict with other services running on port 3000 | ||
| # PORT=3000 | ||
|
|
||
| # Enable debug logging for beads-ui (optional) | ||
| # DEBUG=beads-ui:* | ||
|
|
||
| # ============================================ | ||
| # Automaker Server Configuration | ||
| # ============================================ | ||
|
|
||
| # Your Anthropic API key for Claude models | ||
| ANTHROPIC_API_KEY=sk-ant-... | ||
|
|
||
| # API key for authenticating requests (leave empty to disable auth) | ||
| # If set, all API requests must include X-API-Key header | ||
| AUTOMAKER_API_KEY= | ||
|
|
||
| # Root directory for projects and file operations | ||
| # If set, users can only create/open projects and files within this directory | ||
| # Recommended for sandboxed deployments (Docker, restricted environments) | ||
| # Example: ALLOWED_ROOT_DIRECTORY=/projects | ||
| ALLOWED_ROOT_DIRECTORY= | ||
|
|
||
| # CORS origin - which domains can access the API | ||
| # Use "*" for development, set specific origin for production | ||
| CORS_ORIGIN=* | ||
|
|
||
| # Port to run the Automaker server on (default: 3008) | ||
| PORT=3008 | ||
|
|
||
| # Data directory for sessions and metadata | ||
| DATA_DIR=./data | ||
|
|
||
| # Enable/disable terminal access (default: true) | ||
| TERMINAL_ENABLED=true | ||
|
|
||
| # Password to protect terminal access (leave empty for no password) | ||
| # If set, users must enter this password before accessing terminal | ||
| TERMINAL_PASSWORD= | ||
|
|
||
| # Enable request logging (default: false) | ||
| ENABLE_REQUEST_LOGGING=false |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file appears to be a runtime lock file and contains a hardcoded, user-specific path (
/home/oxtsotsi/...). Such files should not be committed to the repository. Please add.beads/to your.gitignorefile to prevent these files from being tracked.