refactoring-specialist

PassAudited by VirusTotal on May 6, 2026.

Overview

Type: OpenClaw Skill Name: ah-refactoring-specialist Version: 1.0.0 The skill bundle is a purely instructional set of guidelines for an AI agent to act as a refactoring specialist. The SKILL.md file contains standard software engineering principles, refactoring patterns (e.g., Extract Method, Design Patterns), and safety checklists. There is no executable code, no suspicious network activity, and no evidence of prompt injection or malicious intent.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A broad or ambiguous request could lead to larger code rewrites than the user intended.

Why it was flagged

The skill explicitly includes broad automated code transformation capabilities. This fits the stated refactoring purpose, but these actions can affect many files if not scoped and reviewed.

Skill content
Automated refactoring:
- AST transformations
- Pattern matching
- Code generation
- Batch refactoring
- Cross-file changes
Recommendation

Set clear target files or modules, require diff review, and run tests or CI before accepting changes.

NoteHigh Confidence
ASI08: Cascading Failures
What this means

If applied to a shared or production database without review, changes could break dependent code or alter data unexpectedly.

Why it was flagged

Database and data-migration refactoring can propagate effects across applications, data stores, and downstream users. The behavior is purpose-aligned but should be contained.

Skill content
Database refactoring:
- Schema normalization
- Index optimization
- Query simplification
- Stored procedure refactoring
- View consolidation
- Constraint addition
- Data migration
Recommendation

Use this skill on development branches or staging environments first, require backups and migration review, and verify backward compatibility.