stride-claiming-tasks

Automates secure task claiming in workflows with explicit before- and after-actions.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enforces correct Stride task claiming by requiring the before_doing hook to run and ensuring the hook results are submitted with the claim, preventing out-of-date work and merge conflicts.

Core Features & Use Cases

  • Verifies prerequisites: ensures .stride_auth.md and .stride.md exist before claiming.
  • Defines the mandatory claim workflow: performs before_doing, then claims with a before_doing_result payload.
  • Automates the post-claim handoff to sub-skills such as stride-subagent-workflow and stride-completing-tasks, ensuring a seamless end-to-end workflow.
  • Guides environments with and without automatic hooks, detailing safe handling and error recovery.

Quick Start

Review prerequisites in .stride_auth.md and .stride.md, then fetch the next task and claim it with a before_doing_result payload.

Frequently Asked Questions about stride-claiming-tasks

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

FAQPage Schema
How do I automate Stride task claiming with API hooks to prevent merge conflicts?

Stride task claiming is automated by mandating before_doing hooks and transmitting hook results. This workflow uses GET /api/tasks/next and POST /api/tasks/claim with a properly formed before_doing_result payload to prevent out-of-date work and merge conflicts.

What files are required before claiming a task in the Stride workflow?

Claiming a task in the Stride workflow requires .stride_auth.md and .stride.md files to exist. Verifying these prerequisites ensures proper authentication and configuration before fetching and claiming the next available task.

When do I need to run the before_doing hook before calling the task claim API?

The before_doing hook must run before calling the task claim API in all Stride workflow scenarios. It executes prerequisite checks and enrichment, then its results are submitted with the claim to ensure safe handoff to sub-skills.

How does task claiming hand off to sub-skills after a successful POST /api/tasks/claim?

After a successful POST /api/tasks/claim, task claiming automates immediate handoff to sub-skills like stride-subagent-workflow and stride-completing-tasks. This seamless end-to-end workflow ensures the claimed task proceeds directly to execution.

Can I use the Stride orchestrator to claim tasks in environments without automatic hooks?

The Stride orchestrator supports claiming tasks in environments without automatic hooks by detailing safe handling and error recovery. It guides manual hook execution and result transmission to maintain correct claiming and prevent out-of-date work.

What happens if I claim a Stride task without submitting a before_doing_result payload?

Claiming a Stride task without submitting a before_doing_result payload violates the mandatory workflow. This omission risks out-of-date work and merge conflicts because the claim API receives no verified hook execution data.