horsies-rust-quick-reference

Document Horsies Rust task and workflow registration, starting, and dynamic execution patterns.

1|Updated Feb 3, 2026
One-click install
npx skills add https://github.com/suleymanozkeskin/horsies-rust --skill horsies-rust-quick-reference
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: horsies-rust-quick-reference
Source: https://github.com/suleymanozkeskin/horsies-rust/tree/main/horsies/.agents/skills
Command: npx skills add https://github.com/suleymanozkeskin/horsies-rust --skill horsies-rust-quick-reference

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Quickly orient developers to Horsies Rust concepts, patterns, and usage so they can get started without hunting through extensive docs.

Core Features & Use Cases

  • Concise reference for tasks, workflows, configs, and runtime patterns in Horsies Rust.
  • Includes example snippets and architectural overview to accelerate onboarding and troubleshooting.
  • Use cases span zero-param workflows, parameterized workflows, dynamic starts, and registering tasks/workflows.

Quick Start

Read this quick reference to understand how task and workflow definitions are registered, started, and dispatched in Horsies Rust.

Frequently Asked Questions about horsies-rust-quick-reference

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

FAQPage Schema
How do I register and start workflows in Horsies Rust?

To register and start workflows in Horsies Rust, you define task and workflow structures with required frontmatter, then dispatch them using the runtime's sending and starting patterns for zero-param or parameterized execution.

What is a Horsies Rust workflow and when do I need dynamic execution?

A Horsies Rust workflow is a structured runtime pattern for task orchestration. Dynamic execution is needed when you must parameterize workflows or start tasks at runtime rather than using static, zero-param definitions.

Does Horsies Rust require frontmatter for task registration?

Yes, Horsies Rust requires a specific frontmatter entry for task registration. The quick reference documents this mandatory frontmatter alongside example usage and architectural guidance to ensure correct task and workflow definitions.

What are the error semantics and safety considerations for Horsies Rust runtime patterns?

Horsies Rust runtime patterns define specific error semantics and safety considerations for task dispatch and dynamic execution. The reference enumerates these constraints to guide safe architectural decisions during workflow configuration.

How do I configure zero-param and parameterized workflows in Rust?

You configure zero-param and parameterized workflows in Rust by applying the Horsies runtime patterns for sending and starting tasks. The reference provides example snippets demonstrating both static and dynamic execution setups.