safe-workflow

safe-workflow is a skill for Claude Code, Codex from bybren-llc/a-safe-pulse. It costs 52 tokens per session (626 once invoked), scanned A, a copy of safe-workflow, MIT.

A development workflow guide sets rules for working on a ticket, including branch names, commit messages, rebasing, and CI validation. CI, or continuous integration, automatically checks code changes.

In plain words
What is it for?
Use it when starting ticket work, creating branches or commits, preparing a pull request, or asking how changes should be integrated.
Why use it?
It removes uncertainty about the repository's contribution process and helps changes meet the checks required before review or merging.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

Good fit Use it when starting ticket work, creating branches or commits, preparing a pull request, or asking how changes should be integrated.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bybren-llc/a-safe-pulse/safe-workflow
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.

Any agent
npx skills add bybren-llc/a-safe-pulse --skill safe-workflow
Clone the repo
git clone --depth 1 https://github.com/bybren-llc/a-safe-pulse

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 safe-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/bybren-llc/a-safe-pulse/safe-workflow/github.svg)](https://agentmods.dev/skills/bybren-llc/a-safe-pulse/safe-workflow)
Your own site
<a href="https://agentmods.dev/skills/bybren-llc/a-safe-pulse/safe-workflow"><img src="https://agentmods.dev/badge/skills/bybren-llc/a-safe-pulse/safe-workflow/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 safe-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/bybren-llc/a-safe-pulse/safe-workflow"><img src="https://agentmods.dev/badge/skills/bybren-llc/a-safe-pulse/safe-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 626 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 88% copy Near-identical to another mod 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.00052 $0.00626
Opus 5 $0.00026 $0.00313
Sonnet 5 $0.00010 $0.00125
Haiku 4.5 $0.00005 $0.00063

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

Security

Grade A, and why

safe-workflow 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.

Origin

This is a copy

88% identical to safe-workflow — 26 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/safe-workflow/SKILL.md · 107 lines

How it starts

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

SAFe Workflow Skill

TEMPLATE: This skill uses ASP as a placeholder. Replace with your project's ticket prefix (e.g., WOR, PROJ, FEAT).

Purpose

Enforce SAFe-compliant git workflow with standardized branch naming, commit message format, and rebase-first merge strategy.

When This Skill Applies

  • Starting work on a ticket
  • Creating commits or branches
  • Asking about PR workflow or contribution guidelines
  • Asking "how should I commit this?"

Branch Naming Convention

Format: ASP-{number}-{short-description}

# Good
ASP-447-create-safe-workflow-skill
ASP-123-fix-login-redirect

# Bad
feature/add-dark-mode       (missing ticket number)
john-new-feature            (personal naming)

Commit Message Format

Format: type(scope): description [ASP-XXX]

Type When to Use
feat New feature
fix Bug fix
docs Documentation only
refactor Code restructuring
test Adding or updating tests
chore Maintenance, dependencies
feat(harness): create safe-workflow skill [ASP-447]
fix(auth): resolve login redirect [ASP-57]

Rebase-First Workflow

# 1. Start from latest main
git checkout dev && git pull origin dev

# 2. Create feature branch
git checkout -b ASP-{number}-{description}

# 3. Make commits
git commit -m "type(scope): description [ASP-XXX]"

# 4. Before pushing - rebase
git fetch origin && git rebase origin/dev

# 5. Push with force-with-lease
git push --force-with-lease

Pre-PR Checklist

  1. Branch name follows convention
  2. All commits have ticket reference
  3. Rebased on latest main
  4. CI passes: {{CI_VALIDATE_COMMAND}}

Evidence Template

When closing a ticket, attach evidence:

**Work Evidence**

**Ticket**: ASP-XXX
**Branch**: ASP-XXX-description
**PR**: #NNN

**Commits:**
- type(scope): description

**Validation:**
- CI: PASS
- Tests: X/X passing
- Lint: Clean

Read the full file on GitHub · 107 lines

Files

What ships with it

3 files 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. 4d ago First seen · 107 lines · 52 tokens per session scan A 9d03cf1aa2a0

Subscribe to this mod's changes

safe-workflow is a skill published in the GitHub repository bybren-llc/a-safe-pulse (9 stars, last pushed 5mo ago), licensed MIT. It adds 52 tokens to every session and 626 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to safe-workflow, differing in 26 lines, and is treated as a copy.