using-hf-workflow

Decide between direct leaf skill invocation and workflow router routing.

1|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/hujianbest/garage-agent --skill using-hf-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: using-hf-workflow
Source: https://github.com/hujianbest/garage-agent/tree/main/packs/coding/skills/using-hf-workflow
Command: npx skills add https://github.com/hujianbest/garage-agent --skill using-hf-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Public HF workflow entry point that decides whether to directly invoke a leaf skill or route to the workflow router, addressing the common ambiguity at session start.

Core Features & Use Cases

  • Direct invoke vs route-first decision at new sessions.
  • Public entry boundary that avoids runtime handoffs and preserves routing authority.
  • Guides downstream actions to either a leaf skill or the router based on evidence and rules.

Quick Start

When starting a new HF session with unclear entry, run this skill to determine direct invoke or route-first and proceed accordingly.

Frequently Asked Questions about using-hf-workflow

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

FAQPage Schema
How do I route HF workflows when the session context is ambiguous?

When you need to route HF workflows with ambiguous context, use a public entry point that applies evidence-based dispatch to decide between directly invoking a leaf skill or routing to the workflow router.

What is the difference between direct invoke and route-first in workflow routing?

Direct invoke immediately executes a specific leaf skill, whereas route-first sends the request to the workflow router to evaluate evidence and predefined rules before choosing the downstream action.

When should I use an entry-only workflow router instead of runtime handoff?

You should use an entry-only workflow router at the start of a new HF session when goals require routing rather than immediate execution, ensuring routing authority is preserved and avoiding runtime handoffs.

How do I start a new HF session with an unclear entry point?

To start a new HF session with an unclear entry point, run a public entry skill to determine direct invoke or route-first behavior, then proceed with the guided downstream action.

Does the workflow router support evidence-based dispatch for leaf skills?

Yes, the workflow router supports evidence-based dispatch by directing downstream actions to either a leaf skill or the router based on evidence and predefined rules.

What are the limitations of using an entry-only public entry for HF workflows?

The main limitation is that it enforces entry-only behavior and avoids runtime handoff, meaning it cannot manage ongoing execution or dynamically alter routing authority once a downstream action has started.