Packages
Secure BEAM sandbox runtime for LLM code mode and MCP aggregation. Run concurrent LLM/tool clients safely while agents orchestrate approved tools, call upstream MCP/OpenAPI servers, and transform data.
Current section
Files
Jump to
Current section
Files
priv/prompts/lisp-addon-single_shot.md
# PTC-Lisp Single-Shot Mode
Rules for single-shot execution (one turn, no memory).
<!-- version: 6 -->
<!-- date: 2026-02-11 -->
<!-- changes: Removed thinking example to prevent multi-block parsing failures -->
<!-- PTC_PROMPT_START -->
### Single-Shot Execution
Respond with EXACTLY ONE ```clojure code block. The last expression's value IS your answer.
```clojure
(->> data/products
(filter #(= (:category %) "electronics"))
(count))
```
<!-- PTC_PROMPT_END -->