Skip to content

Commit 069a420

Browse files
committed
Refactor: Simplify 'workspace:configure' to 'workspace'
- Renamed WorkspaceConfigureCommand to WorkspaceCommand - Changed command signature from 'workspace:configure' to 'workspace' - Follows pattern of single-purpose interactive commands (shell, server) - Updated all documentation references - All 653 tests passing
1 parent 567385d commit 069a420

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/guide/cli/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ keep env:add sandbox --no-interaction
8080
- Can contain letters, numbers, hyphens, and underscores
8181
- Examples: `qa`, `demo`, `integration`, `sandbox`, `dev2`, `staging-eu`
8282

83-
## `keep workspace:configure`
83+
## `keep workspace`
8484

8585
Personalize your workspace by filtering which vaults and envs appear in commands and UI.
8686

8787
**Examples:**
8888
```bash
89-
keep workspace:configure
89+
keep workspace
9090
```
9191

9292
**Interactive prompts:**

docs/guide/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ By default, Keep shows **all configured vaults and envs** - no filtering is appl
6969
If you want to filter which vaults and envs appear in commands and the Web UI:
7070

7171
```bash
72-
keep workspace:configure
72+
keep workspace
7373
```
7474

7575
This is useful when:
@@ -153,7 +153,7 @@ The `.keep/.gitignore` file is automatically created to exclude personal files.
153153

154154
1. Clone the repository (includes `.keep/` configuration)
155155
2. Run `keep verify` to check AWS access
156-
3. Run `keep workspace:configure` to personalize their workspace
156+
3. Run `keep workspace` to personalize their workspace
157157
4. Start working with secrets immediately
158158

159159
## Next Steps

src/Commands/WorkspaceConfigureCommand.php renamed to src/Commands/WorkspaceCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
use function Laravel\Prompts\note;
1616
use function Laravel\Prompts\spin;
1717

18-
class WorkspaceConfigureCommand extends BaseCommand
18+
class WorkspaceCommand extends BaseCommand
1919
{
20-
protected $signature = 'workspace:configure';
20+
protected $signature = 'workspace';
2121

2222
protected $description = 'Configure your personal workspace - select which vaults and environments you work with';
2323

src/KeepApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(protected KeepInstall $install)
4141

4242
Commands\EnvAddCommand::class,
4343

44-
Commands\WorkspaceConfigureCommand::class,
44+
Commands\WorkspaceCommand::class,
4545

4646
Commands\GetCommand::class,
4747
Commands\SetCommand::class,

0 commit comments

Comments
 (0)