Skip to content

Commit 3029f3d

Browse files
committed
release: bump version to 3.3.0
1 parent 8c5ccc8 commit 3029f3d

14 files changed

Lines changed: 24 additions & 22 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.2.1",
4+
"version": "3.3.0",
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.2.1",
16+
"version": "3.3.0",
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.2.1",
23+
"version": "3.3.0",
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.2.1",
30+
"version": "3.3.0",
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.2.1",
37+
"version": "3.3.0",
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.2.1",
44+
"version": "3.3.0",
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.2.1",
51+
"version": "3.3.0",
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.2.1",
58+
"version": "3.3.0",
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.2.1",
65+
"version": "3.3.0",
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.2.1",
3+
"version": "3.3.0",
44
"description": "Professional-grade slash commands for Claude Code with cross-platform support",
55
"keywords": [
66
"workflow",

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.3.0] - 2026-01-28
11+
1012
### Changed
1113
- **Docs** - Documented `npm run detect`/`npm run verify` diagnostics scripts for platform/tool checks
1214
- **Docs** - Clarified Phase 9 review loop uses the `orchestrate-review` skill for pass definitions

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.2.1',
1021+
version: '3.3.0',
10221022
},
10231023
{
10241024
capabilities: {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.2.1",
3+
"version": "3.3.0",
44
"description": "8 specialized plugins for AI workflow automation (drift detection + AST repo maps) - 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.2.1",
3+
"version": "3.3.0",
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.2.1",
3+
"version": "3.3.0",
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.2.1",
3+
"version": "3.3.0",
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.2.1",
3+
"version": "3.3.0",
44
"description": "Plugin structure and tool use analyzer - validates plugin.json, MCP tools, and security patterns",
55
"author": {
66
"name": "Avi Fenesh",

0 commit comments

Comments
 (0)