fix(install): hand off to /LifeOS setup — /lifeos-setup is not a registered command#1403
Open
rpriven wants to merge 1 commit into
Open
fix(install): hand off to /LifeOS setup — /lifeos-setup is not a registered command#1403rpriven wants to merge 1 commit into
rpriven wants to merge 1 commit into
Conversation
…stered command The installer's final step (and its dry-run message, fallback printf, and header comments) invokes /lifeos-setup, but the shipped skill registers as 'LifeOS' (SKILL.md name: LifeOS), so client-side command resolution rejects it: 'Unknown command: /lifeos-setup'. Every fresh install currently ends with an error instead of onboarding. Validated on a clean Debian 13 container and a separate Linux host (Claude Code 2.1.198) — deterministic, client-side. Applied to both the repo installer and the nested skill-payload copy. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Author
|
Re-verified against v6.0.3 / current main: both install.sh files still call the unregistered |
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.
What happens
The installer's final step execs
claude "/lifeos-setup", but the shipped skill registers asLifeOS(SKILL.md→name: LifeOS,argument-hint: [setup|…]). Client-side command resolution rejects/lifeos-setup(and/lifeos) before skill routing ever sees it:Only
/LifeOS setupworks. So every fresh install currently ends with an error instead of onboarding, and a new user who doesn't guess the casing + argument form is stranded at the finish line. The fallbackprintfand the dry-run message send them to the same dead command.Validated: clean Debian 13 container AND a separate Linux host with only the skill present (Claude Code 2.1.198) — deterministic, client-side. The currently-served
ourlifeos.ai/install.shhas the same handoff, so it needs a redeploy after this merges.The fix
/lifeos-setup→/LifeOS setupat all 5 occurrences (exec, dry-run message, fallback printf, two header comments), applied to both the repo installer and the nested skill-payload copy (LifeOS/install/skills/LifeOS/install/install.sh).Alternative if you'd rather keep the published copy valid: register an explicit
lifeos-setupalias command in the skill — the SKILL.md routing table already maps/lifeos-setupinternally, but the client rejects unregistered commands before that routing applies. Happy to rework the PR that way instead.Found during day-one Linux (Debian) runtime validation of v6.