build-execution-map

build-execution-map is a skill for Claude Code, Codex from TalonT-Org/AutoSkillit. It costs 18 tokens per session (4,418 once invoked), scanned A, original, MIT.

A planning tool that examines multiple GitHub issues and maps which ones depend on others. It produces JSON groups showing the order in which issues can be dispatched in parallel.

In plain words
What is it for?
Use it to plan parallel work on two or more GitHub issues, limit the number handled at once, and optionally identify issues that may need review research first.
Why use it?
It helps avoid starting dependent work too early or creating merge conflicts when several issues are handled at once.

Skill for Claude CodeCodex

Part of the autoskillit plugin — 121 skills, 1 MCP server shipped together

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/talont-org/autoskillit/build-execution-map
Any agent
npx skills add TalonT-Org/AutoSkillit --skill build-execution-map
Clone the repo
git clone --depth 1 https://github.com/TalonT-Org/AutoSkillit

Made for: Claude Code, Codex.

Or install autoskillit, the plugin that ships this one along with the rest of its 121 skills, 1 MCP server.

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 build-execution-map

README.md
[![agentmods](https://agentmods.dev/badge/skills/talont-org/autoskillit/build-execution-map.svg)](https://agentmods.dev/skills/talont-org/autoskillit/build-execution-map)
Your own site
<a href="https://agentmods.dev/skills/talont-org/autoskillit/build-execution-map"><img src="https://agentmods.dev/badge/skills/talont-org/autoskillit/build-execution-map.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,418 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.00018 $0.04418
Opus 5 $0.00009 $0.02209
Sonnet 5 $0.00004 $0.00884
Haiku 4.5 $0.00002 $0.00442

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

Security

Grade A, and why

build-execution-map 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.

src/autoskillit/skills_extended/build-execution-map/SKILL.md · 400 lines

How it starts

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

build-execution-map

Analyze a set of GitHub issues for dependency relationships using AI-driven pairwise assessment, then produce a structured execution map JSON artifact that partitions issues into dependency-ordered dispatch groups.

When to Use

  • Before parallel dispatch of multiple issues to prevent merge conflicts
  • When sous-chef receives a parallel request for N ≥ 2 issues
  • As a standalone pre-analysis step before running an implementation campaign

Arguments

Space-separated issue numbers (required, minimum 2), plus optional flags:

  • --base-ref <branch> — base branch to compare against (default: main)
  • --assess-review-approach — assess whether each issue would benefit from a review-approach research pass before implementation (default: inactive)
  • --max-parallel <N> — maximum number of issues in any single parallel group (default: 6). Groups exceeding this cap are split into sequential sub-groups of at most N issues each.

Example: 101 103 102 --base-ref main --max-parallel 4 --assess-review-approach

Critical Constraints

NEVER:

  • Modify any source code files
  • Create files outside {{AUTOSKILLIT_TEMP}}/build-execution-map/ directory (relative to the current working directory)
  • Assume issues are independent without analysis
  • Launch implementation pipelines — this skill only produces the map
  • Use the execution_map or execution_map_report token names with unspaced = (always use key = value format)
  • Override the AI's parallelism judgment with mechanical rules
  • Assume issues conflict based solely on file-name overlap without reading the issue descriptions
  • Run subagents in the background (run_in_background: true is prohibited)
  • Treat a medium-severity cross-assessment as grounds for deferral — only critical severity defers
  • Emit has_deferred / deferred_count / dispatched_count with markdown decorators

ALWAYS:

  • Use parallel subagents (up to 8) for issue fetching in Step 1
  • Use model: "sonnet" for all subagents
  • Write both JSON and markdown report outputs to {{AUTOSKILLIT_TEMP}}/build-execution-map/
  • Emit execution_map and execution_map_report tokens with absolute paths (use $(pwd) to resolve the working directory prefix)
  • Emit structured output tokens as the final lines of text output (plain text, no markdown decorators)
  • Check the actual codebase when uncertain whether two issues' changes overlap
  • Capture per-pair reasoning in pairwise_assessments for auditability
  • Anchor all output paths to the current working directory

Read the full file on GitHub · 400 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. 4d ago First seen · 400 lines · 18 tokens per session scan A 3858dec9732b

Subscribe to this mod's changes

build-execution-map is a skill published in the GitHub repository TalonT-Org/AutoSkillit (5 stars, last pushed 5d ago), licensed MIT. It adds 18 tokens to every session and 4,418 once invoked, about $0.0001 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

issue-triage

Issue triage: audit open issues, categorize, detect duplicates, cross-ref PRs, risk assessment, post comments. Args: "all" for deep analysis of all, issue numbers to focus (e.g. "42 57"), "en"/"fr" for language, no arg = audit only in French.

rtk-ai/rtk · 70 tokens

issue

Use when starting a chain from a GitHub issue — turning an issue URL or number into a triaged, planned, dispatched, and reviewed pull request. Classifies the thread (bug → root-cause discipline, feature → plan chain, question → drafted reply), synthesizes a spec from the issue's own acceptance criteria, then runs the…

jeremylongshore/tons-of-skills-marketplace · 115 tokens

github-secret-hunting

Find leaked API keys, tokens, and credentials in public GitHub repositories.

uphiago/recon-skills · 20 tokens

github

GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries.

AIOSAI/AIPass · 23 tokens

a11y-remediate

Use to produce a leader-facing remediation proposal from one or more /a11y-audit outputs plus team and product context. Translates audit findings into sprint plans, staffing asks, customer-facing language, compliance rollups, and critical-path analysis. Refuses to fabricate numbers, owners, or commitments beyond the…

gitkraken/vscode-gitlens · 72 tokens

github-image-upload

Upload local images and other files (PDF, zip, log, …) to GitHub and embed them in a pull request description, an issue, or a comment — producing canonical github.com/user-attachments URLs (private-repo uploads stay private). Use when asked to "attach a screenshot to the PR", "add an image to the PR description", "put…

drogers0/gh-image · 135 tokens