Pluqqy — Summary
Pluqqy (21 stars) is a Go CLI tool for building and managing "minimal viable context" for AI coding assistants. Users compose reusable components — contexts, prompts, and rules — into named pipelines stored in .pluqqy/. When a pipeline is activated with pluqqy set <name>, it writes a PLUQQY.md file containing all composed instructions. The AI coding tool then references @PLUQQY.md as the active context. Switching instruction sets is as simple as pluqqy set <different-pipeline> — the reference stays the same while the content changes. The tool ships a full TUI (terminal UI) and a comprehensive CLI with JSON/YAML output flags, archived state management, and clipboard integration. Pluqqy is not an orchestration framework or workflow system — it is a context composition manager: the user pre-builds instruction libraries and switches between them for different tasks. Compared to seeds, it occupies a unique niche; no seed directly addresses the problem of managing multiple context/prompt sets for different development contexts, making it closest to agent-os (both use markdown files as the context substrate) but specifically focused on the switch-between-contexts use case rather than a structured methodology.