Problem
When running air start claude and selecting skills, then running air start claude again, the TUI's preselected skills don't reflect what was just selected (and what currently lives in the filesystem). The preselection appears to come from some other source (default manifest?) rather than the actual on-disk state.
Additionally, deselecting an item in the TUI doesn't remove it from disk — selection is treated as additive only.
Repro
air start claude — select a non-default set of skills
- Confirm those skills are written to disk
air start claude again
- Observe: the preselected items in the TUI do not match what's on disk
- Deselect a manifest-controlled item, complete the flow
- Observe: the item is still present on disk
Expected
- The TUI should always represent the current state of the filesystem on entry. If the user added skill X last time, X should be preselected this time.
- TUI selection state should be the source of truth on what gets written and removed, scoped to manifest-controlled artifacts. Deselecting a manifest-controlled item should remove it from the filesystem on the next
air start claude. Locked/always-on items obviously stay.
Proposal
- Drive preselection from the current filesystem state (what's actually installed/wired up), not from a static default list.
- Apply selection diffs on commit: add newly-selected items, remove newly-deselected manifest-controlled items.
- Keep the existing "locked" affordance for always-on items.
- Add a separate affordance to indicate "default" items (which may or may not currently be selected per the on-disk manifest) — so users can tell which items are recommended defaults vs. which are currently active.
Problem
When running
air start claudeand selecting skills, then runningair start claudeagain, the TUI's preselected skills don't reflect what was just selected (and what currently lives in the filesystem). The preselection appears to come from some other source (default manifest?) rather than the actual on-disk state.Additionally, deselecting an item in the TUI doesn't remove it from disk — selection is treated as additive only.
Repro
air start claude— select a non-default set of skillsair start claudeagainExpected
air start claude. Locked/always-on items obviously stay.Proposal