From d53612509def0b4614bc2c3084e5d78dca809802 Mon Sep 17 00:00:00 2001 From: arzafran Date: Wed, 3 Jun 2026 12:57:11 -0300 Subject: [PATCH] =?UTF-8?q?chore(v11.17.0):=20cut=20release=20=E2=80=94=20?= =?UTF-8?q?version=20#38=E2=80=93#42?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Versions work that had accumulated in [Unreleased] without a bump: team-knowledge repo migration (#38), nuclear-review maintainability pass, upstream-sync cron retirement + CC 2.1.161 sync (#40), dynamic-workflow guidance + dead-telemetry removal (#41), docs accuracy pass + USAGE.md removal (#42). VERSION 11.16.0 → 11.17.0; CHANGELOG [Unreleased] promoted to [11.17.0]. --- CHANGELOG.md | 4 ++++ src/setup.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95e5ba8..fab1cbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ All notable changes to cc-settings are documented here. ## [Unreleased] +## [11.17.0] — 2026-06-03 + +Versions the work merged in #38–#42, which had accumulated in `[Unreleased]` without a version bump: the team-knowledge repo migration, a nuclear-review maintainability pass, retirement of the automated upstream-sync cron + sync to Claude Code 2.1.161, dynamic-workflow guidance fold-ins paid for by removing a dead-telemetry loop (net −107), and a docs-accuracy pass that purged retired skill names and deleted the redundant `USAGE.md`. + ### Changed - **Docs accuracy pass (post-session).** Skill counts updated to 34 across `CLAUDE-FULL.md`, `CLAUDE.md`, and `MANUAL.md`. Dead skill names (`ask`, `premortem`, `compare-approaches`, `discovery`, `prd`, `create-handoff`, `resume-handoff`, `long-task`, `lenis`, `audit`, `versions`) removed from `MANUAL.md`, `skills/README.md`, `docs/frontmatter-reference.md`. Added missing skills (`freeze`, `plan-ceo-review`, `retro`, `strategist`) to the MANUAL.md All Skills table. Removed deleted TLDR telemetry hook rows from `MANUAL.md` and `docs/hooks-reference.md` (`track-tldr`, `mcp__tldr`). Regenerated fork/main/inherit skill lists and agent-delegation table in `docs/frontmatter-reference.md` to match ground truth. Fixed retired-skill references (`/compare-approaches`, `/long-task`) in `agents/maestro.md` and `docs/github-workflow.md`. **Removed `USAGE.md`** — an uninstalled, unlinked onboarding doc that duplicated `MANUAL.md` and had drifted badly (its skill tables had been swept for dead names repeatedly; the recurring drift was the signal it was redundant). Also removed two empty local dirs (`.claude/worktrees`, `.claude/agent-memory/oracle`). diff --git a/src/setup.ts b/src/setup.ts index dc40348..76c4a44 100644 --- a/src/setup.ts +++ b/src/setup.ts @@ -50,7 +50,7 @@ import type { StatusData } from "./lib/status-types.ts"; import { buildVersionDelta, readInstalledVersion } from "./lib/version-delta.ts"; import { Settings } from "./schemas/settings.ts"; -const VERSION = "11.16.0"; // deslop advisory probe in proof-of-work; PR-by-default workflow + PULL_REQUEST_TEMPLATE +const VERSION = "11.17.0"; // retire upstream-sync cron + CC 2.1.161 sync; dynamic-workflow guidance + dead-telemetry removal; docs accuracy pass + USAGE.md removal const CLAUDE_DIR = join(homedir(), ".claude"); // --- Arg parsing ---------------------------------------------------------