kanban-dev-lane

kanban-dev-lane is a skill for Claude Code, Codex from epicsagas/plugins. It costs 58 tokens per session (1,300 once invoked), scanned A, original, Apache-2.0.

A Hermes Kanban development lane that delegates bounded implementation tasks to coding agents in a separate Git worktree. A worktree is an isolated working copy of a repository.

In plain words
What is it for?
Use it to assign implementation work, try the available agents in sequence, then reconcile and verify the resulting changes.
Why use it?
It keeps delegated changes separate and continues through other configured coding engines if one runs out of quota or fails.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/epicsagas/plugins/kanban-dev-lane
Any agent
npx skills add epicsagas/plugins --skill kanban-dev-lane
Clone the repo
git clone --depth 1 https://github.com/epicsagas/plugins

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kanban-dev-lane

README.md
[![agentmods](https://agentmods.dev/badge/skills/epicsagas/plugins/kanban-dev-lane.svg)](https://agentmods.dev/skills/epicsagas/plugins/kanban-dev-lane)
Your own site
<a href="https://agentmods.dev/skills/epicsagas/plugins/kanban-dev-lane"><img src="https://agentmods.dev/badge/skills/epicsagas/plugins/kanban-dev-lane.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,300 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00058 $0.01300
Opus 5 $0.00029 $0.00650
Sonnet 5 $0.00012 $0.00260
Haiku 4.5 $0.00006 $0.00130

Measured 4d ago against content hash ea76a273ab68, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

kanban-dev-lane scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.hermes/kanban-dev-lane/skills/kanban-dev-lane/SKILL.md · 149 lines

How it starts

The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kanban Dev Lane (Multi-Engine Autonomous Implementation Lane)

Overview

The kanban-dev-lane plugin enables Hermes Kanban workers (specifically dev-lead and devops-lead) to delegate bounded implementation work into an isolated git worktree with an automatic, resilient 3-tier failover chain:

[Hermes Worker (dev-lead)]
          │
          ▼
 ┌──────────────────────────────────────────────────────────┐
 │ Isolated Git Worktree: /tmp/<task_id>-dev-lane           │
 └──────────────────────────────────────────────────────────┘
          │
    ┌─────┴─────────────────────────────────────────┐
    ▼                                               ▼
Tier 1: Claudy (Primary)                     [Success] ──► Hermes Reconcile & Verify
    │ (Quota Exhaustion / 429 / Error)
    ▼
Tier 2: Codex (`codex exec ...` / `--yolo`)   [Success] ──► Hermes Reconcile & Verify
    │ (Quota Exhaustion / Error)
    ▼
Tier 3: AGYD (`agy --dangerously-skip-perms`) [Success] ──► Hermes Reconcile & Verify
    │ (All Engines Exhausted)
    ▼
Tier 4: Hermes Agent Direct Execution ────────────────────► Hermes Complete / Block

Hermes is always the task owner: it controls worktree lifecycle, diff inspection, regression testing, and final board completion. External CLIs serve as isolated input engines only.


When to Use

Use kanban-dev-lane when:

  • The task is a coding, refactoring, documentation, or test implementation task (DEV-*, OPS-*).
  • Acceptance criteria and scope constraints are clearly stated in the Kanban card.
  • An isolated git worktree can be created without dirty checkout conflicts.
  • Hermes can execute canonical verification commands after the engine finishes.
  • At least one engine CLI (claudy, codex, agy) is available on PATH.

Capability Check

command -v claudy && claudy --version
command -v codex && codex --version
command -v agy && agy --version

Worktree Isolation Pattern

TASK_ID="${HERMES_KANBAN_TASK:-t_manual}"
REPO="/path/to/repo"
BASE="$(git -C "$REPO" rev-parse --abbrev-ref HEAD)"
SAFE_TASK="$(printf '%s' "$TASK_ID" | tr -cd '[:alnum:]_-')"
BRANCH="lane/${SAFE_TASK}/$(date -u +%Y%m%d%H%M%S)"
WORKTREE="/tmp/${SAFE_TASK}-dev-lane"

git -C "$REPO" fetch --all --prune
git -C "$REPO" worktree add -b "$BRANCH" "$WORKTREE" "$BASE"

Read the full file on GitHub · 149 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 149 lines · 58 tokens per session scan A ea76a273ab68

Subscribe to this mod's changes

kanban-dev-lane is a skill published in the GitHub repository epicsagas/plugins (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 58 tokens to every session and 1,300 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

phpunit-migration-test-reviewing

Internal sub-skill. Do not auto-activate. Use only when explicitly invoked by name by another skill or agent.

shopwareLabs/ai-coding-tools · 32 tokens

phpunit-unit-test-reviewing

Internal sub-skill. Do not auto-activate. Use only when explicitly invoked by name by another skill or agent.

shopwareLabs/ai-coding-tools · 31 tokens

dev-environment-bootstrapping

Use this skill when the user asks to bootstrap, set up, create, or initialize a Shopware development environment from scratch — phrases like "set up a Shopware dev environment", "clone and install Shopware", "initialize a Shopware plugin project", "bootstrap Shopware and a new plugin called X", "get a fresh Shopware…

shopwareLabs/ai-coding-tools · 144 tokens

structuring-documentation

Use when writing, editing, auditing, splitting, or measuring Markdown documentation surfaces — README.md, AGENTS.md, CLAUDE.md, and docs/ siblings. Triggers include "is this doc too long", "split this README", "measure the docs", "where does this documentation belong", "audit the documentation", and any request to…

shopwareLabs/ai-coding-tools · 89 tokens

phpunit-integration-test-generation

Use this skill when the user asks to generate, write, or create integration tests for a Shopware 6 source class whose contract requires wired-up code — phrases like "generate integration tests for X", "write an integration test for this controller", "test this indexer", "create an integration test for the message…

shopwareLabs/ai-coding-tools · 184 tokens

phpunit-integration-to-unit-migrating

Use this skill ONLY when the user explicitly requests an audit, migration, or evaluation of whether a Shopware integration test belongs in the unit suite — trigger phrases like "audit integration tests", "migrate integration tests to unit", "is this an integration test or a unit test", "evaluate integration tests for…

shopwareLabs/ai-coding-tools · 152 tokens