fix(hooks): update statusline branding from 'Claude Flow V3' to 'Rufl…#1271
Open
webdevpraveen wants to merge 1 commit intoruvnet:mainfrom
Open
fix(hooks): update statusline branding from 'Claude Flow V3' to 'Rufl…#1271webdevpraveen wants to merge 1 commit intoruvnet:mainfrom
webdevpraveen wants to merge 1 commit intoruvnet:mainfrom
Conversation
…o V3' The project was rebranded from claude-flow to ruflo, but the statusline generator still outputs 'Claude Flow V3' in the header. This affects three output modes: - generateStatusline() (multi-line format) - generateSingleLine() (compact single-line format) - generateSafeStatusline() (collision-safe multi-line format) Update all four occurrences (including the doc comment) to use the new 'Ruflo V3' branding. Fixes ruvnet#1254
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the statusline output to display
Ruflo V3instead of the oldClaude Flow V3branding.Problem
The package was rebranded from
claude-flowtoruflo, but the statusline generator still outputs the old name:This affects users who migrated to the
ruflopackage and see inconsistent branding.Fix
Updated 4 occurrences in v3/@claude-flow/hooks/src/statusline/index.ts :
Why this is safe
Pure string replacement - no logic changes, no API changes, no risk of regression. Aligns with the rebrand that was already applied to package.json, README, and CLI commands.
Fixes Issue #1254