Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

feature-modification-workflow特征修改工作流程

Agent Skill

feature-modification-workflow 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,235

周安装

173

GitHub Stars

公开资料未说明

下载量

1,370
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:feature-modification-workflow(特征修改工作流程)
来源仓库:https://github.com/liancheng-zcy/feature-modification-workflow
安装命令:
openclaw skills install feature-modification-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install feature-modification-workflow

简介

结构化工作流程可根据场景复杂性分析、计划和执行功能修改,确保变更受控、增量和风险意识。

SKILL.md

name
feature-modification-workflow
description
A structured workflow for modifying existing features. TRIGGER when: user says "I want to change a feature", "optimize xxx", "check if xxx has room for improvement", "fix a bug", or any request involving feature modifications. Choose the appropriate workflow based on scenario complexity: simple issues go straight to code, complex issues follow the full process.

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

  1. Read key files

- Project documentation (CLAUDE.md, README.md, etc.) - Core module implementation files - Files directly related to the change target

  1. 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

  1. Identify strengths

- What's good about current implementation - Which designs are reasonable and worth keeping

  1. Identify bottlenecks

- Where are performance bottlenecks - Where are UX bottlenecks - Where are maintainability bottlenecks

  1. 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)

  1. Unsure about specific API usage

- Framework API parameter meaning unclear - Library function best practices - API changes after version updates

  1. 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.

  1. 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.74%
按下载量换算1,010

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills