-
Notifications
You must be signed in to change notification settings - Fork 3.2k
feat: runtime workflow inputs (--set KEY=VALUE / inputs API field) #1338
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
Open
gemmawood
wants to merge
19
commits into
coleam00:dev
Choose a base branch
from
gemmawood:feature/workflow-runtime-inputs
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
8396709
feat: add runtime workflow inputs (--set KEY=VALUE / inputs API field)
gemmawood ab2404d
fix: preserve runtime inputs across pause/resume cycles
gemmawood 508a70e
Fix resolved_inputs validation and preCreatedRun metadata persistence
gemmawood 215aae2
Fix regex key escaping and defer model/provider resolution until afte…
gemmawood a5169fd
Fix four CodeRabbit review issues in executor resolveInputs / applyIn…
gemmawood 621a064
Tighten assertSafeInputKeys to enforce explicit identifier grammar
gemmawood 4115ea5
chore: update Homebrew formula for v0.3.9
github-actions[bot] 359b6d3
chore(release-skill): use --help (not version) for Step 1.5 smoke pro…
Wirasm 6f86402
chore(test-release-skill): preserve archon-stable across test cycles
Wirasm 0e9f1c8
fix(providers/pi): install PI_PACKAGE_DIR shim so Pi workflows run in…
Wirasm b99cee4
feat(providers): autodetect canonical binary install paths for Claude…
Wirasm f9f8775
fix(providers/test): use os.homedir() instead of $HOME in claude bina…
coleam00 5957c6e
fix(server): contain Discord login failure so it doesn't kill the ser…
coleam00 46874ca
docs(script-nodes): dedicated guide + teach the archon skill (#1362)
Wirasm 2c15439
docs/skill: general hardening — fix inaccuracies, fill workflow/CLI/e…
Wirasm ad13d83
chore(workflows): switch default Opus pin to opus[1m] alias (#1395)
Wirasm e56d904
Merge upstream dev into workflow runtime inputs
gemmawood d0d0c96
test(workflows): add unit tests for resolveInputs, applyInputsToStrin…
gemmawood 026fd66
chore(schemas): remove verbose JSDoc from workflowInputSchema and inp…
gemmawood 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
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
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
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
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
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
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
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.
Document
--setin CLI usage.The flag is parsed, but
printUsage()does not list it or show an example, so the new runtime-input feature is hard to discover fromarchon help.📝 Proposed help text update
--json Output machine-readable JSON (for workflow list) + --set KEY=VALUE Set a workflow runtime input; repeatable for multiple inputs --workflow <name> Workflow to run for 'continue' (default: archon-assist)archon workflow run plan --cwd /path/to/repo "Add dark mode" + archon workflow run plan --set TICKET=123 --set PRIORITY=high "Add dark mode" archon workflow run implement --branch feature-auth "Implement auth"🤖 Prompt for AI Agents