feature-modification-workflow

v1.0.0

Structured workflow to analyze, plan, and execute feature modifications by scenario complexity, ensuring controlled, incremental, and risk-aware changes.

0· 139·1 current·1 all-time
byliancheng@liancheng-zcy

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for liancheng-zcy/feature-modification-workflow.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "feature-modification-workflow" (liancheng-zcy/feature-modification-workflow) from ClawHub.
Skill page: https://clawhub.ai/liancheng-zcy/feature-modification-workflow
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install feature-modification-workflow

ClawHub CLI

Package manager switcher

npx clawhub@latest install feature-modification-workflow
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description (feature modification workflow) align with the SKILL.md: the instructions focus on analyzing code, proposing plans, and making controlled changes. There are no unrelated environment variables, binaries, or installs requested.
Instruction Scope
The SKILL.md explicitly directs the agent to read project structure and 'full source of all included files' for complex scenarios. That breadth is coherent for deep feature work, but it grants the agent wide read access to the repository (which may contain secrets or sensitive data). The instructions do not ask for unrelated system files, environment variables, or external endpoints beyond standard documentation review.
Install Mechanism
No install specification or code files are included; this is instruction-only so nothing will be written to disk or downloaded during install.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate to an analysis-and-edit workflow that runs inside the agent.
Persistence & Privilege
always is false and the skill is user-invocable; model invocation is allowed (the platform default). There is no request to modify other skills or system-wide settings.
Assessment
This skill is coherent and appears to do what it says: analyze code and follow a staged workflow for changes. Before installing or running it: (1) confirm the skill source (homepage is unknown) — prefer skills from known publishers; (2) be aware it instructs the agent to read the entire repository for complex tasks, so avoid running it on repos with unredacted secrets or PII; (3) require explicit, human confirmation before the agent performs changes or pushes commits (the SKILL.md recommends this for complex work); and (4) monitor audit logs or diffs for any unexpected file reads or network activity. If you need stronger guarantees, ask the skill author for provenance or a minimal-scope version that only reads specified files.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fenhze10bdaw60sp1we4jcx83wpgz
139downloads
0stars
1versions
Updated 4w ago
v1.0.0
MIT-0

Feature Modification Workflow

A standardized workflow for modifying existing features, ensuring changes are well-founded, controlled, and incremental.

Core Principles

Understand First, Then Modify — Before any feature change, understand the relevant code to ensure the change direction is correct.

Choose Workflow by Scenario — Simple issues get simplified workflow, complex issues get full workflow. No unnecessary overhead.

Check Docs When Needed — Only check latest documentation when dealing with complex technical details or specific API usage. Simple changes don't need this.

Conservative Optimization — Optimize without changing existing flows and core logic. Avoid high-risk large-scale refactoring.

Confirm Before Execute — Complex changes require user confirmation before development begins.


Step 1: Determine Scenario

After receiving a user request, first determine which scenario it falls into, then choose the corresponding workflow:

ScenarioCharacteristicsWorkflow
Simple IssueChange color, text, spacing, config valuesSimplified: Read code → Change directly
Bug FixFix errors, exceptions, unexpected behaviorMust analyze cause. Simple bugs use simplified workflow, complex bugs use full workflow
Complex IssueNew features, logic optimization, multi-file changes, architecture involvedFull 5-step workflow
RefactoringCore flow changes, large-scale code adjustmentsFull 5-step workflow

Scenario 1: Simple Issue (Simplified Workflow)

What Counts as Simple Issue

  • UI adjustments: change color, font size, spacing, borders
  • Text modifications: change copy, hints, labels
  • Config modifications: change defaults, parameters
  • Single-file small changes: doesn't affect other modules

Simplified Workflow

1. Read relevant code (only the part to change)
2. Make the change
3. Inform user it's done

Example

User: Change the login button color to blue

AI:

  • Read button code → Find color setting → Change to blue → Done

Scenario 2: Bug Fix (Must Analyze Cause)

Core Requirement

Bug fixes must first locate the cause. Don't change code based on guessing.

Simple Bug (Simplified Workflow)

Characteristics: Cause is clear, small change scope, doesn't affect other features

1. Analyze current state: locate bug cause
2. Fix directly
3. Inform user it's done

Complex Bug (Full Workflow)

Characteristics: Cause unclear, involves multiple modules, may affect other features, requires architecture changes

Follow the full 5-step workflow

Judgment Criteria

Simple BugComplex Bug
Clear error message, can locate directlyCause unclear, needs investigation
Small change scope, 1-2 placesInvolves multiple files/modules
Doesn't affect other featuresMay cause chain reactions
Doesn't involve core logicNeeds to change core flow

Scenario 3: Complex Issue (Full 5-Step Workflow)

What Counts as Complex Issue

  • Adding new features
  • Optimizing logic/performance
  • Changes involving multiple files
  • Architecture adjustments
  • Requires design proposals

Full Workflow

