jig-develop-task-flow

jig-develop-task-flow is a skill for Claude Code, Codex from 0x0w1/jig. It costs 53 tokens per session (1,756 once invoked), scanned A, original, MIT.

A development procedure for repository changes that starts from develop, uses a task branch, runs changes and tests, then merges the work back into develop. A squash merge combines the task’s commits into one commit.

In plain words
What is it for?
Use it for features, bug fixes, refactors, documentation, tooling, dependency updates, tests, and automation changes.
Why use it?
It provides a consistent way to organize implementation work and keeps develop as the shared branch for completed changes.

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/0x0w1/jig/jig-develop-task-flow
Any agent
npx skills add 0x0w1/jig --skill jig-develop-task-flow
Clone the repo
git clone --depth 1 https://github.com/0x0w1/jig

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 jig-develop-task-flow

README.md
[![agentmods](https://agentmods.dev/badge/skills/0x0w1/jig/jig-develop-task-flow.svg)](https://agentmods.dev/skills/0x0w1/jig/jig-develop-task-flow)
Your own site
<a href="https://agentmods.dev/skills/0x0w1/jig/jig-develop-task-flow"><img src="https://agentmods.dev/badge/skills/0x0w1/jig/jig-develop-task-flow.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,756 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.00053 $0.01756
Opus 5 $0.00026 $0.00878
Sonnet 5 $0.00011 $0.00351
Haiku 4.5 $0.00005 $0.00176

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

Security

Grade A, and why

jig-develop-task-flow 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 3d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/skills/jig-develop-task-flow/SKILL.md · 130 lines

How it starts

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

Develop Task Flow

Use this repository skill for normal development work requested by the user.

Branch Model

  • Start from origin/develop.
  • Create one task branch:
    • feature/<slug> for user-visible features or enhancements.
    • fix/<slug> for bug, regression, or security fixes.
    • chore/<slug> for tooling, dependencies, refactors, docs, or automation setup.
  • Finish the task by squash-merging the branch into develop locally and pushing develop. There are no pull requests.
  • Ordinary code, config, documentation, generated dist, workflow, and installer changes must follow this flow before any release can include them.
  • A release promotes develop to main with a fast-forward push; it is not a task. Use github-release for releases.

Commit Message Rules

The squash commit on develop is the release-note source. Every squash commit must follow this format:

  • Subject: <type>: <concise user-facing summary> with <type> one of feat, fix, chore, docs, refactor, test, ci.
  • Release note sections derive from the prefix: feat: renders under 🚀 Enhancements, fix: under 🐛 Fixes, chore: under 🧰 Chores, and any other prefix becomes its own section named after it (docs:📚 Documentation). Pick the prefix that describes the change, not the section you want.
  • Body: bullet items describing the change from the user's perspective, release-note ready. Write them in the language the repository already uses for its commit bodies, defaulting to English; match the existing history rather than switching it.
  • In body bullets, wrap useful technical terms in backticks, such as file paths, config keys, branch names, workflow names, command names, and env vars.

Release Grade

The squash commit records the grade this task earns. Decide it here rather than at release time: at merge the diff, the tests, and the reasoning are still in hand, while a release has to reconstruct all of it from commit text.

Grade against the repository's own rubric, not a fixed prefix mapping — a prefix names the kind of change, not what it costs. Resolve the rubric path in this order:

Read the full file on GitHub · 130 lines

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. 3d ago First seen · 130 lines · 53 tokens per session scan A 6d7eb622ca8f

Subscribe to this mod's changes

jig-develop-task-flow is a skill published in the GitHub repository 0x0w1/jig (5 stars, last pushed today), licensed MIT. It adds 53 tokens to every session and 1,756 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

git-ship

自动化 Git 工作流一键发布助手,执行完整的「ship」流程: 基于最新 main 切新分支 → commit → 推送 → 创建 PR → squash merge → 回 main。 调用 ship 本身就是对完整流程的授权;自动推断分支名、commit message 和 PR 内容, 并主动解决 Git 冲突、测试、lint、类型检查、构建和 CI 失败,持续修复和重试, 直到改动成功合并。不要因可自行修复的失败暂停,只在认证、权限、仓库保护等 无法由当前环境解决的外部阻塞出现时请求用户介入。 仅在用户明确表达「ship」意图时触发,例如: 直接说「ship」「/ship」「git ship」 明确要求完整走完 git…

oil-oil/git-ship · 273 tokens

wu5-dev-flow

使用可审计的 SDD、严格 RED-GREEN-REFACTOR TDD 与安全 Git 门禁初始化、开发、修复、重构和交付 Python 项目。用于任何会修改项目源码、测试、规格、依赖或 Git 历史的任务,也用于继续跨 Session 的现有 spec/ 变更、审查代码、验证完成状态、创建提交或准备 GitHub PR。.

WenOwen/wu5-dev-flow · 94 tokens

ascii-diagram-creator-skill

Create ASCII diagrams from workflow definitions and save them as image files (PNG, SVG, etc.).

darellchua2/opencode-config-template · 27 tokens

watchfire

Operate Watchfire — the local orchestrator that runs coding agents (Claude Code, Codex, Gemini, opencode, Copilot) on tasks in sandboxed git worktrees and merges the results. Use when asked to run/queue/inspect Watchfire tasks or agents, drive the factory loop (create → run → wait → review), check why an agent is…

watchfire-io/watchfire · 104 tokens

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens