cli icon indicating copy to clipboard operation
cli copied to clipboard

The AI agent script CLI for Programmable Prompt Engine.

Results 3 cli issues
Sort by recently updated
recently updated
newest added

Inline python function to extend instruction: ```yaml - !fn |- [python] def add(a,b): return a+b - $add(1,2) ``` Import python functions from file: ```yaml --- import: "./my.py" --- - $add(1,2)...

Inline ruby function to extend instruction: ```yaml - !fn |- [ruby] def add(a,b) return a+b end - $add(1,2) ``` Import ruby functions from file: ```yaml --- import: "./my.rb" --- -...