Step 1: Understand the Project Globally

After receiving a feature change request, don't start coding directly. First do the following:

  1. Understand project structure

    • Use Glob to view directory structure
    • Identify core modules and dependencies
    • Find relevant config files, entry files
  2. Read key files

    • Project documentation (CLAUDE.md, README.md, etc.)
    • Core module implementation files
    • Files directly related to the change target
  3. Understand existing flows

    • How data flows
    • How modules communicate
    • What the user interaction flow is

Output Format:

## Project Overview
- Project type: xxx
- Core modules: xxx, xxx, xxx
- Data flow: xxx → xxx → xxx

## Related Modules
- Module A: responsible for xxx
- Module B: responsible for xxx
- Dependencies: A → B → C

Step 2: Analyze Current State

After understanding the project, analyze the current state of the change target:

  1. Current implementation analysis

    • How is current code implemented
    • What technologies/patterns are used
    • What key design decisions were made
  2. Identify strengths

    • What's good about current implementation
    • Which designs are reasonable and worth keeping
  3. Identify bottlenecks

    • Where are performance bottlenecks
    • Where are UX bottlenecks
    • Where are maintainability bottlenecks
  4. Identify weaknesses

    • Code quality issues
    • Design flaws
    • Extensibility limitations

Output Format:

## Current State Analysis

### Current Implementation
[Describe current implementation]

### Strengths
- xxx
- xxx

### Bottlenecks/Weaknesses
- xxx: [specific description]
- xxx: [specific description]

Step 3: Propose Optimization Plan

Based on analysis, propose optimization plan. Key constraint: don't change existing flow

  • Optimization should be incremental, not a rewrite
  • Keep core logic and data flow
  • Only make local improvements

Output Format:

## Optimization Plan

### Overview
[Briefly describe optimization approach]

### Optimization Points
1. xxx: [specific change, expected effect]
2. xxx: [specific change, expected effect]

### What Not to Change
- xxx: [why to keep]

### Risk Assessment
- Change scope: [large/medium/small]
- Affected modules: xxx, xxx
- Note: xxx

Step 4: List Plan and Ask User

Break down the optimization plan into specific steps, list the plan and ask user for confirmation:

Output Format:

## Development Plan

### Step List
1. [ ] Step 1: xxx
2. [ ] Step 2: xxx
3. [ ] Step 3: xxx

### Confirmation Questions
- Does the above plan meet your expectations?
- Any steps need adjustment or addition?
- Can I start execution?

Wait for user response. Don't start development on your own.

Step 5: Execute Step by Step After Confirmation

After user confirms:

  1. Use TodoWrite to create task list, track progress
  2. Develop step by step
  3. Mark completion and inform user after each step
  4. Report issues promptly, don't bypass problems

During development:

  • Keep communication, ask user for important decisions
  • Complete one step before starting next
  • If plan needs adjustment, ask user first

Scenario 4: Refactoring (Full 5-Step Workflow)

Refactoring must follow the full workflow because of high risk and large impact scope.

Characteristics of refactoring:

  • Changes to core flow
  • Large-scale code adjustments
  • Involves multiple modules
  • May affect existing features

Conditional Step: Check Documentation

Not all changes need documentation check. Only check in these cases:

When to Check Documentation

  1. Complex technical details

    • Audio processing algorithms (sample rate conversion, silence detection)
    • Network protocol details (WebSocket frame format, Protobuf encoding)
    • Multi-threading/concurrency issues (thread safety, lock mechanisms)
  2. Unsure about specific API usage

    • Framework API parameter meaning unclear
    • Library function best practices
    • API changes after version updates
  3. Involves specifications or standards

    • Data format specifications
    • Protocol standard documents
    • Security/compliance requirements

When NOT to Check Documentation

  • UI layout adjustments (spacing, colors, fonts)
  • Simple logic changes (conditionals, parameter adjustments)
  • Already familiar API usage
  • Similar implementation exists in project for reference

Documentation Check Tools Priority

  1. Context7 (mcp__context7__resolve-library-id + mcp__context7__query-docs)

    • Latest docs for programming libraries/frameworks
    • PySide6, React, numpy, etc.
  2. WebSearch

    • Protocol specifications, technical articles
    • WebSocket protocol, best practice articles

Quick Reference

Scenario-Workflow Mapping

ScenarioWorkflow
Simple IssueRead code → Change directly
Simple BugAnalyze cause → Fix directly
Complex BugFull 5 steps
Complex IssueFull 5 steps
RefactoringFull 5 steps

Full 5 Steps

StepActionOutput
1Understand globallyProject overview
2Analyze current stateStrengths/bottlenecks/weaknesses
3Propose planOptimization points/what not to change
4List plan and askStep list + confirmation questions
5Execute after confirmationDevelop step by step

Conditional: Check documentation (for complex technical issues)


Remember: Determine scenario first, then choose workflow. Handle simple issues simply, plan complex issues carefully.

Comments

Loading comments...