awesome-slash 2.6.0 → 2.7.0
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.
- package/.claude-plugin/marketplace.json +9 -9
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +153 -3
- package/README.md +34 -3
- package/bin/cli.js +221 -52
- package/lib/config/index.js +14 -0
- package/lib/cross-platform/RESEARCH.md +274 -0
- package/lib/cross-platform/index.js +448 -0
- package/lib/index.js +74 -2
- package/lib/patterns/cli-enhancers.js +602 -0
- package/lib/patterns/pipeline.js +628 -0
- package/lib/patterns/slop-analyzers.js +1779 -0
- package/lib/patterns/slop-patterns.js +523 -1
- package/lib/reality-check/collectors.js +236 -60
- package/mcp-server/index.js +111 -129
- package/package.json +2 -3
- package/plugins/deslop-around/.claude-plugin/plugin.json +1 -1
- package/plugins/deslop-around/commands/deslop-around.md +36 -17
- package/plugins/deslop-around/lib/config/index.js +14 -0
- package/plugins/deslop-around/lib/cross-platform/RESEARCH.md +274 -0
- package/plugins/deslop-around/lib/cross-platform/index.js +448 -0
- package/plugins/deslop-around/lib/index.js +74 -2
- package/plugins/deslop-around/lib/patterns/cli-enhancers.js +602 -0
- package/plugins/deslop-around/lib/patterns/pipeline.js +628 -0
- package/plugins/deslop-around/lib/patterns/slop-analyzers.js +1779 -0
- package/plugins/deslop-around/lib/patterns/slop-patterns.js +523 -1
- package/plugins/deslop-around/lib/reality-check/collectors.js +858 -0
- package/plugins/next-task/.claude-plugin/plugin.json +1 -1
- package/plugins/next-task/agents/deslop-work.md +181 -212
- package/plugins/next-task/agents/planning-agent.md +37 -1
- package/plugins/next-task/agents/task-discoverer.md +32 -1
- package/plugins/next-task/lib/config/index.js +14 -0
- package/plugins/next-task/lib/cross-platform/RESEARCH.md +274 -0
- package/plugins/next-task/lib/cross-platform/index.js +448 -0
- package/plugins/next-task/lib/index.js +74 -2
- package/plugins/next-task/lib/patterns/cli-enhancers.js +602 -0
- package/plugins/next-task/lib/patterns/pipeline.js +628 -0
- package/plugins/next-task/lib/patterns/slop-analyzers.js +1779 -0
- package/plugins/next-task/lib/patterns/slop-patterns.js +523 -1
- package/plugins/next-task/lib/reality-check/collectors.js +858 -0
- package/plugins/project-review/.claude-plugin/plugin.json +1 -1
- package/plugins/project-review/lib/config/index.js +14 -0
- package/plugins/project-review/lib/cross-platform/RESEARCH.md +274 -0
- package/plugins/project-review/lib/cross-platform/index.js +448 -0
- package/plugins/project-review/lib/index.js +74 -2
- package/plugins/project-review/lib/patterns/cli-enhancers.js +602 -0
- package/plugins/project-review/lib/patterns/pipeline.js +628 -0
- package/plugins/project-review/lib/patterns/slop-analyzers.js +1779 -0
- package/plugins/project-review/lib/patterns/slop-patterns.js +523 -1
- package/plugins/project-review/lib/reality-check/collectors.js +858 -0
- package/plugins/reality-check/.claude-plugin/plugin.json +1 -1
- package/plugins/reality-check/README.md +0 -8
- package/plugins/reality-check/lib/config/index.js +14 -0
- package/plugins/reality-check/lib/cross-platform/RESEARCH.md +274 -0
- package/plugins/reality-check/lib/cross-platform/index.js +448 -0
- package/plugins/reality-check/lib/index.js +242 -0
- package/plugins/reality-check/lib/patterns/cli-enhancers.js +602 -0
- package/plugins/reality-check/lib/patterns/pipeline.js +628 -0
- package/plugins/reality-check/lib/patterns/review-patterns.js +558 -0
- package/plugins/reality-check/lib/patterns/slop-analyzers.js +1779 -0
- package/plugins/reality-check/lib/patterns/slop-patterns.js +1203 -0
- package/plugins/reality-check/lib/platform/detect-platform.js +360 -0
- package/plugins/reality-check/lib/platform/detection-configs.js +93 -0
- package/plugins/reality-check/lib/platform/state-dir.js +122 -0
- package/plugins/reality-check/lib/platform/verify-tools.js +167 -0
- package/plugins/reality-check/lib/reality-check/collectors.js +236 -60
- package/plugins/reality-check/lib/schemas/README.md +195 -0
- package/plugins/reality-check/lib/schemas/validator.js +247 -0
- package/plugins/reality-check/lib/sources/custom-handler.js +199 -0
- package/plugins/reality-check/lib/sources/policy-questions.js +239 -0
- package/plugins/reality-check/lib/sources/source-cache.js +164 -0
- package/plugins/reality-check/lib/state/workflow-state.js +538 -0
- package/plugins/reality-check/lib/types/README.md +292 -0
- package/plugins/reality-check/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/reality-check/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/reality-check/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/reality-check/lib/types/index.d.ts +84 -0
- package/plugins/reality-check/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/reality-check/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/reality-check/lib/utils/cache-manager.js +154 -0
- package/plugins/reality-check/lib/utils/context-optimizer.js +300 -0
- package/plugins/reality-check/lib/utils/deprecation.js +37 -0
- package/plugins/reality-check/lib/utils/shell-escape.js +88 -0
- package/plugins/ship/.claude-plugin/plugin.json +1 -1
- package/plugins/ship/commands/ship.md +33 -0
- package/plugins/ship/lib/config/index.js +14 -0
- package/plugins/ship/lib/cross-platform/RESEARCH.md +274 -0
- package/plugins/ship/lib/cross-platform/index.js +448 -0
- package/plugins/ship/lib/index.js +74 -2
- package/plugins/ship/lib/patterns/cli-enhancers.js +602 -0
- package/plugins/ship/lib/patterns/pipeline.js +628 -0
- package/plugins/ship/lib/patterns/slop-analyzers.js +1779 -0
- package/plugins/ship/lib/patterns/slop-patterns.js +523 -1
- package/plugins/ship/lib/reality-check/collectors.js +858 -0
- package/scripts/setup-hooks.js +36 -0
- package/adapters/README.md +0 -256
- package/adapters/codex/README.md +0 -272
- package/adapters/codex/install.sh +0 -221
- package/adapters/opencode/README.md +0 -301
- package/adapters/opencode/install.sh +0 -292
- package/plugins/reality-check/commands/set.md +0 -105
- package/scripts/install/claude.sh +0 -53
- package/scripts/install/codex.sh +0 -325
- 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.
|
|
4
|
+
"version": "2.7.0",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "Avi Fenesh",
|
|
7
7
|
"url": "https://github.com/avifenesh"
|
|
@@ -13,42 +13,42 @@
|
|
|
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.
|
|
16
|
+
"version": "2.7.0",
|
|
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.
|
|
23
|
+
"version": "2.7.0",
|
|
24
24
|
"category": "deployment"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "deslop-around",
|
|
28
28
|
"source": "./plugins/deslop-around",
|
|
29
|
-
"description": "AI slop
|
|
30
|
-
"version": "2.
|
|
29
|
+
"description": "3-phase AI slop detection: regex patterns (HIGH), multi-pass analyzers (MEDIUM), CLI tools (LOW)",
|
|
30
|
+
"version": "2.7.0",
|
|
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.
|
|
37
|
+
"version": "2.7.0",
|
|
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.
|
|
44
|
+
"version": "2.7.0",
|
|
45
45
|
"category": "productivity"
|
|
46
46
|
}
|
|
47
47
|
],
|
|
48
48
|
"mcpServer": {
|
|
49
49
|
"name": "awesome-slash",
|
|
50
50
|
"source": "./mcp-server",
|
|
51
|
-
"description": "MCP server
|
|
52
|
-
"tools": ["workflow_status", "workflow_start", "workflow_resume", "workflow_abort", "task_discover", "review_code"]
|
|
51
|
+
"description": "Cross-platform MCP server with 3-phase slop detection pipeline",
|
|
52
|
+
"tools": ["workflow_status", "workflow_start", "workflow_resume", "workflow_abort", "task_discover", "review_code", "slop_detect"]
|
|
53
53
|
}
|
|
54
54
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -5,18 +5,164 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [2.7.0] - 2026-01-22
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **GitHub Issue Progress Comments** - Workflow now documents decisions and progress in issue comments (#95)
|
|
12
|
+
- Task discoverer posts "Workflow Started" comment when selecting a GitHub issue
|
|
13
|
+
- Planning agent posts plan summary to issue for documentation
|
|
14
|
+
- /ship posts completion comment and auto-closes issue on successful merge
|
|
15
|
+
- All comments include relevant context (policy config, plan summary, PR link, merge SHA)
|
|
16
|
+
- Auto-close uses `--reason completed` flag
|
|
17
|
+
|
|
18
|
+
- **Slop Detection Pipeline Architecture** - 3-phase detection pipeline with certainty-tagged findings (#107, #116)
|
|
19
|
+
- **Phase 1** (always runs): Built-in regex patterns + multi-pass analyzers
|
|
20
|
+
- **Phase 2** (optional): CLI tool integration (jscpd, madge, escomplex) - if available
|
|
21
|
+
- **Phase 3**: LLM handoff with structured findings via `formatHandoffPrompt()`
|
|
22
|
+
- Certainty levels: HIGH (regex), MEDIUM (multi-pass), LOW (CLI tools)
|
|
23
|
+
- Thoroughness levels: quick (regex only), normal (+multi-pass), deep (+CLI)
|
|
24
|
+
- Mode inheritance from deslop-around: report (analyze only) vs apply (fix issues)
|
|
25
|
+
- New `runPipeline()` function in lib/patterns/pipeline.js
|
|
26
|
+
- New `formatHandoffPrompt()` for token-efficient LLM handoff (compact output grouped by certainty)
|
|
27
|
+
- New lib/patterns/cli-enhancers.js for optional tool detection
|
|
28
|
+
- Graceful degradation when CLI tools not installed
|
|
29
|
+
|
|
30
|
+
- **Buzzword Inflation Detection** - New project-level analyzer for `/deslop-around` command (#113)
|
|
31
|
+
- Detects quality claims in documentation without supporting code evidence
|
|
32
|
+
- 6 buzzword categories: production, enterprise, security, scale, reliability, completeness
|
|
33
|
+
- Each category has specific evidence patterns to validate claims:
|
|
34
|
+
- Production: tests, error handling, logging
|
|
35
|
+
- Security: auth, validation, encryption
|
|
36
|
+
- Scale: async patterns, caching, connection pooling
|
|
37
|
+
- Enterprise: auth, audit logs, rate limiting
|
|
38
|
+
- Reliability: tests, coverage, error handling
|
|
39
|
+
- Completeness: edge case handling, documentation
|
|
40
|
+
- Distinguishes positive claims ("is production-ready") from aspirational ("TODO: make secure")
|
|
41
|
+
- Claims without sufficient evidence (default: 2 matches) are flagged as violations
|
|
42
|
+
- Severity `high`, autoFix `flag` (cannot auto-fix documentation claims)
|
|
43
|
+
- New `analyzeBuzzwordInflation()` function in slop-analyzers.js
|
|
44
|
+
- Comprehensive test suite with 50+ test cases
|
|
45
|
+
|
|
46
|
+
- **Verbosity Detection** - New patterns for `/deslop-around` command to detect AI-generated verbose code
|
|
47
|
+
- `verbosity_preambles` - AI preamble phrases in comments (e.g., "Certainly!", "I'd be happy to help")
|
|
48
|
+
- `verbosity_buzzwords` - Marketing buzzwords that obscure meaning (e.g., "synergize", "paradigm shift", "game-changing")
|
|
49
|
+
- Excludes standard SE terminology like "leverage", "utilize", "orchestrate"
|
|
50
|
+
- `verbosity_hedging` - Hedging language in comments (e.g., "perhaps", "might be", "should work", "I think")
|
|
51
|
+
- `verbosity_ratio` - Multi-pass analyzer for excessive inline comments (>2:1 comment-to-code ratio)
|
|
52
|
+
- Multi-language support for comment detection (JavaScript, Python, Rust, Go)
|
|
53
|
+
- New `analyzeVerbosityRatio()` function in slop-analyzers.js
|
|
54
|
+
|
|
55
|
+
- **Over-Engineering Metrics Detection** - New project-level analysis for `/deslop-around` command
|
|
56
|
+
- Detects three signals of over-engineering (the #1 AI slop indicator):
|
|
57
|
+
- File proliferation: >20 files per export
|
|
58
|
+
- Code density: >500 lines per export
|
|
59
|
+
- Directory depth: >4 levels in src/
|
|
60
|
+
- Multi-language support: JavaScript/TypeScript, Rust, Go, Python
|
|
61
|
+
- Export detection via standard entry points (index.js, lib.rs, __init__.py, etc.)
|
|
62
|
+
- Returns metrics with violations and severity (HIGH/MEDIUM/OK)
|
|
63
|
+
- New `analyzeOverEngineering()` function in slop-analyzers.js
|
|
64
|
+
- Severity `high`, autoFix `flag` (cannot auto-fix architectural issues)
|
|
65
|
+
- **Generic Naming Detection** - New patterns for `/deslop-around` command to flag overly generic variable names
|
|
66
|
+
- JavaScript/TypeScript: `const/let/var data`, `result`, `item`, `temp`, `value`, `response`, etc.
|
|
67
|
+
- Python: Generic assignments (excludes for-in loop variables)
|
|
68
|
+
- Rust: `let`/`let mut` with generic names
|
|
69
|
+
- Go: Short declarations (`:=`) with generic names
|
|
70
|
+
- Severity `low` (advisory), autoFix `flag` (requires semantic understanding to rename)
|
|
71
|
+
- Test files excluded to prevent false positives
|
|
72
|
+
- **Doc/Code Ratio Detection** - New `doc_code_ratio_js` pattern flags JSDoc blocks that are disproportionately longer than the functions they document (threshold: 3x function length)
|
|
73
|
+
- Uses multi-pass analysis to compute actual doc/code ratio
|
|
74
|
+
- Skips tiny functions (< 3 lines) to avoid false positives
|
|
75
|
+
- Severity `medium`, autoFix `flag` (requires manual review)
|
|
76
|
+
- New `lib/patterns/slop-analyzers.js` module for structural code analysis
|
|
77
|
+
- **Issue/PR Reference Cleanup** - New `issue_pr_references` pattern flags ANY mention of issue/PR/iteration numbers in code comments as slop (e.g., `#123`, `PR #456`, `iteration 5`)
|
|
78
|
+
- Context belongs in commits and PRs, not code comments
|
|
79
|
+
- Severity `medium`, autoFix `remove` (clear slop)
|
|
80
|
+
- Excludes markdown files where issue references are appropriate
|
|
81
|
+
- **File Path Reference Detection** - New `file_path_references` pattern flags file path references in comments that may become outdated (e.g., `// see auth-flow.md`)
|
|
82
|
+
- Severity `low`, autoFix `flag` (may have valid documentation purpose)
|
|
83
|
+
- **Multi-Pass Pattern Helper** - New `getMultiPassPatterns()` function to retrieve patterns requiring structural analysis
|
|
84
|
+
- **Placeholder Function Detection** - New patterns for `/deslop-around` command (#98)
|
|
85
|
+
- JavaScript/TypeScript: stub returns (0, true, false, null, [], {}), empty functions, throw Error("TODO")
|
|
86
|
+
- Rust: todo!(), unimplemented!(), panic!("TODO")
|
|
87
|
+
- Python: raise NotImplementedError, pass-only functions, ellipsis bodies
|
|
88
|
+
- Go: panic("TODO") placeholders
|
|
89
|
+
- Java: throw UnsupportedOperationException()
|
|
90
|
+
- All patterns have severity `high` and autoFix `flag` (requires manual review)
|
|
91
|
+
- Test files are excluded to prevent false positives
|
|
92
|
+
|
|
93
|
+
- **Infrastructure-Without-Implementation Detection** - New pattern for detecting unused infrastructure components (#105)
|
|
94
|
+
- Detects infrastructure components that are configured but never used
|
|
95
|
+
- Supports JavaScript, Python, Go, and Rust
|
|
96
|
+
- Identifies unused database clients, cache connections, API clients, queue connections, event emitters
|
|
97
|
+
- Tracks usage across files to avoid false positives
|
|
98
|
+
- Excludes exported/module.exports patterns (intentional infrastructure setup files)
|
|
99
|
+
- Severity `high`, autoFix `flag` (requires manual review)
|
|
100
|
+
- New `analyzeInfrastructureWithoutImplementation()` function in slop-analyzers.js
|
|
101
|
+
- Focused test suite covering key scenarios and edge cases
|
|
102
|
+
|
|
103
|
+
- **Code Smell Detection** - High-impact code smell patterns for maintainability (#106)
|
|
104
|
+
- High-certainty patterns (low false positive rate):
|
|
105
|
+
- `boolean_blindness`: Function calls with 3+ consecutive boolean params
|
|
106
|
+
- `message_chains_methods`: Long method chains (4+ calls)
|
|
107
|
+
- `message_chains_properties`: Deep property access (5+ levels)
|
|
108
|
+
- `mutable_globals_js`: let/var with UPPERCASE names in JavaScript
|
|
109
|
+
- `mutable_globals_py`: Mutable global collections in Python
|
|
110
|
+
- Multi-pass analyzers:
|
|
111
|
+
- `analyzeDeadCode()`: Unreachable code after return/throw/break/continue (JS, Python, Go, Rust)
|
|
112
|
+
- `analyzeShotgunSurgery()`: Files frequently changing together (git history analysis)
|
|
113
|
+
- Heuristic patterns (may have false positives):
|
|
114
|
+
- `feature_envy`: Method using another object 3+ times
|
|
115
|
+
- `speculative_generality_unused_params`: Underscore-prefixed params
|
|
116
|
+
- `speculative_generality_empty_interface`: Empty TypeScript interfaces
|
|
117
|
+
- All patterns have ReDoS-safe regex and comprehensive test coverage
|
|
118
|
+
|
|
119
|
+
### Changed
|
|
120
|
+
- **deslop-work Agent Refactor** - Rewrote from pseudo-JavaScript to explicit Bash/Read/Grep tool usage (#116)
|
|
121
|
+
- Now uses pipeline orchestrator (`runPipeline()`) instead of inline pattern matching
|
|
122
|
+
- Certainty-based decision making: HIGH (auto-fix), MEDIUM (verify context), LOW (investigate)
|
|
123
|
+
- Structured handoff via `formatHandoffPrompt()` reduces agent prompt verbosity
|
|
124
|
+
- Clearer separation: pipeline collects findings, agent makes decisions
|
|
125
|
+
- Improved maintainability with declarative tool instructions
|
|
126
|
+
- **deslop-around Command** - Enhanced documentation for mode usage and pattern library (#116)
|
|
127
|
+
- Clarified report vs apply mode behavior
|
|
128
|
+
- Added references to pattern library categories
|
|
129
|
+
- Updated code smell detection section with latest patterns
|
|
130
|
+
|
|
131
|
+
### Fixed
|
|
132
|
+
- **findMatchingBrace** - Now skips comments to avoid breaking on quotes/apostrophes in comment text (e.g., "it's", "we're")
|
|
133
|
+
- **Reality Check Output Size** - Condensed collector output to ~700 lines/~4.5k tokens (was thousands of lines)
|
|
134
|
+
- Issue/PR bodies replaced with 200-char snippets (full context not needed)
|
|
135
|
+
- Categorized issues store number + title (enough to understand without lookup)
|
|
136
|
+
- PRs include files changed for scope understanding
|
|
137
|
+
- Documentation features limited to 20, plans to 15
|
|
138
|
+
- Code structure replaced with summary stats + top-level dirs only
|
|
139
|
+
- File stats limited to top 10 extensions
|
|
140
|
+
- **Added symbol extraction** - function/class/export names per source file (up to 40 files)
|
|
141
|
+
- Helps agent verify if documented features are actually implemented
|
|
142
|
+
- Scans lib/, src/, app/, pages/, components/, utils/, services/, api/ dirs
|
|
9
143
|
|
|
10
144
|
## [2.6.0] - 2026-01-20
|
|
11
145
|
|
|
12
146
|
### Added
|
|
13
147
|
- **CLI Installer** - `npm install -g awesome-slash@latest && awesome-slash`
|
|
14
148
|
- Multi-select: choose one or more platforms (Claude Code, OpenCode, Codex)
|
|
15
|
-
-
|
|
149
|
+
- Uses npm package files directly (no git clone)
|
|
150
|
+
- Claude Code: Uses GitHub marketplace for plugin installation
|
|
151
|
+
- OpenCode: Copies commands to `~/.opencode/commands/awesome-slash/`
|
|
152
|
+
- Codex: Copies prompts to `~/.codex/prompts/` (uses prompts system, not skills)
|
|
153
|
+
- Configures MCP servers automatically for OpenCode and Codex
|
|
16
154
|
- Update: `npm update -g awesome-slash`
|
|
17
|
-
- Remove: `npm uninstall -g awesome-slash`
|
|
155
|
+
- Remove: `npm uninstall -g awesome-slash && awesome-slash --remove`
|
|
18
156
|
- **Automated Release Workflow** - GitHub Actions workflow for npm publish with provenance
|
|
19
157
|
|
|
158
|
+
### Fixed
|
|
159
|
+
- **CLI Installer** - Multiple fixes for cross-platform installation
|
|
160
|
+
- Fixed OpenCode command path to `~/.opencode/commands/awesome-slash/`
|
|
161
|
+
- Fixed Codex to use proper skills format with `SKILL.md` (name + description)
|
|
162
|
+
- Fixed MCP server dependency installation
|
|
163
|
+
- Cleans up deprecated files and old wrong locations on install/update
|
|
164
|
+
- Added all 7 skills: next-task, ship, deslop-around, project-review, reality-check-scan, delivery-approval, update-docs-around
|
|
165
|
+
|
|
20
166
|
### Changed
|
|
21
167
|
- **Reality Check Architectural Refactor** - Replaced 4 LLM agents with JS collectors + single Opus call (#97)
|
|
22
168
|
- New `lib/reality-check/collectors.js` handles all data collection with pure JavaScript
|
|
@@ -25,16 +171,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
25
171
|
- Enhanced `plan-synthesizer.md` to receive raw data and perform deep semantic analysis
|
|
26
172
|
- ~77% token reduction for reality-check scans
|
|
27
173
|
- Command flags replace interactive settings: `--sources`, `--depth`, `--output`, `--file`
|
|
174
|
+
- **Package Size** - Reduced npm package size by excluding adapters and dev scripts
|
|
28
175
|
|
|
29
176
|
### Breaking Changes
|
|
30
177
|
- `.claude/reality-check.local.md` settings file is no longer used
|
|
31
178
|
- Use command flags instead: `/reality-check:scan --sources github,docs --depth quick`
|
|
179
|
+
- `/reality-check:set` command removed (use flags instead)
|
|
32
180
|
|
|
33
181
|
### Removed
|
|
34
182
|
- `plugins/reality-check/agents/issue-scanner.md`
|
|
35
183
|
- `plugins/reality-check/agents/doc-analyzer.md`
|
|
36
184
|
- `plugins/reality-check/agents/code-explorer.md`
|
|
37
185
|
- `plugins/reality-check/lib/state/reality-check-state.js`
|
|
186
|
+
- `plugins/reality-check/commands/set.md` (use command flags instead)
|
|
187
|
+
- `adapters/` and `scripts/install/` from npm package (CLI handles installation)
|
|
38
188
|
|
|
39
189
|
## [2.5.1] - 2026-01-19
|
|
40
190
|
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ A cross-platform plugin providing powerful, zero-configuration slash commands fo
|
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/awesome-slash)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
|
-
[](https://github.com/avifenesh/awesome-slash/releases)
|
|
10
10
|
[](https://github.com/avifenesh/awesome-slash/stargazers)
|
|
11
11
|
[](https://docs.anthropic.com/en/docs/claude-code)
|
|
12
12
|
[](https://developers.openai.com/codex/cli)
|
|
@@ -16,6 +16,18 @@ 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.7.0
|
|
20
|
+
|
|
21
|
+
- **GitHub Issue Progress Comments** - Workflow posts status updates to GitHub issues (start, plan, completion)
|
|
22
|
+
- **Auto-Close Issues** - Issues automatically closed with completion comment when PR merges
|
|
23
|
+
- **Deslop Enhancements** - Added infrastructure-without-implementation and buzzword inflation detection
|
|
24
|
+
|
|
25
|
+
## What's New in v2.6.1
|
|
26
|
+
|
|
27
|
+
- **CLI Installer Fixes** - Fixed OpenCode and Codex installation paths
|
|
28
|
+
- **Codex Skills** - Proper `SKILL.md` format with `name` and `description` fields
|
|
29
|
+
- **Smaller Package** - Removed adapters and dev scripts from npm package
|
|
30
|
+
|
|
19
31
|
## What's New in v2.6.0
|
|
20
32
|
|
|
21
33
|
- **CLI Installer** - `npm install -g awesome-slash@latest && awesome-slash` for cross-platform setup
|
|
@@ -146,7 +158,7 @@ Ship your code from commit to production with full validation and state integrat
|
|
|
146
158
|
|
|
147
159
|
### `/deslop-around` - AI Slop Cleanup
|
|
148
160
|
|
|
149
|
-
Remove debugging code, old TODOs, and AI slop from your codebase.
|
|
161
|
+
Remove debugging code, old TODOs, and AI slop from your codebase with a 3-phase detection pipeline.
|
|
150
162
|
|
|
151
163
|
```bash
|
|
152
164
|
/deslop-around # Report mode - analyze only
|
|
@@ -154,11 +166,31 @@ Remove debugging code, old TODOs, and AI slop from your codebase.
|
|
|
154
166
|
/deslop-around apply src/ 10 # Fix up to 10 issues in src/
|
|
155
167
|
```
|
|
156
168
|
|
|
169
|
+
**Architecture:**
|
|
170
|
+
- **Phase 1** - Built-in regex patterns (HIGH certainty)
|
|
171
|
+
- **Phase 2** - Multi-pass analyzers (MEDIUM certainty)
|
|
172
|
+
- **Phase 3** - Optional CLI tools (LOW certainty, graceful degradation)
|
|
173
|
+
- JavaScript/TypeScript: jscpd, madge, escomplex
|
|
174
|
+
- Python: pylint, radon
|
|
175
|
+
- Go: golangci-lint
|
|
176
|
+
- Rust: clippy
|
|
177
|
+
|
|
178
|
+
**Thoroughness levels:**
|
|
179
|
+
- `quick` - Phase 1 only (fastest)
|
|
180
|
+
- `normal` - Phase 1 + Phase 2 (default)
|
|
181
|
+
- `deep` - Phase 1 + Phase 2 + Phase 3 (if tools available)
|
|
182
|
+
|
|
157
183
|
**Detects:**
|
|
158
184
|
- Console debugging (`console.log`, `print()`, `dbg!()`)
|
|
159
185
|
- Old TODOs and commented code
|
|
160
186
|
- Placeholder text, magic numbers
|
|
161
187
|
- Empty catch blocks, disabled linters
|
|
188
|
+
- Placeholder functions (`return 0`, `todo!()`, `raise NotImplementedError`)
|
|
189
|
+
- Excessive documentation (JSDoc >3x function body)
|
|
190
|
+
- Phantom references (issue/PR mentions, file path references in comments)
|
|
191
|
+
- Infrastructure components configured but never used (unused DB clients, caches, API clients)
|
|
192
|
+
- Code smells: boolean blindness, message chains, mutable globals, dead code, shotgun surgery
|
|
193
|
+
- Buzzword inflation (quality claims without evidence)
|
|
162
194
|
|
|
163
195
|
---
|
|
164
196
|
|
|
@@ -223,7 +255,6 @@ Deep repository analysis to identify where documented plans diverge from actual
|
|
|
223
255
|
/reality-check:scan # Full scan (default)
|
|
224
256
|
/reality-check:scan --sources github,docs # Specific sources
|
|
225
257
|
/reality-check:scan --depth quick # Quick scan
|
|
226
|
-
/reality-check:set # Show available flags
|
|
227
258
|
```
|
|
228
259
|
|
|
229
260
|
**Architecture:**
|