3 Commits

Author SHA1 Message Date
Yeachan-Heo 30b87c3725 feat(cli): add claw config show command
Expose the merged runtime settings through a direct CLI subcommand so
users can inspect the effective configuration without entering the REPL.
The command prints the merged config as pretty JSON and is covered by
unit and end-to-end tests.

Constraint: Must preserve existing config precedence and read the same merged runtime config used by the CLI
Rejected: Reuse the text `/config` report output | user requested machine-readable JSON
Confidence: high
Scope-risk: narrow
Reversibility: clean
Directive: Keep `claw config show` aligned with `ConfigLoader` precedence rules if config discovery changes
Tested: `cd rust && cargo build --workspace`; `cd rust && cargo test --workspace`
Not-tested: Manual invocation against a real user config outside test fixtures
2026-04-04 16:29:33 +00:00
Jobdori 03bd7f0551 feat: add 40 slash commands — command surface 67/141
Port 40 missing user-facing slash commands from upstream parity audit:

Session: /doctor, /login, /logout, /usage, /stats, /rename, /privacy-settings
Workspace: /branch, /add-dir, /files, /hooks, /release-notes
Discovery: /context, /tasks, /doctor, /ide, /desktop
Analysis: /review, /security-review, /advisor, /insights
Appearance: /theme, /vim, /voice, /color, /effort, /fast, /brief,
  /output-style, /keybindings, /stickers
Communication: /copy, /share, /feedback, /summary, /tag, /thinkback,
  /plan, /exit, /upgrade, /rewind

All commands have full SlashCommandSpec, enum variant, parse arm,
and stub handler. Category system expanded with two new categories.
Tests updated for new counts (67 specs, 39 resume-supported).
fmt/clippy/tests all green.
2026-04-03 08:09:14 +09:00
YeonGyu-Kim 65064c01db test(cli): expand integration tests for CLI args, config, and slash command dispatch
- Add 8 new integration tests for resume slash commands
- Test CLI arg parsing, slash command matching, config defaults
- All 102 tests pass (94 unit + 4 + 4 integration), clippy clean
2026-04-02 18:11:25 +09:00