-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
agentic-workflowsautomationdocumentationImprovements or additions to documentationImprovements or additions to documentation
Description
Documentation Updates — 2026-03-23
This PR updates the documentation based on features and fixes merged in the last 24 hours.
Features Documented
- Config status in TUI with
[C]keybinding (from feat: show config status in TUI and VS Code extension #74) —agentrc tuinow shows a Config row in the Context section and a[C]shortcut to scaffoldagentrc.config.jsonwhen it's missing - Workspace Status tree view in VS Code (from feat: show config status in TUI and VS Code extension #74) — new sidebar view showing Config and Evals presence with clickable items to scaffold them
- TUI model/eval picker fallback (from fix(ui): model/eval picker shows no list when CLI model discovery fails #78) — picker always shows a usable model list even when CLI model discovery fails
- TUI terminal resize fix (from fix(ui): prevent terminal screen cheese on TUI resize #76) — no more ghost renders on terminal resize
@github/copilot-sdk0.2.0 bump (from build(deps): bump @github/copilot-sdk from 0.1.32 to 0.2.0 in the production-dependencies group across 1 directory #73) — dependency update logged
Changes Made
- Updated
CHANGELOG.md— added Unreleased entries for feat: show config status in TUI and VS Code extension #74, fix(ui): model/eval picker shows no list when CLI model discovery fails #78, fix(ui): prevent terminal screen cheese on TUI resize #76, and build(deps): bump @github/copilot-sdk from 0.1.32 to 0.2.0 in the production-dependencies group across 1 directory #73 (previous entries for fix: decouple config scaffolding from area detection #79 were already present) - Updated
docs/commands.md— added TUI key bindings table documenting[C],[M],[J],[Q], etc., plus the Context section description - Updated
docs/extension.md— expanded sidebar views section to include the new Workspace Status tree view - Updated
vscode-extension/README.md— expanded sidebar table from 2 views to 3 (added Workspace Status row)
Merged PRs Referenced
- fix: decouple config scaffolding from area detection #79 — fix: decouple config scaffolding from area detection (dry-run, JSONC, array expectations — already in docs)
- fix(ui): model/eval picker shows no list when CLI model discovery fails #78 — fix(ui): model/eval picker shows no list when CLI model discovery fails
- fix(ui): prevent terminal screen cheese on TUI resize #76 — fix(ui): prevent terminal screen cheese on TUI resize
- feat: agent plugin with SKILL.md-based instruction generation #75 — feat: agent plugin with SKILL.md-based instruction generation (already documented in plugin/README.md and CHANGELOG [2.1.0])
- feat: show config status in TUI and VS Code extension #74 — feat: show config status in TUI and VS Code extension
- build(deps): bump @github/copilot-sdk from 0.1.32 to 0.2.0 in the production-dependencies group across 1 directory #73 — build(deps): bump
@github/copilot-sdkfrom 0.1.32 to 0.2.0
Notes
The docs/commands.md TUI key bindings table is derived from reading the PR #74 description and source code changes. If additional keys exist beyond the ones listed, a follow-up pass on src/ui/tui.tsx would confirm the complete set.
Generated by Daily Documentation Updater · ◷
- expires on Mar 24, 2026, 11:52 PM UTC
Note
This was originally intended as a pull request, but GitHub Actions is not permitted to create or approve pull requests in this repository.
The changes have been pushed to branch docs/update-2026-03-23-b245a3948e475ce0.
To fix the permissions issue, go to Settings → Actions → General and enable Allow GitHub Actions to create and approve pull requests.
Show patch preview (120 of 120 lines)
From 0d78e23b3d6a3701e3893167c03ec03bd2844f55 Mon Sep 17 00:00:00 2001
From: GitHub Copilot <copilot@github.com>
Date: Mon, 23 Mar 2026 23:50:15 +0000
Subject: [PATCH] docs: update documentation for features merged 2026-03-22/23
Add missing changelog entries and documentation for:
- Config status in TUI with [C] keybinding (PR #74)
- Workspace Status tree view in VS Code extension (PR #74)
- TUI model/eval picker blank screen fix (PR #78)
- TUI terminal resize artifacts fix (PR #76)
- @github/copilot-sdk 0.1.32 -> 0.2.0 bump (PR #73)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
CHANGELOG.md | 10 +++++++++-
docs/commands.md | 15 +++++++++++++++
docs/extension.md | 5 +++--
vscode-extension/README.md | 13 +++++++------
4 files changed, 34 insertions(+), 9 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1e88169..0317b35 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,10 +9,18 @@ All notable changes to this project will be documented in this file.
- **`--dry-run` for generate** — preview which files would be created or skipped without writing anything (`agentrc generate mcp --dry-run`)
- **JSONC support** — `agentrc.config.json`, `agentrc.eval.json`, and policy files now accept `//` and `/* */` comments
- **Array eval expectations** — `expectation` field in eval configs accepts `string[]` for structured criteria
+- **Config status in TUI** — the interactive TUI now shows whether `agentrc.config.json` is present, with a `[C]` keybinding to scaffold it when missing (#74)
+- **Workspace Status view in VS Code** — a new **Workspace Status** tree view in the AgentRC sidebar surfaces Config and Evals presence, with clickable items that trigger `agentrc init` or `agentrc eval --init` respectively (#74)
### Bug Fixes
-- **Config scaffolding for simple repos** — `agentrc init` and the TUI now create `agentrc.config.json` even when no areas are detected, producing a minimal `{}` stub. Prev
... (truncated)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
agentic-workflowsautomationdocumentationImprovements or additions to documentationImprovements or additions to documentation