execute-sprint

execute-sprint is a command for Claude Code from o2alexanderfedin/strategic-research-automation-template. It costs 11 tokens per session (1,987 once invoked), scanned A, original, MIT.

A command for running all six tasks in a sprint, a planned group of software or research tasks. It runs the first five tasks in parallel and then combines their results in a final synthesis task.

In plain words
What is it for?
Validating a sprint, loading its configuration and context files, tracking progress, running tasks 01–05 concurrently, and running task 06 to produce the combined result.
Why use it?
It removes the need to start and coordinate each sprint task by hand while checking that the expected files and settings exist.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the TodoWrite tool; positional $N argument.

Good fit Validating a sprint, loading its configuration and context files, tracking progress, running tasks 01–05 concurrently, and running task 06 to produce the combined result.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint
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.

Clone the repo
git clone --depth 1 https://github.com/o2alexanderfedin/strategic-research-automation-template

Made for: Claude Code.

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 execute-sprint

README.md
[![agentmods](https://agentmods.dev/badge/commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint/github.svg)](https://agentmods.dev/commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint)
Your own site
<a href="https://agentmods.dev/commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint"><img src="https://agentmods.dev/badge/commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for execute-sprint

Your own site · 80×15
<a href="https://agentmods.dev/commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint"><img src="https://agentmods.dev/badge/commands/o2alexanderfedin/strategic-research-automation-template/execute-sprint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,987 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00011 $0.01987
Opus 5 $0.00005 $0.00993
Sonnet 5 $0.00002 $0.00397
Haiku 4.5 $0.00001 $0.00199

Measured 11d ago against content hash bb9f68bc4f09, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

execute-sprint 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 11d 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.

.claude/commands/execute-sprint.md · 274 lines

How it starts

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

Execute Complete Sprint

You are executing the /execute-sprint command to run all 6 tasks for a sprint.

Purpose

Execute all 6 tasks for a sprint with parallel execution of Tasks 01-05, followed by sequential execution of Task 06 (synthesis), ensuring efficient research completion while maintaining quality.

Steps to Execute

Step 1: Validate Sprint

Check $1 is valid sprint number 01-99 Verify sprint directory exists: sprints/$1-/ Verify all 6 task files present Confirm temp directory ready: temp/$1-/ Validate context files populated

Step 2: Load Configuration

Read config/project-config.yml for max_parallel_tasks, git_enabled settings Read config/sprint-config.yml for sprint metadata Read all context files for skill agents

Step 3: Initialize Progress Tracking

Output verbose startup message:

🚀 SPRINT EXECUTION STARTING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Sprint: [sprint-name]
Number: [sprint-number]
Total Tasks: 6
Expected Duration: 30-60 minutes

Configuration:
✓ Sprint directory validated
✓ Context files loaded
✓ Output directory ready: temp/[sprint-number]-*/
✓ Parallel execution enabled (5 tasks simultaneously)

Tasks to Execute:
  1. Technical Requirements Research
  2. Market & Competitive Analysis
  3. Solution Architecture Design
  4. Certification Pathway Analysis
  5. Implementation Roadmap
  6. Final Report Synthesis (after tasks 1-5 complete)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Create progress tracking list with 6 tasks, mark all as pending initially

Step 4: Execute Tasks 01-05 in Parallel

Output progress message:

📊 PHASE 1: PARALLEL RESEARCH (Tasks 01-05)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Launching 5 research agents simultaneously...

🔬 Agent 1: Technical Researcher
   → Analyzing technical requirements, regulations, and SMT feasibility
   → Output: temp/[sprint]/01-technical/

📈 Agent 2: Market Analyst
   → Researching TAM/SAM/SOM, competitors, and customer needs
   → Output: temp/[sprint]/02-market/

🏗️ Agent 3: Solution Architect
   → Designing system architecture and POC specifications
   → Output: temp/[sprint]/03-architecture/

✅ Agent 4: Compliance Analyst
   → Researching certification pathways and testing requirements
   → Output: temp/[sprint]/04-compliance/

🗺️ Agent 5: Roadmap Planner
   → Creating implementation roadmap and partnership strategy
   → Output: temp/[sprint]/05-roadmap/

Expected completion: 20-40 minutes (agents work in parallel)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

⏳ Research in progress... (updates will appear as agents complete tasks)

Read the full file on GitHub · 274 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. 11d ago First seen · 274 lines · 11 tokens per session scan A bb9f68bc4f09

Subscribe to this mod's changes

execute-sprint is a command published in the GitHub repository o2alexanderfedin/strategic-research-automation-template (19 stars, last pushed 9mo ago), licensed MIT. It adds 11 tokens to every session and 1,987 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-30.