Militant Hitchhiker's Switchblade Pack is a set of multi-function custom nodes for ComfyUI, covering text processing, prompt enhancement, model analysis/quantisation, and advanced scheduling/sampling.
This release reflects Switchblade v1.3 (as initialised in the loader) and includes new nodes for GOD/ARC/ODE EMA, Flux quant, and a Groq-powered prompt enhancer.
- Open a terminal/PowerShell.
- Navigate to your ComfyUI
custom_nodesdirectory. - Clone the repo:
git clone https://github.com/MilitantHitchhiker/MilitantHitchhiker-SwitchbladePack.git
- Restart ComfyUI.
Notes
- The Groq node will auto-install the
groqPython package on first run if missing. - Loaded modules are defined in
__init__.pyand anodes.logfile is written at startup for quick discovery.
If you plan to use the Groq API Prompt Enhancer, set your API key and optional default system prompt in modules/groq_config.json.
api_key: your Groq API keysystem_prompt: optional default system prompt used unless overridden per-node
You can also provide an override_system_prompt input on the node to temporarily replace the default.
Concatenate up to five text inputs; control how they’re joined and optionally append the result to a file in ComfyUI’s output directory.
- Inputs (optional):
text1..text5,input_delimiter(e.g.\n),output_delimiter(e.g.\n),output_file("none" to disable) - Output:
STRING(the concatenated text) - Category:
MilitantAI/Switchblade/Text Processing
Typical use
- Provide any of
text1..text5. - Use
\nto represent newlines for delimiters. - Set
output_fileto a filename to append the result; otherwise it only returns the text.
Randomly selects one item from up to four dictionary files and joins them.
- Dictionaries folder:
ComfyUI/input/Dictionaries(recursively scanned) - Inputs:
dict1_file..dict4_file(or "none"),enable_dict1..enable_dict4,dict1_delimiter..dict4_delimiter(default;),output_delimiter(default,),seed - Output:
STRING - Category:
MilitantAI/Switchblade/Text Processing
Tip: Use ; as the default item delimiter inside your .txt dictionaries.
Send text to Groq chat models to enhance prompts.
- Models:
gemma2-9b-it,llama-3.1-8b-instant,llama-3.3-70b-versatile - Inputs:
model,text, optionaloverride_system_prompt - Output:
STRING(enhanced text) - Config file:
modules/groq_config.json - Category:
MilitantAI/Switchblade/Text Processing
Analyses a model’s state dict and returns a JSON summary.
- Input:
model - Output:
STRING(JSON: structure, size, blocks, dtypes, totals) - Category:
MilitantAI/Switchblade/Model Merging
Converts the model’s tensors to a selected precision, analyses them, and saves the processed model to ComfyUI’s output directory.
- Inputs:
model,precision(auto,float32,float16,bfloat16,float8_e5m2,float8_e4m3fn) - Output:
STRING(analysis JSON; also prints save status) - Saved file name:
<ckpt_or_unknown>_<precision>.safetensors - Category:
MilitantAI/Switchblade/Model Merging
Deterministic, gently warped descendent schedule; returns SIGMAS suitable for advanced samplers.
- Inputs:
model,steps,denoise - Output:
SIGMAS - Category:
MilitantAI/Switchblade/Generation
Produces a baseline descending SIGMAS schedule (high → low) with denoise control.
- Inputs:
model,steps,denoise - Output:
SIGMAS - Category:
MilitantAI/Switchblade/Generation
Returns a SAMPLER wrapping a GOD-Flow sampler with synergy-adapted step behaviour.
- Output:
SAMPLER - Category:
MilitantAI/Switchblade/Generation
Like the GOD Sampler (Advanced) but with a god_strength control.
- Inputs:
god_strength - Output:
SAMPLER - Category:
MilitantAI/Switchblade/Generation
Detail-aware ODE sampler with EMA-stabilised cone shaping and late-step detail emphasis.
- Inputs:
stats_downsample,detail_gain_max,detail_power,detail_schedule_power - Output:
SAMPLER - Category:
MilitantAI/Switchblade/Generation
- Use
GOD Scheduler (Advanced)orARC Scheduler→ connect toKSampler (Advanced)sigmasinput. - Use
GOD Sampler (Advanced)orGOD Sampler (Advanced) Ext.→ connect toSamplerCustomsamplerinput. - Use
ODE EMA Sampler→ connect toSamplerCustomsamplerinput. - Use
Flux Quant NodeandModel Analyser→ connect theirmodelinput to your loaded model. - Use
Text AppenderandPrompt Generator (Dictionary)for pre/post text tasks in your workflow.
Contributions are welcome! Please open an issue or PR on the GitHub repository.
v1.3
- Added:
GOD Scheduler (Advanced),GOD Sampler (Advanced),GOD Sampler (Advanced) Ext.,ODE EMA Sampler. - Added:
ARC Schedulerfor deterministic ARC-warped schedules. - Added:
Flux Quant Nodefor precision conversion + analysis + save. - Added:
Groq API Prompt Enhancerwithmodules/groq_config.jsonconfig. - Updated:
Text Appendernow usesinput_delimiterandoutput_delimiterand writes to ComfyUI output whenoutput_fileis set. - Updated:
Prompt Generator (Dictionary)defaults to;as item delimiter and scansComfyUI/input/Dictionariesrecursively. - Renamed:
arc_lr_scheduler.py→ARC_scheduler.py. - Note:
model_save.py(Save Flux Model v2) exists but is disabled in__init__.pyin this release.
MIT