awesome-slash 2.5.1 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/.claude-plugin/marketplace.json +6 -6
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/CHANGELOG.md +44 -1
  4. package/README.md +44 -36
  5. package/bin/cli.js +499 -0
  6. package/lib/reality-check/collectors.js +682 -0
  7. package/mcp-server/index.js +1 -1
  8. package/package.json +6 -3
  9. package/plugins/deslop-around/.claude-plugin/plugin.json +1 -1
  10. package/plugins/next-task/.claude-plugin/plugin.json +1 -1
  11. package/plugins/project-review/.claude-plugin/plugin.json +1 -1
  12. package/plugins/reality-check/.claude-plugin/plugin.json +1 -1
  13. package/plugins/reality-check/README.md +111 -90
  14. package/plugins/reality-check/agents/plan-synthesizer.md +166 -422
  15. package/plugins/reality-check/commands/scan.md +189 -175
  16. package/plugins/reality-check/lib/reality-check/collectors.js +682 -0
  17. package/plugins/reality-check/skills/reality-analysis/SKILL.md +68 -61
  18. package/plugins/ship/.claude-plugin/plugin.json +1 -1
  19. package/scripts/setup-hooks.js +36 -0
  20. package/adapters/README.md +0 -256
  21. package/adapters/codex/README.md +0 -272
  22. package/adapters/codex/install.sh +0 -221
  23. package/adapters/opencode/README.md +0 -301
  24. package/adapters/opencode/install.sh +0 -292
  25. package/plugins/reality-check/agents/code-explorer.md +0 -353
  26. package/plugins/reality-check/agents/doc-analyzer.md +0 -337
  27. package/plugins/reality-check/agents/issue-scanner.md +0 -231
  28. package/plugins/reality-check/commands/set.md +0 -203
  29. package/plugins/reality-check/lib/state/reality-check-state.js +0 -509
  30. package/scripts/install/claude.sh +0 -50
  31. package/scripts/install/codex.sh +0 -325
  32. package/scripts/install/opencode.sh +0 -387
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "awesome-slash",
3
3
  "description": "Professional-grade slash commands for Claude Code with cross-platform support (OpenCode, Codex CLI)",
4
- "version": "2.5.1",
4
+ "version": "2.6.1",
5
5
  "owner": {
6
6
  "name": "Avi Fenesh",
7
7
  "url": "https://github.com/avifenesh"
@@ -13,35 +13,35 @@
13
13
  "name": "next-task",
14
14
  "source": "./plugins/next-task",
15
15
  "description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates, 14 specialist agents",
16
- "version": "2.5.1",
16
+ "version": "2.6.1",
17
17
  "category": "productivity"
18
18
  },
19
19
  {
20
20
  "name": "ship",
21
21
  "source": "./plugins/ship",
22
22
  "description": "Complete PR workflow: commit to production, skips review when called from next-task, removes task from registry on cleanup, automatic rollback",
23
- "version": "2.5.1",
23
+ "version": "2.6.1",
24
24
  "category": "deployment"
25
25
  },
26
26
  {
27
27
  "name": "deslop-around",
28
28
  "source": "./plugins/deslop-around",
29
29
  "description": "AI slop cleanup with minimal diffs and behavior preservation",
30
- "version": "2.5.1",
30
+ "version": "2.6.1",
31
31
  "category": "development"
32
32
  },
33
33
  {
34
34
  "name": "project-review",
35
35
  "source": "./plugins/project-review",
36
36
  "description": "Multi-agent iterative code review until zero issues remain",
37
- "version": "2.5.1",
37
+ "version": "2.6.1",
38
38
  "category": "development"
39
39
  },
40
40
  {
41
41
  "name": "reality-check",
42
42
  "source": "./plugins/reality-check",
43
43
  "description": "Deep repository analysis to realign project plans with code reality - detects drift, gaps, and creates prioritized reconstruction plans",
44
- "version": "2.5.1",
44
+ "version": "2.6.1",
45
45
  "category": "productivity"
46
46
  }
