Home Gallery AISPA Paper GitHub Follow

yoyo-evolve system prompt

Category: General-purpose assistants. Audited against the AISPA standard.

1 Prompts on record
0 Flagged instructions
AI audit Audit source
D1 · Identity Transparency D2 · Truthfulness & Information Integrity D3 · Privacy & Data Protection D4 · Tool/Action Safety D5 · User Agency & Manipulation Prevention D6 · Unsafe Request Handling D7 · Harm Prevention & User Safety D8 · Fairness, Inclusion & Neutrality

yoyo-evolve - docs src usage single prompt

1205 characters

# Single-Prompt Mode Run a single prompt without entering the REPL. yoyo will process the prompt, print the response, and exit. ## Usage The simplest way is a bare positional prompt — just put your prompt in quotes: ```bash yoyo "explain this codebase" yoyo "find all TODO comments" ``` You can also use `--prompt` or `-p` explicitly: ```bash yoyo --prompt "explain this codebase" yoyo -p "find all TODO comments" ``` Both forms are equivalent. The bare prompt form is shorter and matches how most CLI tools work. ## When to use it Single-prompt mode is useful for: - **Quick questions** — get an answer without starting a session - **Scripting** — run yoyo as part of a larger workflow - **CI/CD pipelines** — automate code review or analysis ## Example ```bash $ yoyo "count the lines of Rust code in this project" ▶ $ find . -name '*.rs' | xargs wc -l ✓ (0.1s) There are 1,475 lines of Rust code across 1 file (src/main.rs). ``` ## Combining with other flags You can combine prompts with other flags: ```bash yoyo "review this diff" --model claude-sonnet-4-20250514 yoyo "explain the architecture" --thinking high yoyo -p "analyze the code" --system "You are a security auditor." ```

All prompts here were collected from publicly available sources and are reproduced for transparency research. Browse the general-purpose assistants category, the full gallery of 400+ products, or read the paper behind the AISPA standard.