Skip to content

Commit 11c104d

Browse files
committed
chore: release v3.2.0-rc.1
- Bump all versions to 3.2.0-rc.1 - Update CHANGELOG with new features: - orchestrate-review skill (replaces review-orchestrator agent) - repo-map plugin (AST-based repo mapping) - MCP SDK dev dependency fix
1 parent df4d635 commit 11c104d

13 files changed

Lines changed: 33 additions & 21 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "awesome-slash",
33
"description": "8 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, and repo mapping",
4-
"version": "3.1.0",
4+
"version": "3.2.0-rc.1",
55
"owner": {
66
"name": "Avi Fenesh",
77
"url": "https://github.com/avifenesh"
@@ -13,56 +13,56 @@
1313
"name": "next-task",
1414
"source": "./plugins/next-task",
1515
"description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates, 14 specialist agents",
16-
"version": "3.1.0",
16+
"version": "3.2.0-rc.1",
1717
"category": "productivity"
1818
},
1919
{
2020
"name": "ship",
2121
"source": "./plugins/ship",
2222
"description": "Complete PR workflow: commit to production, skips review when called from next-task, removes task from registry on cleanup, automatic rollback",
23-
"version": "3.1.0",
23+
"version": "3.2.0-rc.1",
2424
"category": "deployment"
2525
},
2626
{
2727
"name": "deslop",
2828
"source": "./plugins/deslop",
2929
"description": "3-phase AI slop detection: regex patterns (HIGH), multi-pass analyzers (MEDIUM), CLI tools (LOW)",
30-
"version": "3.1.0",
30+
"version": "3.2.0-rc.1",
3131
"category": "development"
3232
},
3333
{
3434
"name": "audit-project",
3535
"source": "./plugins/audit-project",
3636
"description": "Multi-agent iterative code review until zero issues remain",
37-
"version": "3.1.0",
37+
"version": "3.2.0-rc.1",
3838
"category": "development"
3939
},
4040
{
4141
"name": "drift-detect",
4242
"source": "./plugins/drift-detect",
4343
"description": "Deep repository analysis to realign project plans with code reality - detects drift, gaps, and creates prioritized reconstruction plans",
44-
"version": "3.1.0",
44+
"version": "3.2.0-rc.1",
4545
"category": "productivity"
4646
},
4747
{
4848
"name": "enhance",
4949
"source": "./plugins/enhance",
5050
"description": "Master enhancement orchestrator: parallel analyzer execution for plugins, agents, docs, CLAUDE.md, and prompts with unified reporting",
51-
"version": "3.1.0",
51+
"version": "3.2.0-rc.1",
5252
"category": "development"
5353
},
5454
{
5555
"name": "sync-docs",
5656
"source": "./plugins/sync-docs",
5757
"description": "Standalone documentation sync: find outdated refs, update CHANGELOG, flag stale examples based on code changes",
58-
"version": "3.1.0",
58+
"version": "3.2.0-rc.1",
5959
"category": "development"
6060
},
6161
{
6262
"name": "repo-map",
6363
"source": "./plugins/repo-map",
6464
"description": "AST-based repository map generation using ast-grep with incremental updates for faster drift analysis",
65-
"version": "3.1.0",
65+
"version": "3.2.0-rc.1",
6666
"category": "development"
6767
}
6868
],

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "awesome-slash",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "Professional-grade slash commands for Claude Code with cross-platform support",
55
"keywords": [
66
"workflow",

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,30 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [3.2.0-rc.1] - 2026-01-27
99

1010
### Added
1111
- **Repo Map Plugin** - AST-based repository map generation using ast-grep with incremental updates and cached symbol/import maps
1212
- **/repo-map Command** - Initialize, update, and check status of repo maps (with optional docs analysis)
1313
- **repo_map MCP Tool** - Cross-platform repo-map generation via MCP
1414
- **map-validator Agent** - Lightweight validation of repo-map output
15+
- **orchestrate-review Skill** - New skill providing review pass definitions, signal detection patterns, and iteration algorithms for Phase 9 review loop
1516

1617
### Changed
1718
- **/ship** - Automatically updates repo-map after merge when a map exists
1819
- **/drift-detect** - Suggests repo-map init/update when missing or stale
1920
- **Workflow Agents** - Exploration, planning, and implementation agents check for repo-map if available
21+
- **Phase 9 Review Loop** - Now uses orchestrate-review skill with parallel Task agents instead of nested review-orchestrator agent
22+
- Resolves Claude Code nested subagent limitations
23+
- Spawns parallel reviewers (code-quality, security, performance, test-coverage + conditional specialists)
24+
- Scope-based specialist selection: user request, workflow, or project audit
25+
- **Agent Count** - Reduced from 32 to 31 agents (removed review-orchestrator)
26+
27+
### Removed
28+
- **review-orchestrator Agent** - Replaced by orchestrate-review skill for better cross-platform compatibility
29+
30+
### Fixed
31+
- **MCP SDK Dependency** - Added @modelcontextprotocol/sdk as dev dependency for MCP server tests
2032

2133
## [3.1.0] - 2026-01-26
2234

mcp-server/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ async function main() {
10181018
const server = new Server(
10191019
{
10201020
name: 'awesome-slash',
1021-
version: '3.1.0',
1021+
version: '3.2.0-rc.1',
10221022
},
10231023
{
10241024
capabilities: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "awesome-slash",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "6 specialized plugins for AI workflow automation - works with Claude Code, OpenCode, and Codex CLI",
55
"main": "lib/platform/detect-platform.js",
66
"type": "commonjs",

plugins/audit-project/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "audit-project",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "Multi-agent iterative code review until zero issues remain",
55
"author": {
66
"name": "Avi Fenesh",

plugins/deslop/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deslop",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "AI slop cleanup with minimal diffs and behavior preservation",
55
"author": {
66
"name": "Avi Fenesh",

plugins/drift-detect/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drift-detect",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "Deep repository analysis to realign project plans with actual code reality - discovers drift, gaps, and produces prioritized reconstruction plans",
55
"author": {
66
"name": "Avi Fenesh",

plugins/enhance/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "enhance",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "Plugin structure and tool use analyzer - validates plugin.json, MCP tools, and security patterns",
55
"author": {
66
"name": "Avi Fenesh",

plugins/next-task/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-task",
3-
"version": "3.1.0",
3+
"version": "3.2.0-rc.1",
44
"description": "Master workflow orchestrator with autonomous task-to-production automation, quality gates, and multi-agent review",
55
"author": {
66
"name": "Avi Fenesh",

0 commit comments

Comments
 (0)