config-editor
Launch Claude Config Editor - visual GUI for editing ~/.claude/ settings
Config Editor Launch
Launch the Claude Config Editor web application.
Steps
- Find the plugin installation directory by checking where this command is running from
- Run the following commands in the plugin directory:
# Install dependencies if node_modules doesn't exist
if [ ! -d "node_modules" ]; then
npm install
fi
# Start both frontend and backend
npm start
- Tell the user:
- Config Editor is running at http://localhost:5173
- Backend API is running at http://localhost:3850
- Press
Ctrl+Cin the terminal to stop
Important
- Requires memory-bank plugin for project list functionality
- Both servers run concurrently via a single
npm startcommand