analyzing-codebases
Detects project languages and monorepo state, runs language-appropriate static analysis (dependency graph, complexity, duplication, semantic patterns), and…
Optimizes a single existing skill through analysis, best-practice research, and targeted edits. Use when user says "improve skill", "optimize skill", "update skill", "skill needs work". Use when one specific skill is outdated or underperforming. NOT for multi-skill consolidation
$ npx -y skills add wayne930242/Reflexive-Claude-Code --skill improving-skills --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/improving-skillsContext preview
The summary Claude sees to decide when to auto-load this skill.
Optimizes a single existing skill through analysis, best-practice research, and targeted edits. Use when user says "improve skill", "optimize skill", "update skill", "skill needs work". Use when one specific skill is outdated or underperforming. NOT for multi-skill consolidation
name: improving-skills description: Optimizes a single existing skill through analysis, best-practice research, and targeted edits. Use when user says "improve skill", "optimize skill", "update skill", "skill needs work". Use when one specific skill is outdated or underperforming. NOT for multi-skill consolidation (use refactoring-skills instead).
**Improving skills IS refactoring documentation for clarity and effectiveness.**
Analyze current state, research best practices, apply targeted improvements.
**Core principle:** Improve what exists—don't rewrite from scratch unless necessary.
Follow [task initialization protocol](../../references/task-initialization.md).
**Tasks:** 1. Analyze current skill 2. Gather project context 3. Research best practices 4. Identify improvements 5. Apply improvements 6. Validate and review
Announce: "Created 6 tasks. Starting execution..."
**Goal:** Understand the skill's current state.
**Read the skill:**
cat <skill-path>/SKILL.md ls -la <skill-path>/
**Document:**
**Common issues:**
**Verification:** Have documented purpose, triggers, and issues.
**Goal:** Understand how the skill fits the project.
**Search for usage:**
grep -r "[skill-name]" . --include="*.md"
**Questions:**
**Verification:** Understand skill's role in project context.
**Goal:** Find current best practices for the skill's domain.
**WebSearch:**
[skill domain] best practices [current year] [skill domain] patterns
**Optional: External skills search**
If `claude-skills-mcp` is available:
mcp__claude-skills-mcp__search_skills query="[skill domain]"
Compare with community implementations.
**Verification:** Have list of best practices to consider.
**Goal:** Create specific improvement plan.
**Check against standards:**
**Improvement types:**
| Issue | Improvement | |-------|-------------| | Vague triggers | Add specific "Use when..." phrases | | No task list | Add Task Initialization section | | No verification | Add verification criteria per task | | No Red Flags | Add anti-rationalization section | | Too long | Extract to references | | Outdated | Update to current best practices |
**Verification:** Have specific list of improvements to make.
**Goal:** Make targeted edits to the skill.
**Important:** Make focused edits, not full rewrites.
**Order of changes:** 1. Fix frontmatter (description) 2. Add Task Initialization if the flow is multi-step 3. Add verification criteria 4. Add Red Flags / Rationalizations if there's real risk 5. Extract verbose content to references
**For each change:**
**Verification:** All identified improvements applied.
**Goal:** Verify skill meets quality standards.
**Validation:**
python3 "${CLAUDE_SKILL_DIR}/../writing-skills/scripts/validate_skill.py" <skill-path>**Or manual checklist:**
**Quality review:**
**Invoke `skill-reviewer` subagent:**
Task tool: - subagent_type: "rcc:skill-reviewer" - prompt: "Review skill at [path]"
**Outcomes:**
**Verification:** skill-reviewer returns "Pass".
These thoughts mean you're rationalizing. STOP and reconsider:
**All of these mean: You're about to make things worse. Follow the process.**
| Excuse | Reality | |--------|---------| | "Full rewrite" | Targeted fixes preserve what works. Edit, don't rewrite. | | "Skip research" | Best practices evolve. Check current standards. | | "Fine as-is" | If you're here, something needs improvement. Find it. | | "Skip validation" | Small changes can break things. Validate. | | "No Red Flags" | Every discipline skill needs anti-rationalization. |
A Claude Code plugin marketplace for skills-driven Agentic Context Engineering (ACE) — build, analyze, and maintain agent systems with structured workflows.
Repo: wayne930242/Reflexive-Claude-Code
Detects project languages and monorepo state, runs language-appropriate static analysis (dependency graph, complexity, duplication, semantic patterns), and…
Executes a refactor plan phase-by-phase on a dedicated branch with per-phase commits and mandatory reviewer checkpoints. Use when characterization-tests…
Writes AGENTS.md per subproject, archives run artifacts, and suggests rcc handoff conditionally. Use when verifying-refactors passes (PASS or…
Converts a refactor map into a phased plan using parallel-change, branch-by-abstraction, or strangler fig patterns. Use when user has approved the refactor map…
Adds golden/snapshot tests to untested hotspot modules before refactoring. Use when refactor plan marks any phase with…
Validates hard structural rules (no cycles, file/fn line caps, cognitive/cyclomatic complexity) and runs mutation testing on touched modules. Use when…