# Safeguard

> Build safety nets before refactoring. Use when running surgeon or any risky refactor that needs a rollback point. Creates characterization tests, boundary markers, config freezes, and rollback points.

- **Type:** Skill
- **Install:** `agentstack add skill-rune-kit-rune-safeguard`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [Rune-kit](https://agentstack.voostack.com/s/rune-kit)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [Rune-kit](https://github.com/Rune-kit)
- **Source:** https://github.com/Rune-kit/rune/tree/master/skills/safeguard

## Install

```sh
agentstack add skill-rune-kit-rune-safeguard
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# safeguard

## Purpose

Build safety nets before any refactoring begins. Safeguard creates characterization tests that capture current behavior, adds boundary markers to distinguish legacy from new code, freezes config files, and creates git rollback points. Nothing gets refactored without safeguard running first.

Characterization tests MUST pass on the current (unmodified) code before any refactoring starts. If they do not pass, safeguard is not complete.

## Called By (inbound)

- `rescue` (L1): Phase 1 SAFETY NET — build protection before surgery
- `surgeon` (L2): untested module found during surgery

## Calls (outbound)

- `scout` (L2): find all entry points and public interfaces of the target module
- `test` (L2): write and run characterization tests for the target module
- `verification` (L3): verify characterization tests pass on current code

## Cross-Hub Connections

- `surgeon` → `safeguard` — untested module found during surgery

## Execution Steps

### Step 1 — Identify module boundaries

Call `rune:scout` targeting the specific module. Ask scout to return:
- All public functions, classes, and exported symbols
- All files that import from this module (consumers)
- All files this module imports from (dependencies)
- Existing test files for this module (if any)

Use `Read` to open the module entry file and confirm the public interface.

### Step 2 — Write characterization tests

Create a test file at `tests/char/.test.ts` (or `.js`, `.py` matching project convention).

Use `Write` to create the characterization test file. Rules for characterization tests:
- Tests MUST capture what the code CURRENTLY does, not what it should do
- Include edge cases that currently produce surprising output — test for that actual output
- Do NOT fix bugs in characterization tests — if the current code returns wrong data, test for that wrong data
- Cover every public function in the module
- Include at least one integration test calling the module as an external consumer would

Example structure:
```typescript
// tests/char/.test.ts
// CHARACTERIZATION TESTS — DO NOT MODIFY without running safeguard again
// These tests capture existing behavior as of: [date]

describe(' — characterization', () => {
  it('existing behavior: [function] with [input] returns [actual output]', () => {
    // ...
  })
})
```

### Step 3 — Add boundary markers

Use `Edit` to add boundary comments at the top of the module file and at key function boundaries:

```typescript
// @legacy — rune-safeguard [date] — do not refactor without characterization tests passing
```

For functions flagged by autopsy as high-risk, add:
```typescript
// @do-not-touch — coupled to [module], change both or neither
```

For planned new implementations, mark insertion points:
```typescript
// @bridge — new-v2 will replace this interface
```

### Step 4 — Config freeze

Use `Bash` to record current config state:

```bash
mkdir -p .rune
cp tsconfig.json .rune/tsconfig.frozen.json 2>/dev/null || true
cp .eslintrc* .rune/ 2>/dev/null || true
cp package-lock.json .rune/package-lock.frozen.json 2>/dev/null || true
echo "Config frozen at $(date)" > .rune/freeze.log
```

This preserves the baseline config so surgery can be verified against it.

### Step 5 — Create rollback point

Use `Bash` to create a git tag:

```bash
git add -A
git commit -m "chore: safeguard checkpoint before [module] surgery" --allow-empty
git tag rune-safeguard-
```

Replace `` with the actual module name. Confirm the tag was created.

### Step 6 — Verify

Call `rune:verification` and explicitly pass the characterization test file path.

```
If characterization tests fail on the CURRENT (unchanged) code → STOP.
Fix the tests to match actual behavior before proceeding.
Characterization tests MUST pass on current code. This is non-negotiable.
```

Only after verification passes, declare the safety net complete.

## Output Format

```
## Safeguard Report
- **Module**: [module name]
- **Tests Added**: [count] characterization tests
- **Coverage**: [before]% → [after]%
- **Markers Added**: [count] boundary comments
- **Rollback Tag**: rune-safeguard-[module]
- **Config Frozen**: [list of files in .rune/]
- **Hard Gate**: PASSED — all characterization tests pass on current code

### Characterization Tests
- `tests/char/[module].test.ts` — [count] tests capturing current behavior

### Boundary Markers
- `@legacy`: [count] files marked
- `@do-not-touch`: [count] files protected
- `@bridge`: [count] insertion points marked

### Config Frozen
- [list of locked config files in .rune/]

### Next Step
Safe to proceed with: `rune:surgeon` targeting [module]
```

## Constraints

1. MUST write characterization tests that pass on CURRENT code before any refactoring
2. MUST NOT proceed to surgery if characterization tests fail — the safety net is broken
3. MUST cover critical paths identified by autopsy — not just easy-to-test functions
4. MUST verify tests are meaningful — tests that always pass regardless of code are useless

## Sharp Edges

Known failure modes for this skill. Check these before declaring done.

| Failure Mode | Severity | Mitigation |
|---|---|---|
| Characterization tests that always pass regardless of code (trivial asserts) | CRITICAL | Constraint 4: tests must fail if the module is deleted or its logic is changed |
| Not covering critical paths identified by autopsy | HIGH | Constraint 3: cover high-risk functions first — autopsy flags which ones |
| Characterization tests written to "correct" behavior instead of current behavior | HIGH | Tests capture ACTUAL output, including bugs — do not fix behavior in the tests |
| Skipping config freeze step | MEDIUM | Step 4 is required — baseline config needed for comparison after surgery |
| No git tag created before declaring safeguard complete | MEDIUM | Tag `rune-safeguard-` must exist before surgery begins |

## Done When

- Module boundaries identified via scout (public functions, consumers, dependencies)
- Characterization tests written for all public functions
- Tests PASS on current (unmodified) code — HARD-GATE verified
- Boundary markers added (@legacy, @bridge, @do-not-touch)
- Config files frozen to .rune/
- Git tag `rune-safeguard-` created
- Safeguard Report emitted with test count, coverage, and rollback tag

## Returns

| Artifact | Format | Location |
|----------|--------|----------|
| Characterization test file | TypeScript/JS/Python test | `tests/char/.test.*` |
| Boundary markers | Code comments (@legacy, @bridge) | in-source |
| Frozen config snapshot | Copies of config files | `.rune/*.frozen.*` |
| Git rollback tag | Git tag | `rune-safeguard-` |
| Safeguard Report | Markdown | inline |

## Cost Profile

~2000-5000 tokens input, ~1000-2000 tokens output. Sonnet for test writing quality.

**Scope guardrail:** safeguard builds safety nets only — it does not refactor code. All surgery is delegated to `surgeon` after the safeguard HARD-GATE passes.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [Rune-kit](https://github.com/Rune-kit)
- **Source:** [Rune-kit/rune](https://github.com/Rune-kit/rune)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-rune-kit-rune-safeguard
- Seller: https://agentstack.voostack.com/s/rune-kit
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
