docs.rs failed to build tasker-sdk-0.1.8
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
tasker-sdk
Shared SDK library for the Tasker workflow orchestration system. Provides code generation, template parsing, schema inspection, operational tooling, and a runtime template engine consumed by tasker-ctl, tasker-mcp, and future integrations.
Modules
Developer Tooling
| Module | Description |
|---|---|
codegen |
Schema-driven code generation for Python, Ruby, TypeScript, and Rust |
template_parser |
Parse TaskTemplate definitions from YAML with structured errors |
template_validator |
Structural validation, cycle detection, best-practice checks |
template_generator |
Generate template YAML from structured specs |
schema_inspector |
Inspect result_schema contracts across template steps |
schema_comparator |
Compare producer/consumer schema compatibility |
schema_diff |
Detect field-level changes between template versions |
template_engine |
Tera runtime rendering with custom case-conversion filters |
Operational Tooling
| Module | Description |
|---|---|
operational::client_factory |
Transport-agnostic client construction from ClientConfig |
operational::enums |
DLQ resolution status and task status parsing |
operational::responses |
Shared response DTOs (TaskSummary, StepSummary, DlqSummary, etc.) |
Code Generation
Generate typed handler stubs from task template result_schema definitions:
use ;
use parse_template;
let template = parse_template?;
let types = generate_types?;
let handlers = generate_handlers?;
Supported languages: Python, Ruby, TypeScript, Rust.
Operational Client Factory
Build connected clients for MCP tools or CLI commands:
use ;
let config: ClientConfig = /* from ProfileManager */;
let client = build_orchestration_client.await?;
License
MIT License — see LICENSE for details.