strat-creator: Skill for Claude Code

.claude/skills/strategy-create/SKILL.md

strategy-create is a skill for Claude Code from opendatahub-io/strat-creator. It costs 28 tokens per session (4,520 once invoked), scanned A, original, Apache-2.0.

A workflow for turning approved requests for engineering work into strategy tickets in Jira, with local files for further refinement.

In plain words
What is it for?
Use it to create strategies from approved RFEs, including a dry-run mode that reads Jira data and creates local artifacts without changing Jira.
Why use it?
It reduces the manual work of finding request details, creating or locating the matching strategy ticket, and preparing local working files.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

This is opendatahub-io/strat-creator's own configuration. It tells Claude Code how to work on strat-creator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything strat-creator configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is STRAT_KEY=$(python3 scripts/clone_issue.py RHAIRFE-NNNN --target-project RHAISTRAT --issue-type Feature).

Reuse

Borrowing it

Nothing to install: this file belongs to opendatahub-io/strat-creator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/opendatahub-io/strat-creator/main/.claude/skills/strategy-create/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/opendatahub-io/strat-creator

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 strategy-create

README.md
[![agentmods](https://agentmods.dev/badge/skills/opendatahub-io/strat-creator/strategy-create/github.svg)](https://agentmods.dev/skills/opendatahub-io/strat-creator/strategy-create)
Your own site
<a href="https://agentmods.dev/skills/opendatahub-io/strat-creator/strategy-create"><img src="https://agentmods.dev/badge/skills/opendatahub-io/strat-creator/strategy-create/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 strategy-create

Your own site · 80×15
<a href="https://agentmods.dev/skills/opendatahub-io/strat-creator/strategy-create"><img src="https://agentmods.dev/badge/skills/opendatahub-io/strat-creator/strategy-create.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,520 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.00028 $0.04520
Opus 5 $0.00014 $0.02260
Sonnet 5 $0.00006 $0.00904
Haiku 4.5 $0.00003 $0.00452

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

Security

Grade A, and why

strategy-create 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 9d 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/skills/strategy-create/SKILL.md · 320 lines

How it starts

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

You are a strategy creation assistant. Your job is to create strategies from approved RFEs by cloning them into the RHAISTRAT project, then setting up local artifacts for refinement.

Dry Run Mode

If --dry-run is in $ARGUMENTS, skip ALL external writes:

  • Do NOT clone issues in Jira (skip Step 3 entirely)
  • Do NOT create or edit any Jira issues
  • DO still fetch RFE data from Jira (reads are safe)
  • DO still create local artifacts in artifacts/strat-tasks/
  • For Path B (no existing STRAT): Set jira_key=null on stubs since no Jira issues were created. Use the RFE number as the strat ID (e.g., RHAIRFE-1146 → STRAT-1146, filename STRAT-1146.md)
  • For Path A (existing STRAT found via Cloners link): Use the real RHAISTRAT-NNNN key as filename and jira_key — the ticket already exists, we're importing it
  • Print [DRY RUN] Skipping Jira clone for <RFE key> for each Path B RFE

Step 1: Find RFE Source Data

Check for available RFE sources:

  1. Local artifacts — check for artifacts/rfe-tasks/ files with valid frontmatter. Read Jira keys from task file frontmatter:
python3 ${CLAUDE_SKILL_DIR}/scripts/frontmatter.py read artifacts/rfe-tasks/<file>.md
  1. Jira — check if Jira MCP is available or if JIRA_SERVER/JIRA_USER/JIRA_TOKEN env vars are set, and if the user has provided RHAIRFE keys

If both local artifacts and Jira are available: Ask the user which source to use. Local artifacts may have been edited after submission; Jira has the canonical version. Let the user decide.

If only local artifacts exist: Use them.

If only Jira keys are available: Fetch from Jira. Try mcp__atlassian__getJiraIssue first. If the MCP tool is unavailable, fall back to the REST API script:

python3 ${CLAUDE_SKILL_DIR}/scripts/fetch_issue.py RHAIRFE-1234 --fields summary,description,priority,labels,status --markdown

The script outputs JSON to stdout with the description already converted to markdown. Parse the fields to build local artifacts.

Read the full file on GitHub · 320 lines

Files

What ships with it

1 file 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. 9d ago First seen · 320 lines · 28 tokens per session scan A 4a50491c5a2d

Subscribe to this mod's changes

strategy-create is a skill published in the GitHub repository opendatahub-io/strat-creator (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 28 tokens to every session and 4,520 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