Add vigilante issue create for agent-driven issue authoring#344
Merged
nicobistolfi merged 2 commits intomainfrom Mar 30, 2026
Conversation
…-specific trackers Introduce `vigilante issue create --repo <owner/name> [--provider value] <prompt...>` that turns a free-form prompt into an implementation-ready issue by invoking a supported coding-agent CLI with the vigilante-create-issue skill. The command resolves the configured issue-tracker backend (GitHub or Linear) from the watch target before invocation and fails clearly for unknown repos or unsupported backends. - Add IssueCreateTask type and BuildIssueCreateInvocation to the Provider interface - Implement for codex, claude, and gemini providers - Add BuildIssueCreatePrompt/BuildIssueCreatePromptDefault to the skill package - Add `issue` subcommand group with `create` subcommand to the CLI dispatcher - Add comprehensive tests for CLI parsing, repo resolution, backend selection, provider override, tool preflight, and prompt assembly
10 tasks
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
Adds
vigilante issue create --repo <owner/name> [--provider value] <prompt...>— a new operator command that turns a free-form prompt into an implementation-ready issue by invoking a coding-agent CLI with thevigilante-create-issueskill, creating the issue on the tracker configured for that repository.Changes
IssueCreateTasktype andBuildIssueCreateInvocationmethod on theProviderinterface, implemented for codex, claude, and geminiBuildIssueCreatePromptassembles thevigilante-create-issueskill with repo context and the user's prompt for each runtimeissuesubcommand group withcreatesubcommand; parses--repo(required),--provider(optional override), and positional prompt argsValidation
go build ./...— cleango vet ./...— cleango test ./...— all pass (including 18 new tests)Closes #343