feat(KB-200): add pr-create CLI command for task PR creation

- Implement kb task pr-create command to open GitHub PRs from tasks\n- Add draft PR support and title/description customization options\n- Integrate routing in CLI entry point with proper argument parsing\n- Add comprehensive test coverage for the new command\n- Update STANDALONE.md documentation and add changeset for release tracking
This commit is contained in:
gsxdsm
2026-03-31 03:27:11 -07:00
parent ab12b30751
commit 609c06f96e
5 changed files with 522 additions and 2 deletions

View File

@@ -93,6 +93,8 @@ fn task list # List all tasks
fn task show KB-001 # Show task details, steps, and log
fn task move KB-001 todo # Move a task to a column
fn task merge KB-001 # Merge an in-review task and close it
fn task pr-create KB-001 # Create a GitHub PR for an in-review task
fn task pr-create KB-001 --title "Custom PR title" --base develop --body "PR description"
fn task log KB-001 "Added context" # Add a log entry
fn task pause KB-001 # Pause a task (stops automation)
fn task unpause KB-001 # Resume a paused task