feat(FN-1163): align command references with fn naming

- Update CLI command strings, help text, and project-resolution messaging to reference fn
- Sync core backup/store messaging and dashboard API/planning/subtask prompt examples with fn usage
- Refresh dashboard UI copy in settings, project detection, and PR guidance for consistent command naming
- Adjust CLI/dashboard tests and add a @gsxdsm/fusion changeset for the naming alignment patch
This commit is contained in:
gsxdsm
2026-04-08 11:00:32 -07:00
parent 6ac147b8fe
commit 4f48d2d186
30 changed files with 77 additions and 72 deletions

View File

@@ -581,7 +581,7 @@ export class TaskStore extends EventEmitter<TaskStoreEvents> {
/**
* Update global (user-level) settings in `~/.pi/fusion/settings.json`.
*
* These settings persist across all kb projects for the current user.
* These settings persist across all fn projects for the current user.
* Only fields defined in `GlobalSettings` are accepted.
*/
async updateGlobalSettings(patch: Partial<GlobalSettings>): Promise<Settings> {
@@ -1828,7 +1828,7 @@ export class TaskStore extends EventEmitter<TaskStoreEvents> {
`Merge conflict merging '${branch}'. Resolve manually:\n` +
` cd ${this.rootDir}\n` +
` git merge --squash ${branch}\n` +
` # resolve conflicts, then: kb task move ${id} done`,
` # resolve conflicts, then: fn task move ${id} done`,
);
}