stride-creating-tasks

Standardize task creation for Stride's POST /api/tasks API payloads.

5|3|Updated Oct 19, 2025
One-click install
npx skills add https://github.com/cheezy/kanban --skill stride-creating-tasks
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stride-creating-tasks
Source: https://github.com/cheezy/kanban/tree/main/docs/multi-agent-instructions/skills/stride-creating-tasks
Command: npx skills add https://github.com/cheezy/kanban --skill stride-creating-tasks

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Defines and enforces strict task creation contracts for Stride's API to ensure all generated tasks have complete and correctly structured fields.

Core Features & Use Cases

  • Enforces field formats for verification_steps and key_files as object arrays.
  • Validates testing_strategy structure (unit_tests, integration_tests, manual_tests).
  • Supports orchestration in stride-workflow for goal decomposition and safe task creation.
  • Used to preventMalformed tasks that waste development time.

Quick Start

Invoke stride:stride-workflow with this skill loaded before creating any task to guarantee properly structured POST /api/tasks payloads.

Frequently Asked Questions about stride-creating-tasks

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

FAQPage Schema
How do I prevent malformed Stride API payloads when creating tasks?▼

To prevent malformed Stride API payloads when creating tasks, you need strict contract enforcement that validates required fields and object array types before submitting POST /api/tasks requests.

What is the required structure for verification_steps and key_files in Stride task creation?▼

The required structure for verification_steps and key_files in Stride task creation is strict object arrays, ensuring all generated tasks have complete and correctly structured fields for API submission.

How does stride-workflow validate testing_strategy during goal decomposition?▼

Stride-workflow validates testing_strategy during goal decomposition by enforcing a complete structure that explicitly requires unit_tests, integration_tests, and manual_tests components before task creation.

Can I use this task creation validation without stride-workflow orchestration?▼

You can apply this task creation validation independently to intercept API payloads, but it is specifically designed to operate during stride-workflow goal decomposition for safe task creation.

Why do my Stride API tasks fail validation due to incomplete testing_strategy fields?▼

Stride API tasks fail validation due to incomplete testing_strategy fields when the payload lacks the required unit_tests, integration_tests, or manual_tests structure needed to enforce strict task creation contracts.