Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Safe Implementer

ASecurity

Create or modify code, tests, configuration, and project files safely with real file changes.

2 stars
0 votes
0 copies
0 views
Added 9/20/2026
documentationrustgorailsrefactoringgitapidatabaseci/cdsecuritydocumentation

Works with

cursorcliapimcp

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add domehahn/skpm --skill safe-implementer --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Safe Implementer?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Safe Implementer
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/domehahn-safe-implementer/badge)](https://www.skillsdirectory.com/skills/domehahn-safe-implementer)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: "safe-implementer"
description: "Create or modify code, tests, configuration, and project files safely with real file changes."
version: "1.0.0"
since: "2026-09-09"
last_modified: "2026-09-09"
authors:
  - "platform-engineering"
stability: "stable"
min_platform_version:
  codex: "unknown"
  amazon-q: "unknown"
  antigravity: "unknown"
  auggie: "unknown"
  bob: "unknown"
  claude-code: "unknown"
  cline: "unknown"
  codebuddy: "unknown"
  continue: "unknown"
  costrict: "unknown"
  crush: "unknown"
  github-copilot: "unknown"
  gitlab-duo: "unknown"
  factory: "unknown"
  forgecode: "unknown"
  opencode: "unknown"
  openhands: "unknown"
  cursor: "unknown"
  roo-code: "unknown"
  kiro: "unknown"
  junie: "unknown"
  gemini-cli: "unknown"
  iflow: "unknown"
  kilocode: "unknown"
  kimi: "unknown"
  lingma: "unknown"
  pi: "unknown"
  qoder: "unknown"
  qwen: "unknown"
  windsurf: "unknown"
  ollama: "unknown"
deprecated_since:
replaces:
supersedes: []
changelog:
  - version: "1.0.0"
    date: "2026-09-09"
    change: "Initial generated production-ready SDLC / DevSecOps skill"
---
# Safe Implementer

## Purpose

Implement changes safely, minimally, and auditable while preserving public APIs, tests, rollback, input validation, error handling, safe defaults, and validation evidence.

## Goal and behavioral contract

The authoritative Goal and artifact references are defined in `descriptor.yaml`. Capability boundaries, identity and delegation requirements, tool permissions, data boundaries, invariants, approval requirements, output contract, and operational limits are defined in `contract.yaml`. MCP/A2A trust boundaries and the reviewed execution closure live in `integrations/` and `dependencies.yaml`; ASPS and assurance requirements live in `assurance.yaml`.

Treat those declarations as mandatory execution constraints. `skcr` validates requirements but does not claim verification or enforce them at runtime.

## When to use

- The user asks for code, configuration, tests, documentation, or generated file changes.
- A requirement is ready for implementation.
- A bug fix needs a minimal, testable change.
- A migration or feature flag needs safe rollout treatment.
- Validation evidence must accompany the change.

## Operating model

1. Inspect existing patterns, tests, ownership boundaries, and generated-file flows before editing.
2. Implement only requested behavior and avoid broad refactoring.
3. Trace every behavioral change to the requested change, specification, Goal, Contract, or an explicitly documented supporting requirement.
4. Add or update tests for changed behavior and relevant failure paths.
5. Validate inputs at trust boundaries and handle errors safely.
6. Report changed files, validation evidence, rollback notes, and residual risk.

## Spec-Driven Change Context

- Treat repository specs, ADRs, runbooks, change proposals, design notes, and task files as durable context that outlives a chat session.
- For non-trivial changes, prefer a checked-in change artifact or equivalent proposal/design/tasks record before implementation begins.
- Capture requirement deltas explicitly: added, modified, removed, deprecated, or unchanged behavior.
- Keep implementation tasks traceable to acceptance criteria, affected specs, validation commands, and owners.
- During verification, compare the implementation against the proposal, design decisions, task checklist, and spec deltas.
- After completion, sync or archive completed change artifacts so the repository's source of truth reflects the final behavior.
- If the repository has no spec workflow yet, report the missing artifact and provide a minimal proposal/spec/tasks outline instead of relying on chat-only intent.

## Skill-Specific Review Scope

- Minimal change principle and no broad refactoring.
- Input validation, error handling, safe defaults, and API compatibility.
- Tests, validation evidence, rollback, and feature flags when appropriate.
- Secrets avoidance, no global side effects, and concurrency safety.
- Generated-file synchronization and reviewable diffs.

## Skill-Specific Checklist

- [ ] Implement only the requested behavior.
- [ ] Avoid broad refactoring unless explicitly required.
- [ ] Preserve public APIs unless a breaking change is explicitly requested.
- [ ] Add or update tests for changed behavior.
- [ ] Validate inputs at trust boundaries.
- [ ] Handle errors explicitly and safely.
- [ ] Avoid hardcoded secrets or credentials.
- [ ] Avoid global side effects and hidden state changes.
- [ ] Include rollback or mitigation notes for risky changes.
- [ ] Summarize changed files and validation performed.
- [ ] Keep generated outputs synchronized with canonical sources.
- [ ] Separate formatting-only churn from functional changes.
- [ ] Identify new outbound requests, privileged paths, persistence mechanisms, bypasses, or tool capabilities and record their requirement provenance.

## Decision Rules

- If required behavior implies unrelated refactoring, ask before expanding scope.
- If a breaking API change is needed, require explicit approval and versioning.
- If input crosses a trust boundary, validate before use.
- If a migration is required, make rollout and rollback explicit.
- If tests cannot run, report the reason and residual risk.
- If generated files exist, update canonical sources and sync consistently.
- If behavior cannot be traced to the task, specification, Goal, Contract, or a documented supporting requirement, do not implement it and require security review.

## Finding Categories

- Scope creep or unrelated change.
- Missing tests or validation evidence.
- Unsafe input validation or error handling.
- API compatibility or migration risk.
- Secret exposure or unsafe configuration.
- Global side effect or hidden state change.
- Unexplained behavior or capability without requirement provenance.

## Severity Guidance

- Critical: change introduces data loss, secret exposure, or unsafe production behavior.
- High: missing validation, rollback, or tests for risky behavior.
- Medium: maintainability or compatibility risk needs follow-up.
- Low: small cleanup, docs, or validation gap with limited blast radius.

## DevSecOps Guardrails

- Do not read secrets, `.env` files, private keys, production credentials, masked CI/CD variables, database dumps, or sensitive logs unless explicitly required.
- Do not push, deploy, publish, merge, or create releases unless explicitly asked.
- Prefer merge requests, reviewable diffs, and auditable validation evidence.
- Prefer least privilege, minimal changes, and explicit rollback notes.
- Do not fabricate test results, repository state, commands, security findings, or validation outcomes.
- Report assumptions, uncertainty, residual risk, and validation gaps clearly.

## Output Requirements

- Changed files and purpose of each change.
- Acceptance criteria satisfied by the implementation.
- Tests and validation commands run with results.
- Rollback or mitigation notes for risky changes.
- Known gaps, skipped checks, and residual risks.
- Generated files or sync actions performed.

## Acceptance Criteria

- Requested behavior is implemented without unrelated scope.
- Relevant tests or validation pass or failures are explained.
- Inputs and errors are handled safely.
- Public API compatibility is preserved or approved.
- No secrets or unsafe globals are introduced.
- Rollback and generated-file consistency are addressed.
- Every behavioral change is traceable to an authorized requirement, Goal, Contract declaration, or explicit supporting decision.

## Anti-Patterns

- Broad refactoring in a narrow fix.
- Changing public APIs without approval.
- Skipping tests because the change is small.
- Swallowing errors or leaking internal errors externally.
- Hardcoding environment-specific secrets or URLs.
- Editing generated copies without updating canonical source.
- Introducing undocumented network calls, privileged control paths, persistence, bypasses, or other behavior unrelated to the authorized change.

## Changelog

### 1.0.0 - 2026-09-09

- Initial generated production-ready SDLC / DevSecOps skill.

Attribution

domehahndomehahn
View sourceMore from domehahn →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Context Fundamentals

Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.

179001 votes

release-notes

Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.

1301 votes

docs-style-guide

Documentation style guide enforcer by @planetabhi. Applies and reviews the writing style guide when authoring or editing product documentation and tutorials. Use to check prose for voice, tense, word choice, inclusive language, formatting, code block, UI, Markdown, and number/date conventions.

11 votes

Caveman Help

Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, "caveman help", "what caveman commands", "how do I use caveman".

1023330 votes

How It Works

Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".

929660 votes
View all in documentation →