feat: replace CLI arguments with interactive prompts in skills - #19
Merged
Conversation
Replace command-line argument parsing with AskUserQuestion interactive prompts across crucible-tools skills. This improves discoverability and usability by presenting users with clear options and descriptions instead of requiring them to remember CLI syntax. Changes to 8 skills: - activity-summary: Add Audience, Author, and Date range questions with user/developer filtering, Jira linking, and sub-bullets in key themes - open-prs: Add Author filter question (All/Me/Specific) - dev-activity: Add Time range question with preset week options - workflow-status: Add Repository and Runner summary questions - new-repo: Add License and Repository details questions - pr-review: Add PR selection and Prior findings questions - architecture-review: Add Scope, Depth, and Repo focus questions - codebase-audit: Add Scope, Focus, Severity, Changed files, and Jira epic questions Also updated CLAUDE.md to correct skill count (10 total tracked skills). All updated skills now provide guided prompts with sensible defaults and clear option descriptions, eliminating the need to remember argument syntax. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
k-rister
force-pushed
the
feat-skills-interactive-prompts
branch
from
August 19, 2026 17:10
fdc4968 to
c187d5c
Compare
atheurer
self-requested a review
August 21, 2026 18:34
atheurer
previously approved these changes
Aug 21, 2026
atheurer
left a comment
There was a problem hiding this comment.
Nice improvement! Moving to interactive AskUserQuestion prompts makes the skills much more discoverable and user-friendly.
A few minor observations/suggestions for follow-up if you want to address them:
-
Residual CLI flag references:
activity-summary/SKILL.md: mentionsIn --all mode(could referenceauthor_mode == "all"or "When author scope is All").architecture-review/SKILL.md: Step 4 mentionsWhen --scope limits...andWhen --repo is specified....codebase-audit/SKILL.md: Step 4 mentionsWhen --scope allandIf --since is specified.pr-review/SKILL.md: Step 8 mentionsIf --prior was provided.
-
new-repodetails prompt:- Question 2 offers choices
Tool,Benchmark,Custom(defaulting toTool), but step 2 expectsname|descriptionfrom theOtherfield. Since name/description are mandatory for creating a repo, if a user simply selectsToolwithout typing into Other, parsing could fail. Splitting into separate questions (e.g. repo name and repo description) or refining the prompt instruction might be clearer.
- Question 2 offers choices
-
CLAUDE.mdtable count:- The tree was updated to 10 skill directories, but the table in
CLAUDE.mdstill has 11 entries because it listsdebug-log(which does not exist inplugins/crucible-tools/skills/).
- The tree was updated to 10 skill directories, but the table in
LGTM overall!
- Remove residual --flag references from skill docs, replacing them with the actual question/variable names now that CLI args were replaced by AskUserQuestion prompts - Split new-repo's fragile combined name|description Other-field parsing into separate type/name/description questions - Drop debug-log row from CLAUDE.md's skill table; it isn't tracked in this repo yet Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Contributor
Author
|
Addressed all three follow-up suggestions in 6b0af7a:
🤖 Generated with Claude Code |
atheurer
approved these changes
Aug 21, 2026
atheurer
left a comment
There was a problem hiding this comment.
LGTM! The updates to interactive AskUserQuestion prompts look clean and well-structured across all skills.
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
Replace command-line argument parsing with
AskUserQuestioninteractive prompts across crucible-tools skills. Users now get guided question-based workflows instead of needing to remember CLI argument syntax.Changes
Skills updated (8 total):
activity-summary
open-prs
dev-activity
workflow-status
new-repo
pr-review
architecture-review
codebase-audit
Documentation:
Benefits
Testing
Tested
activity-summaryandopen-prsskills with the new interactive prompts - both worked correctly.🤖 Generated with Claude Code