sam-4screen-desktop 2026-5-16:13:16:54

This commit is contained in:
2026-05-16 13:16:54 +10:00
parent d3f0c105bd
commit 4306d95e7e

View File

@@ -60,22 +60,38 @@ Prompt templates are `.md` files in `~/.pi/agent/prompts/` with YAML frontmatter
### Installed Templates ### Installed Templates
| Command | Model | Thinking | Use | | Command | Tier | Model | Use |
|---|---|---|---| |---|---|---|---|
| `/quick` | deepseek-v4-flash | — | Fast, cheap tasks | | `/quick` | ⚡ flash | deepseek-v4-flash | General everyday tasks |
| `/deep` | kimi-k2.5 | high | Deep analysis, architecture | | `/think` | 🧠 ultra | openrouter/deepseek-pro | Deep thinking, hard problems |
| `/review` | kimi-k2.5 | medium | Code review | | `/check` | 🔷 pro | opencode-go/deepseek-pro | Code review, quality checks |
| `/nix-check` | qwen-2.5 | low | Run checks + analyze | | `/nix-check` | ⚡ flash | deepseek-v4-flash | Nix flake checks, config debug |
| `/research` | deepseek-v4-flash | — | Web research, synthesize | | `/note` | ⚡ flash | deepseek-v4-flash | Create Obsidian .md with frontmatter |
| `/sort` | 🔷 pro | opencode-go/deepseek-pro | Classify files, suggest Obsidian folder |
| `/read` | ⚡ flash | deepseek-v4-flash | Batch read and synthesize many files |
| `/debug` | 🧠 ultra | openrouter/deepseek-pro | Complex NixOS/infra debugging |
| `/vault` | 🔷 pro | opencode-go/deepseek-pro | Obsidian vault setup and management |
| `/chat` | ⚡ flash | deepseek-v4-flash | Chat with automatic web search |
| `/img` | 🧠 ultra | openrouter/deepseek-pro | Image analysis and description |
| `/make-img` | ⚡ flash | deepseek-v4-flash | Generate images via OpenRouter API (Flux/Stable Diffusion) |
> **Audio/Voice note:** Pi runs in a text-based terminal (TUI) with no microphone access or audio playback. Qwen supports audio processing, but it's not practical in Pi's current architecture regardless of model.
### How to use ### How to use
``` ```
/quick what's the weather? /quick what's the weather?
/deep design the architecture for this feature /think design the architecture for this feature
/review review the changes in this file /check review the changes in this file
/nix-check analyze the nix flake check output /nix-check analyze the nix flake check output
/research find alternatives to this approach /note document the new service setup
/sort read this config file and tell me where it goes
/read skim these three config files and compare them
/debug why is my NixOS build failing?
/vault set up a template for daily notes
/chat what's new in NixOS 25.11?
/img what's wrong in this screenshot?
/make-img a futuristic cityscape with neon lights
``` ```
### Template format ### Template format
@@ -125,11 +141,18 @@ Create a new `.md` file in `~/.pi/agent/prompts/` with frontmatter. The filename
| Command | What it does | | Command | What it does |
|---|---| |---|---|
| `/quick <task>` | Fast model for quick tasks | | `/quick <task>` | Fast model for everyday tasks |
| `/deep <task>` | Powerful model with extended thinking | | `/think <task>` | Ultra model for deep analysis |
| `/review <path>` | Thorough code review | | `/check <path>` | Pro model for code review |
| `/nix-check <task>` | Nix-specific analysis | | `/nix-check <task>` | Nix-specific analysis |
| `/research <topic>` | Web research and synthesis | | `/note <description>` | Create Obsidian note with frontmatter |
| `/sort <path>` | Classify file, suggest Obsidian folder |
| `/read <paths>` | Batch read and synthesize files |
| `/debug <issue>` | Complex NixOS/infra debugging |
| `/vault <task>` | Obsidian vault setup and management |
| `/chat <topic>` | Conversation with web search |
| `/img <prompt>` | Image analysis and description |
| `/make-img <prompt>` | Generate image via OpenRouter API |
| `/config-setup` | One-shot: creates `.pi/`, `settings.json`, memory vault in current folder | | `/config-setup` | One-shot: creates `.pi/`, `settings.json`, memory vault in current folder |
| `/config-add ext <name>` | Activate an extension from `~/.agents` | | `/config-add ext <name>` | Activate an extension from `~/.agents` |
| `/config-add skill <name>` | Activate a skill from `~/.agents` | | `/config-add skill <name>` | Activate a skill from `~/.agents` |
@@ -153,6 +176,7 @@ Create a new `.md` file in `~/.pi/agent/prompts/` with frontmatter. The filename
| **google-image-search** (amosblomqvist) | ❌ Would need Google Search API + CSE setup | | **google-image-search** (amosblomqvist) | ❌ Would need Google Search API + CSE setup |
| **pdf-reader** (amosblomqvist) | ⏳ Bookmarked — Python + pymupdf setup needed | | **pdf-reader** (amosblomqvist) | ⏳ Bookmarked — Python + pymupdf setup needed |
| **notify** (mitsuhiko) | ⏳ Minor QoL — desktop notifications on task complete | | **notify** (mitsuhiko) | ⏳ Minor QoL — desktop notifications on task complete |
| **audio/voice** | ⏳ Not practical | Pi TUI has no mic access or audio playback — fundamental platform limitation |
--- ---