47
47
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awesome-slash",
3
- "version": "2.5.1",
3
+ "version": "2.6.1",
4
4
  "description": "Professional-grade slash commands for Claude Code with cross-platform support",
5
5
  "author": {
6
6
  "name": "Avi Fenesh",
package/CHANGELOG.md CHANGED
@@ -7,7 +7,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- No unreleased changes documented.
10
+ ## [2.6.0] - 2026-01-20
11
+
12
+ ### Added
13
+ - **CLI Installer** - `npm install -g awesome-slash@latest && awesome-slash`
14
+ - Multi-select: choose one or more platforms (Claude Code, OpenCode, Codex)
15
+ - Uses npm package files directly (no git clone)
16
+ - Claude Code: Uses GitHub marketplace for plugin installation
17
+ - OpenCode: Copies commands to `~/.opencode/commands/awesome-slash/`
18
+ - Codex: Copies prompts to `~/.codex/prompts/` (uses prompts system, not skills)
19
+ - Configures MCP servers automatically for OpenCode and Codex
20
+ - Update: `npm update -g awesome-slash`
21
+ - Remove: `npm uninstall -g awesome-slash && awesome-slash --remove`
22
+ - **Automated Release Workflow** - GitHub Actions workflow for npm publish with provenance
23
+
24
+ ### Fixed
25
+ - **CLI Installer** - Multiple fixes for cross-platform installation
26
+ - Fixed OpenCode command path to `~/.opencode/commands/awesome-slash/`
27
+ - Fixed Codex to use proper skills format with `SKILL.md` (name + description)
28
+ - Fixed MCP server dependency installation
29
+ - Cleans up deprecated files and old wrong locations on install/update
30
+ - Added all 7 skills: next-task, ship, deslop-around, project-review, reality-check-scan, delivery-approval, update-docs-around
31
+
32
+ ### Changed
33
+ - **Reality Check Architectural Refactor** - Replaced 4 LLM agents with JS collectors + single Opus call (#97)
34
+ - New `lib/reality-check/collectors.js` handles all data collection with pure JavaScript
35
+ - Deleted `issue-scanner.md`, `doc-analyzer.md`, `code-explorer.md` agents
36
+ - Deleted `reality-check-state.js` (510 lines of unnecessary state management)
37
+ - Enhanced `plan-synthesizer.md` to receive raw data and perform deep semantic analysis
38
+ - ~77% token reduction for reality-check scans
39
+ - Command flags replace interactive settings: `--sources`, `--depth`, `--output`, `--file`
40
+ - **Package Size** - Reduced npm package size by excluding adapters and dev scripts
41
+
42
+ ### Breaking Changes
43
+ - `.claude/reality-check.local.md` settings file is no longer used
44
+ - Use command flags instead: `/reality-check:scan --sources github,docs --depth quick`
45
+ - `/reality-check:set` command removed (use flags instead)
46
+
47
+ ### Removed
48
+ - `plugins/reality-check/agents/issue-scanner.md`
49
+ - `plugins/reality-check/agents/doc-analyzer.md`
50
+ - `plugins/reality-check/agents/code-explorer.md`
51
+ - `plugins/reality-check/lib/state/reality-check-state.js`
52
+ - `plugins/reality-check/commands/set.md` (use command flags instead)
53
+ - `adapters/` and `scripts/install/` from npm package (CLI handles installation)
11
54
 
12
55
  ## [2.5.1] - 2026-01-19
13
56
 
package/README.md CHANGED
@@ -6,7 +6,7 @@ A cross-platform plugin providing powerful, zero-configuration slash commands fo
6
6
 
7
7
  [![npm](https://img.shields.io/npm/v/awesome-slash?color=red)](https://www.npmjs.com/package/awesome-slash)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
- [![Version](https://img.shields.io/badge/version-2.5.1-blue)](https://github.com/avifenesh/awesome-slash/releases)
9
+ [![Version](https://img.shields.io/badge/version-2.6.1-blue)](https://github.com/avifenesh/awesome-slash/releases)
10
10
  [![GitHub stars](https://img.shields.io/github/stars/avifenesh/awesome-slash?style=flat&color=yellow)](https://github.com/avifenesh/awesome-slash/stargazers)
11
11
  [![Claude Code](https://img.shields.io/badge/Claude-Code%20Plugin-blue)](https://docs.anthropic.com/en/docs/claude-code)
12
12
  [![Codex CLI](https://img.shields.io/badge/Codex-CLI%20Compatible-green)](https://developers.openai.com/codex/cli)
@@ -16,6 +16,19 @@ A cross-platform plugin providing powerful, zero-configuration slash commands fo
16
16
 
17
17
  > **💡 Model Recommendation**: Using **Opus** as the main agent model produces significantly better results and follows workflow phases more tightly. While Sonnet works for simpler tasks, Opus is recommended for complex multi-step workflows.
18
18
 
19
+ ## What's New in v2.6.1
20
+
21
+ - **CLI Installer Fixes** - Fixed OpenCode and Codex installation paths
22
+ - **Codex Skills** - Proper `SKILL.md` format with `name` and `description` fields
23
+ - **Smaller Package** - Removed adapters and dev scripts from npm package
24
+
25
+ ## What's New in v2.6.0
26
+
27
+ - **CLI Installer** - `npm install -g awesome-slash@latest && awesome-slash` for cross-platform setup
28
+ - **Reality Check Refactor** - Replaced 4 LLM agents with JS collectors (~77% token reduction)
29
+ - **Automated Releases** - GitHub Actions workflow with npm provenance
30
+ - **Breaking** - `.claude/reality-check.local.md` settings file no longer used
31
+
19
32
  ## What's New in v2.5.1
20
33
 
21
34
  - **Platform-Aware State Directories** - State now stored in `.opencode/` for OpenCode, `.codex/` for Codex
@@ -23,37 +36,33 @@ A cross-platform plugin providing powerful, zero-configuration slash commands fo
23
36
  - **MCP Server Bug Fixes** - Fixed workflow state references and resume logic
24
37
  - **Documentation Updates** - Added note that Codex uses `$` prefix instead of `/`
25
38
 
26
- ## What's New in v2.5.0
27
-
28
- - **Multi-Source Task Discovery** - Support for GitHub, GitLab, local files, custom CLI tools
29
- - **Source Preference Caching** - Your last-used source appears first on subsequent runs
30
- - **Security Hardening** - Fixed command injection and path traversal vulnerabilities
39
+ ---
31
40
 
32
- ## What's New in v2.4.7
41
+ ## Quick Install
33
42
 
34
- - **Simplified State Management** - Rewrote workflow-state.js, removed 9,000+ lines of overengineered code
35
- - **Removed Config System** - Deleted unused schemas and config system
36
- - **Tasks Lifecycle Wiring** - tasks.json now auto-registers/clears with workflow lifecycle
37
- - **Project Philosophy** - Added development guidelines to CLAUDE.md
38
- - **Agent Model Updates** - task-discoverer and code-explorer upgraded to opus
43
+ ### Claude Code (Recommended)
39
44
 
40
- ---
45
+ ```bash
46
+ /plugin marketplace add avifenesh/awesome-slash
47
+ /plugin install next-task@awesome-slash
48
+ /plugin install ship@awesome-slash
49
+ ```
41
50
 
42
- ## Quick Install
51
+ ### All Platforms (npm)
43
52
 
44
53
  ```bash
45
- # npm (recommended)
46
- npm install awesome-slash
54
+ npm install -g awesome-slash@latest
55
+ awesome-slash
56
+ ```
47
57
 
48
- # Claude Code
49
- claude plugin add npm:awesome-slash
58
+ Interactive installer for Claude Code, OpenCode, and Codex CLI. Select one or more platforms.
50
59
 
51
- # OpenCode / Codex CLI
52
- git clone https://github.com/avifenesh/awesome-slash.git
53
- ./scripts/install/opencode.sh # or codex.sh
60
+ ```
61
+ Update: npm update -g awesome-slash
62
+ Remove: npm uninstall -g awesome-slash
54
63
  ```
55
64
 
56
- **See [docs/INSTALLATION.md](./docs/INSTALLATION.md) for all options, prerequisites, and troubleshooting.**
65
+ **See [docs/INSTALLATION.md](./docs/INSTALLATION.md) for all options.**
57
66
 
58
67
  ---
59
68
 
@@ -217,15 +226,15 @@ Validate task completion and approve for shipping (standalone or part of workflo
217
226
  Deep repository analysis to identify where documented plans diverge from actual code reality.
218
227
 
219
228
  ```bash
220
- /reality-check:scan # Full reality check scan
221
- /reality-check:set # Configure scan settings
229
+ /reality-check:scan # Full scan (default)
230
+ /reality-check:scan --sources github,docs # Specific sources
231
+ /reality-check:scan --depth quick # Quick scan
222
232
  ```
223
233
 
224
- **Multi-agent parallel scan:**
225
- 1. Issue scanner - analyzes GitHub issues, PRs, milestones
226
- 2. Doc analyzer - examines README, PLAN.md, CLAUDE.md, docs/
227
- 3. Code explorer - deep codebase structure and feature analysis
228
- 4. Plan synthesizer - combines findings into prioritized plan
234
+ **Architecture:**
235
+ - **JavaScript collectors** - Pure JS data collection (no LLM overhead)
236
+ - **Single Opus call** - Deep semantic analysis with full context
237
+ - **~77% token reduction** - Efficient compared to multi-agent approach
229
238
 
230
239
  ---
231
240
 
@@ -240,7 +249,7 @@ All platforms share the same workflow tools via MCP (Model Context Protocol):
240
249
  | `workflow_resume` | Resume from checkpoint |
241
250
  | `workflow_abort` | Cancel and cleanup |
242
251
  | `task_discover` | Find and prioritize tasks |
243
- | `review_code` | Run pattern-based code review |
252
+ | `review_code` | Run pattern-based code review |
244
253
 
245
254
  See [docs/CROSS_PLATFORM.md](./docs/CROSS_PLATFORM.md) for details.
246
255
 
@@ -295,7 +304,7 @@ Override with `AI_STATE_DIR` environment variable.
295
304
  }
296
305
  ```
297
306
 
298
- ### Specialist Agents (17 Total)
307
+ ### Specialist Agents (14 Total)
299
308
 
300
309
  **Core Workflow (Opus - Complex Tasks):**
301
310
  | Agent | Purpose |
@@ -322,13 +331,12 @@ Override with `AI_STATE_DIR` environment variable.
322
331
  | ci-fixer | Fix CI failures and review comments |
323
332
  | simple-fixer | Execute predefined code fixes |
324
333
 
325
- **Reality Check (Sonnet + Opus - Plan Drift Detection):**
334
+ **Reality Check (Opus - Plan Drift Detection):**
326
335
  | Agent | Purpose |
327
336
  |-------|---------|
328
- | issue-scanner | Analyze GitHub issues, PRs, milestones |
329
- | doc-analyzer | Examine documentation for plans and roadmaps |
330
- | code-explorer | Deep codebase structure analysis |
331
- | plan-synthesizer | Combine findings into prioritized plan (opus) |
337
+ | plan-synthesizer | Deep semantic analysis with full context (opus) |
338
+
339
+ *Data collection handled by JavaScript collectors (lib/reality-check/collectors.js)*
332
340
 
333
341
  ---
334
342