From 4306d95e7e0c5e90436275635a02bdd19d5dd65a Mon Sep 17 00:00:00 2001 From: Sam Rolfe Date: Sat, 16 May 2026 13:16:54 +1000 Subject: [PATCH] sam-4screen-desktop 2026-5-16:13:16:54 --- .../350 AI/Pi Agent Extensions & Skills.md | 50 ++++++++++++++----- 1 file changed, 37 insertions(+), 13 deletions(-) diff --git a/300 areas/350 AI/Pi Agent Extensions & Skills.md b/300 areas/350 AI/Pi Agent Extensions & Skills.md index d982c59..294ee68 100644 --- a/300 areas/350 AI/Pi Agent Extensions & Skills.md +++ b/300 areas/350 AI/Pi Agent Extensions & Skills.md @@ -60,22 +60,38 @@ Prompt templates are `.md` files in `~/.pi/agent/prompts/` with YAML frontmatter ### Installed Templates -| Command | Model | Thinking | Use | +| Command | Tier | Model | Use | |---|---|---|---| -| `/quick` | deepseek-v4-flash | — | Fast, cheap tasks | -| `/deep` | kimi-k2.5 | high | Deep analysis, architecture | -| `/review` | kimi-k2.5 | medium | Code review | -| `/nix-check` | qwen-2.5 | low | Run checks + analyze | -| `/research` | deepseek-v4-flash | — | Web research, synthesize | +| `/quick` | ⚡ flash | deepseek-v4-flash | General everyday tasks | +| `/think` | 🧠 ultra | openrouter/deepseek-pro | Deep thinking, hard problems | +| `/check` | 🔷 pro | opencode-go/deepseek-pro | Code review, quality checks | +| `/nix-check` | ⚡ flash | deepseek-v4-flash | Nix flake checks, config debug | +| `/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 ``` /quick what's the weather? -/deep design the architecture for this feature -/review review the changes in this file +/think design the architecture for this feature +/check review the changes in this file /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 @@ -125,11 +141,18 @@ Create a new `.md` file in `~/.pi/agent/prompts/` with frontmatter. The filename | Command | What it does | |---|---| -| `/quick ` | Fast model for quick tasks | -| `/deep ` | Powerful model with extended thinking | -| `/review ` | Thorough code review | +| `/quick ` | Fast model for everyday tasks | +| `/think ` | Ultra model for deep analysis | +| `/check ` | Pro model for code review | | `/nix-check ` | Nix-specific analysis | -| `/research ` | Web research and synthesis | +| `/note ` | Create Obsidian note with frontmatter | +| `/sort ` | Classify file, suggest Obsidian folder | +| `/read ` | Batch read and synthesize files | +| `/debug ` | Complex NixOS/infra debugging | +| `/vault ` | Obsidian vault setup and management | +| `/chat ` | Conversation with web search | +| `/img ` | Image analysis and description | +| `/make-img ` | Generate image via OpenRouter API | | `/config-setup` | One-shot: creates `.pi/`, `settings.json`, memory vault in current folder | | `/config-add ext ` | Activate an extension from `~/.agents` | | `/config-add skill ` | 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 | | **pdf-reader** (amosblomqvist) | ⏳ Bookmarked — Python + pymupdf setup needed | | **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 | ---