chore: archive 15 completed OpenSpec changes

Move the following audited-and-implemented changes into
openspec/changes/archive/2026-06-12-completed-changes-archive/:

- backend-frontend-refactoring
- config-profile-git-mounts
- config-profile-includes-ui
- config-profile-multi-repo-mounts
- container-monitoring-notifications
- git-mount-url-validation
- home-path-expansion
- mobile-terminal-ux
- mount-specificity-ordering
- notification-center
- persistent-terminal-sessions
- session-list-overhaul
- ssh-key-mounting
- terminal-fullscreen-unified-header
- tool-session-progress-and-updates

Also regenerated .pi-map*.md files for openspec/changes so the
remaining active changes (multi-session-terminal-ux, reorganize-long-files,
working-copies, workspace-first-ui) reflect the new layout.
This commit is contained in:
Developer
2026-06-12 14:26:55 +00:00
parent 30549f4863
commit caadd59441
493 changed files with 3563 additions and 3490 deletions
@@ -0,0 +1,20 @@
# archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs (index)
dir: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs
## role
Contains archived specification documents for the config-profile-includes-ui feature from a completed changeset dated June 12, 2026.
## parent
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/.pi-map.index.md
map: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/.pi-map.md
## children
- archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management/.pi-map.index.md
map: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management/.pi-map.md
## files
## links
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/.pi-map.index.md
map: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/.pi-map.md
## workflows
-
## dirty
-
@@ -0,0 +1,18 @@
# archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs
dir: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/.pi-map.index.md
## role
Contains archived specification documents for the config-profile-includes-ui feature from a completed changeset dated June 12, 2026.
## files
## arch
N/A (empty directory - no code or architectural patterns present; intended as historical documentation storage for completed UI specifications)
## tags
-
## symbols
-
## workflows
-
## dirty
-
@@ -0,0 +1,19 @@
# archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management (index)
dir: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management
## role
Defines requirements for a UI feature that allows users to manage which configuration profiles are included in another profile.
## parent
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/.pi-map.index.md
map: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/.pi-map.md
## children
-
## files
- spec.md
## links
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management/.pi-map.index.md
map: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management/.pi-map.md
## workflows
-
## dirty
-
@@ -0,0 +1,19 @@
# archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management
dir: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management
index: archive/2026-06-12-completed-changes-archive/config-profile-includes-ui/specs/config-profile-includes-management/.pi-map.index.md
## role
Defines requirements for a UI feature that allows users to manage which configuration profiles are included in another profile.
## files
- spec.md | Define requirements for a config profile editor feature that manages profile includes with display, add/remove/reorder functionality, and save capabilities | dep: profile editor UI, includes API, profile update API, dropdown component, drag-and-drop system
## arch
Specification-driven requirements document using Markdown format with user stories, acceptance criteria, and UI/UX details for a CRUD+reorder management interface.
## tags
profile, spec, define, requirements, config, editor, feature, manages
## symbols
-
## workflows
-
## dirty
-
@@ -0,0 +1,98 @@
## ADDED Requirements
### Requirement: Display Profile Includes
The system SHALL display the ordered list of profiles that a config profile includes, with each include showing the included profile's name and scope.
#### Scenario: View includes on profile editor
- **WHEN** a user opens a config profile in the editor
- **AND** that profile has includes configured
- **THEN** the editor shows an "Includes" section
- **AND** each include displays the profile name
- **AND** each include displays a scope badge (Global, Project, Tool, or Project + Tool)
- **AND** includes are shown in their resolution order (first to last)
#### Scenario: Empty includes section
- **WHEN** a user opens a config profile in the editor
- **AND** that profile has no includes
- **THEN** the "Includes" section is visible but empty
- **AND** it shows a message indicating no includes are configured
### Requirement: Add Profile Includes
The system SHALL allow users to add other compatible profiles as includes to the currently edited profile.
#### Scenario: Add an include
- **WHEN** a user clicks "Add Include" in the profile editor
- **THEN** a dropdown appears with available profiles
- **AND** the dropdown excludes the current profile
- **AND** the dropdown excludes profiles already included
- **AND** the dropdown excludes profiles that would create an include cycle
- **AND** each option shows the profile name with its scope badge
- **WHEN** the user selects a profile
- **THEN** it is appended to the includes list
- **AND** it appears at the end of the resolution order
#### Scenario: Prevent self-inclusion
- **GIVEN** a user is editing profile "A"
- **WHEN** they attempt to include profile "A" itself
- **THEN** profile "A" does not appear in the dropdown
#### Scenario: Prevent duplicate includes
- **GIVEN** profile "A" already includes profile "B"
- **WHEN** a user attempts to add another include
- **THEN** profile "B" does not appear in the dropdown
#### Scenario: Prevent cyclic includes
- **GIVEN** profile "A" includes profile "B"
- **AND** profile "B" includes profile "C"
- **WHEN** a user is editing profile "C"
- **THEN** profile "A" does not appear in the dropdown
- **AND** profile "B" does not appear in the dropdown
- **BECAUSE** including either would create a cycle
### Requirement: Remove Profile Includes
The system SHALL allow users to remove includes from a profile.
#### Scenario: Remove an include
- **WHEN** a user clicks the remove button on an include row
- **THEN** that include is removed from the list
- **AND** the remaining includes maintain their relative order
### Requirement: Reorder Profile Includes
The system SHALL allow users to reorder profile includes via drag-and-drop, where order determines resolution priority.
#### Scenario: Reorder includes via drag-and-drop
- **GIVEN** a profile includes profiles in order: B, C, D
- **WHEN** a user drags "C" before "B"
- **THEN** the order becomes: C, B, D
- **AND** the resolution order is updated accordingly
#### Scenario: Resolution order affects overrides
- **GIVEN** profile "A" includes "B" then "C"
- **AND** both "B" and "C" define the same environment variable "FOO"
- **WHEN** the profile is resolved
- **THEN** the value from "C" wins because it comes later in the order
### Requirement: Save Profile Includes
The system SHALL save profile includes when the user saves the profile form.
#### Scenario: Save includes with profile
- **GIVEN** a user has modified the includes list (added, removed, or reordered)
- **WHEN** they click "Save Profile"
- **THEN** the includes are saved via the includes API
- **AND** the profile fields are saved via the profile update API
- **AND** both operations succeed or both fail
#### Scenario: Include cycle error on save
- **GIVEN** a user has configured includes that would create a cycle
- **WHEN** they attempt to save
- **THEN** the save fails
- **AND** an error message displays the cycle path
- **AND** the form remains editable so the user can fix it
### Requirement: Show Include Count in Profile List
The system SHALL display the number of includes each profile has in the profile list sidebar.
#### Scenario: Profile list shows include count
- **WHEN** a user views the config profiles list
- **THEN** each profile that has includes shows a badge with the count
- **AND** profiles with no includes show no badge