coding-workflow

Routes coding tasks to a dedicated coding-agent profile following an 11-step development workflow.

1|Updated Jun 21, 2026
One-click install
npx skills add https://github.com/tapway/shogun-os --skill coding-workflow-tapway
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coding-workflow
Source: https://github.com/tapway/shogun-os/tree/main/skills/general/coding-workflow
Command: npx skills add https://github.com/tapway/shogun-os --skill coding-workflow-tapway

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Teams need a consistent routing convention so that every coding request — features, bug fixes, refactors, deployments — is handled by a dedicated coding agent following a disciplined workflow instead of ad-hoc prompting. ## Core Features & Use Cases - Task Routing: Classifies incoming requests (build, fix, refactor, deploy, review) and delegates them to the coding-agent profile via CLI switch, direct delegation, or cron jobs. - 11-Step Workflow Reference: Enforces the Superpowers pipeline — Brainstorm, Plan, Commit Docs, TDD, Cleanup, Simplify, Self-Review, PR, Deploy, Release, Verify — with a fast /autoship path. - Slack Channel Setup: Includes a reference recipe for a dedicated #coding-agent Slack channel with channel prompts, expanded toolsets, HARD GATE security patterns, and external skill directories. - Use Case: A user asks to add a new API endpoint; the skill classifies it as a feature, delegates to the coding-agent profile, and the agent executes brainstorm through deploy automatically. ## Quick Start Ask the agent to implement a new endpoint or fix a bug, and it will load this skill and delegate the work to the coding-agent profile.

Frequently Asked Questions about coding-workflow

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

FAQPage Schema
How do I delegate coding tasks to a dedicated coding agent?

Load the coding-workflow skill, classify the request type, then delegate via CLI switch (`coding-agent chat`), direct `delegate_task` calls with full context, or cron jobs under the coding-agent profile. The agent then follows the 11-step workflow automatically.

How to set up a Slack channel that auto-loads a coding agent persona?

Add a channel prompt in `channel_prompts`, expand `platform_toolsets` for Slack, register the profile's skills via `external_dirs`, and add the channel to `free_response_channels`. Restart the gateway afterward for changes to take effect.

What tasks should not be routed to the coding agent?

Product management work like PRDs, epics, and sprint planning goes to the product-manager profile. HR, marketing, and dashboard content editing route to their respective department profiles instead of the coding agent.

Why is my Slack channel prompt not being applied?

Channel prompts must be a YAML dict, not a string — string format silently fails because the gateway checks `isinstance(prompts, dict)`. Also verify the channel ID starts with `C` and restart the gateway after editing.

How do I edit the protected Hermes config.yaml file?

The `patch` and `write_file` tools are denied on `~/.hermes/config.yaml`. Use Python with `yaml.safe_load` and `yaml.dump` for surgical edits, then verify with `hermes config` that no parse warnings appear.