devops

Routes DevOps requests to cron maintenance, kanban orchestration, and kanban worker sub-skills.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill devops-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: devops
Source: https://github.com/yakeworld/Synthos/tree/main/skills/extended/external-automation/devops
Command: npx skills add https://github.com/yakeworld/Synthos --skill devops-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? DevOps requests span cron job maintenance, kanban task orchestration, and worker execution, and routing each request to the wrong handler causes failed or duplicated work. This Skill acts as a parent router that dispatches each operations request to the correct sub-skill without executing the work itself. ## Core Features & Use Cases - Request Routing: Directs cron management requests to cron-system-maintenance, task decomposition to kanban-orchestrator, and single-task execution to kanban-worker via the Hermes skill loading mechanism. - Structured Error Handling: Returns structured errors with context and recovery guidance when a request targets an unknown sub-skill, instead of silently failing. - Golden Test Set: Ships executable routing test cases (normal routing and unknown sub-skill paths) with weighted pass criteria as the single source of truth for verification. - Use Case: A user asks to check cron job health and next trigger times; the router forwards the request to cron-system-maintenance and returns its structured result without the parent performing any operation itself. ## Quick Start Ask the agent to check the health of your cron tasks or decompose a project into kanban tasks, and the request will be routed to the appropriate sub-skill automatically.

Frequently Asked Questions about devops

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

FAQPage Schema
How do I route a DevOps request to the right sub-skill?

Submit the request with an optional skill_hint in the context. Cron management requests route to cron-system-maintenance, task decomposition to kanban-orchestrator, and single-task execution to kanban-worker through Hermes auto-discovery.

What sub-skills are available under the devops parent skill?

Three sub-skills exist: cron-system-maintenance for cron task management, kanban-orchestrator for decomposing goals into kanban task graphs, and kanban-worker for executing individual assigned tasks inside a workspace.

What happens when I request an unknown sub-skill?

The router returns a structured error with error_type unknown_sub_skill, including the requested name, the list of available sub-skills, and recovery guidance. It never silently fails or executes the request at the parent level.

Does the devops parent skill execute operations itself?

No. The parent acts only as a directory index and router. All actual execution is delegated to sub-skills, and the golden test set verifies that parent_executed remains false on every routed request.

How is routing correctness verified?

A golden test set in golden/ defines critical cases for normal routing and unknown sub-skill errors. Each case has expected outputs and executable verification assertions, requiring a weighted score of at least 0.85 to pass.