sagittaras

Recommends the right plugin skill for the user's current task by reading installed skill frontmatters.

Updated Aug 7, 2026
One-click install
npx skills add https://github.com/sagittaras/agentic-workflow --skill sagittaras-sagittaras
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sagittaras
Source: https://github.com/sagittaras/agentic-workflow
Command: npx skills add https://github.com/sagittaras/agentic-workflow --skill sagittaras-sagittaras

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Users of the sagittaras plugin often do not know which of its many skills fits their current work, and a stale hardcoded list would mislead them. This router skill reads the frontmatters of all installed skills from disk and points the user to the exact skill that handles their situation, including what step follows it. ## Core Features & Use Cases - Live skill discovery: Builds the overview from on-disk SKILL.md frontmatters (name, description, when_to_use) via Glob and Read, never from a memorized list. - Situation matching: Maps the user's described work-in-progress to the correct skill based on each skill's when_to_use triggers, and says so plainly when nothing matches. - Chained guidance: Every recommendation includes why the skill fits and which skill typically follows it in the workflow chain (e.g., create-branch then make-commit). - Use Case: A user types /sagittaras with "I need to record my finished work" and receives a recommendation for /sagittaras:make-commit with an explanation and the follow-up step, without the router executing anything itself. ## Quick Start Ask the sagittaras plugin what it can do or describe the task you want to accomplish, and it will recommend the right skill to run next.

Frequently Asked Questions about sagittaras

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find out what the sagittaras plugin can do?

Invoke /sagittaras with no arguments to get a grouped overview of all installed skills. The list is built live from the frontmatters of SKILL.md files on disk, so it always reflects the currently installed version of the plugin.

How do I know which sagittaras skill to use for my task?

Call /sagittaras followed by a short description of your work, for example "/sagittaras record my finished changes". The router matches your situation against each skill's when_to_use triggers and recommends one skill, why it fits, and what follows it.

Does the sagittaras router skill execute the recommended skill?

No. The router ends with a recommendation only and never launches the suggested skill. The decision to run it stays with the user, which keeps a human checkpoint before any skill that touches the repository.

What happens if no skill matches my request?

The router says plainly that no skill fits instead of forcing a bad recommendation. It then shows the full grouped overview so you can see the closest options, or notes that the task is ordinary work that needs no skill.

Why does the skill list come from disk instead of a fixed catalog?

The plugin grows over time, so a hardcoded list would point users to removed skills or hide newly added ones. Reading frontmatters at runtime guarantees the overview matches the actual installation.