dsc-rs 0.10.15

Discourse CLI tool for managing multiple Discourse forums: track installs, run upgrades over SSH, manage emojis, sync topics and categories as Markdown, and more.
Documentation
# Implementation Plan

## Agents

- Run tests after all code changes and ensure tests pass.
- Make regular commits with clear messages reflecting progress.
- Keep documents in spec/ up to date with any changes or decisions made during implementation.
- When commencing work, move the relevant item in roadmap.md from "Planned" to "In Progress", and upon completion, move it to "Completed" and check the box.

## Source Spec

- Read and implement the CLI described in `spec/spec.md`.
- Treat "CLI Consistency Standards" in `spec/spec.md` as normative for all new command UX/output changes.

## CLI Consistency Rollout

- Phase 1: Document standards and normalize shared validation/error helpers.
- Phase 2: Ensure all `* list` commands meet minimum `text|json|yaml` and empty-list behavior.
- Phase 3: Normalize mutating-command success output to machine-friendly defaults.
- Phase 4: Add consistent `--quiet` / structured output options for mutating commands.
- Phase 5: Update README command reference and examples to reflect actual CLI behavior.

## CLI + Project

- Build the `dsc` CLI in Rust.
- Cover every command in the spec with an end-to-end test.
- Every flag should have a shortened alias for convenience (e.g., `--format` -> `-f`).
- Ensure the CLI syntax adheres to standard conventions and is documented in the Unix style.
- Tab completion scripts for bash, zsh, and fish should be provided.
- Distribution note: Rust CLIs commonly use `clap_complete` to generate shell completion scripts (often at build time into `OUT_DIR` for packaging) and/or commit pre-generated scripts for users/packagers. For now, we will generate scripts into `completions/` and refresh them when CLI flags change.

## Code Comments

- Ensure all public functions and structs have appropriate Rustdoc comments.
- Add inline comments for complex logic sections.

## End-to-End Testing

- Each `dsc` command must have an end-to-end test that:
  - Sends messages to a test Discourse.
  - Verifies the correct response on the forum.
  - Deletes any test data created on the test forum, at the end of testing.
- Test Discourse credentials/config will be provided in `testdsc.toml`.
- Tests should be organised in a modular fashion within the `tests/` directory.

## Configuration Files

- Add a version-controlled example config file for `dsc.toml`.
- Ensure full `dsc.toml` files are gitignored.

## Questions Tracking

- Collect any open questions in `queries.md` for user follow-up.
- Remove resolved questions from `queries.md` as the implementation progresses.