Expand CLI with 15 new commands and refactored architecture#1
Open
macrivello wants to merge 2 commits into
Open
Expand CLI with 15 new commands and refactored architecture#1macrivello wants to merge 2 commits into
macrivello wants to merge 2 commits into
Conversation
Add validate, review, subtasks, tasks, context, next, agent, cleanup, pr-comment, pr-push, pr-ready, pr-review, ticket-comment, ticket-create, and ticket-update commands. Refactor merge, pr, start, and ticket commands with expanded functionality. Add external model integration, hierarchy validation, platform mapping, and ticket file utilities. Remove old per-command skill files in favor of consolidated skills (next PR). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 tasks
macrivello
commented
Feb 10, 2026
Owner
Author
There was a problem hiding this comment.
All findings below have been addressed in 2db783d.
## Critical (must fix before merge)
Command Injection in— fixed: usesui.ts:50-54shell-quoteparserCommand Injection in— fixed: usespr.ts:81spawn()with array argsRace Condition in— fixed: persists state toagent.ts:50-51~/.workon/agent-state.jsonMissing Input Validation in— fixed: branch name regex validationcircleci.ts:74
## High Priority
Unbounded stdin in— fixed: 10MB max size limitstdin.ts:28Unsanitized AI output in— fixed: HTML stripping + length truncationvalidate.ts:228Silent error swallowing in— fixed:validate.ts:155console.erroron failuresMissing branch validation in— fixed: regex validation before pushgithub.ts:295
-agent:code-reviewer:claude-opus-4-6
- Fix command injection in ui.ts (use shell-quote instead of split) - Fix command injection in pr.ts (use spawn with array args) - Fix agent.ts race condition (persist processed IDs to disk) - Add branch name validation in circleci.ts and github.ts - Add stdin size limit in stdin.ts (10MB max) - Sanitize AI output in validate.ts (strip HTML, truncate) - Add error logging for failed ClickUp comments in validate.ts Co-Authored-By: agent(claude-opus-4-6) <agent@noreply>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Test plan
npm run buildcompiles without errorsworkon --helpshows all new commandsworkon validate <id> --deep --jsonruns structural + semantic analysisworkon contextshows workflow stateworkon tasks --status "ready for eng"lists filtered tasks🤖 Generated with Claude Code