strat-creator: Skill for Claude Code

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

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

A workflow for improving a project strategy and sending it back to Jira, a tool for tracking work, so continuous integration (CI) can review it again.

In plain words
What is it for?
Use it with a strategy key to validate the local document, update its Jira content, remove the review label, and resubmit it for CI evaluation.
Why use it?
It prevents unfinished or unreviewed strategies from being submitted and checks that the required local file and review status exist first.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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 →

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-push/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-push

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/opendatahub-io/strat-creator/strategy-push"><img src="https://agentmods.dev/badge/skills/opendatahub-io/strat-creator/strategy-push.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 828 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.00030 $0.00828
Opus 5 $0.00015 $0.00414
Sonnet 5 $0.00006 $0.00166
Haiku 4.5 $0.00003 $0.00083

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

Security

Grade A, and why

strategy-push 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 10d 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-push/SKILL.md · 79 lines

How it starts

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

You are pushing an improved strategy back to Jira so CI can re-evaluate it. This skill works for strategies with either strat-creator-needs-attention or strat-creator-rubric-pass — in both cases, the label is removed so CI re-processes the strategy.

Input

$ARGUMENTS must contain a RHAISTRAT key (e.g., RHAISTRAT-1520). If no key is provided, ask the user for one.

Step 1: Validate Pre-Conditions

Read the strategy file from local/strat-tasks/RHAISTRAT-NNNN.md. Verify it exists and has workflow: local in its frontmatter.

Then fetch the current labels from Jira:

python3 ${CLAUDE_SKILL_DIR}/scripts/fetch_issue.py RHAISTRAT-NNNN --fields labels --markdown

Guard checks:

  • If the local file does not exist: tell the user to run /strategy-pull RHAISTRAT-NNNN first. Stop here.
  • If the issue has NEITHER strat-creator-needs-attention NOR strat-creator-rubric-pass: tell the user this strategy hasn't been through CI review yet and cannot be pushed. Stop here.

Determine which label is present (strat-creator-needs-attention or strat-creator-rubric-pass) — this determines which label to remove in Step 3.

Step 2: Push Strategy Content

Push the updated strategy section to Jira:

python3 ${CLAUDE_SKILL_DIR}/scripts/push_strategy.py RHAISTRAT-NNNN local/strat-tasks/RHAISTRAT-NNNN.md

Step 3: Remove CI Label

Remove whichever CI label is present to allow CI to re-process:

  • If strat-creator-needs-attention was found in Step 1:
python3 -c "
import sys; sys.path.insert(0, '${CLAUDE_SKILL_DIR}/scripts')
from jira_utils import remove_labels, require_env
s, u, t = require_env()
remove_labels(s, u, t, 'RHAISTRAT-NNNN', ['strat-creator-needs-attention'])
"

Print [LABEL] strat-creator-needs-attention removed from RHAISTRAT-NNNN.

  • If strat-creator-rubric-pass was found in Step 1:
python3 -c "
import sys; sys.path.insert(0, '${CLAUDE_SKILL_DIR}/scripts')
from jira_utils import remove_labels, require_env
s, u, t = require_env()
remove_labels(s, u, t, 'RHAISTRAT-NNNN', ['strat-creator-rubric-pass'])
"

Read the full file on GitHub · 79 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. 10d ago First seen · 79 lines · 30 tokens per session scan A 69c59715df9a

Subscribe to this mod's changes

strategy-push is a skill published in the GitHub repository opendatahub-io/strat-creator (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 30 tokens to every session and 828 once invoked, about $0.0002 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

nx-workspace-patterns

Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands.

wshobson/agents · 35 tokens

bazel-build-optimization

Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.

wshobson/agents · 36 tokens

babysit

Same-session monitoring loop for PRs, CI runs, tickets, and deployments using the monitorstart / monitorupdate / autonudgestop MCP tools. The loop re-injects your check instructions into THIS session on an idle interval — same context, same tools — and works from dashboard chat, Slack threads, and Discord DMs. Use…

kirodotdev/KiroCrew · 137 tokens

add-azuredevops

Adds Azure DevOps connector to a Power Apps code app. Use when querying work items, creating bugs, managing pipelines, or making ADO API calls.

microsoft/power-platform-skills · 37 tokens

atmos-modernization

Atmos Modernization: migrate deprecated or legacy Atmos patterns to current names, Native CI, Atmos Pro drift detection, dependencies.components, nametemplate, and declared secrets.

cloudposse/atmos · 36 tokens

gitlab-devops

GitLab DevOps operations — issues, merge requests, CI/CD pipelines, repository browsing, labels, milestones, releases, and wiki management. Use when querying GitLab project status, monitoring pipeline executions, browsing repository files, creating issues for network findings, opening merge requests for config…

automateyournetwork/netclaw · 67 tokens