awesome-slash 2.9.0 → 2.10.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.
- package/.claude-plugin/marketplace.json +8 -8
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +57 -0
- package/README.md +174 -445
- package/adapters/README.md +256 -0
- package/adapters/codex/README.md +272 -0
- package/adapters/codex/install.sh +247 -0
- package/adapters/opencode/README.md +301 -0
- package/adapters/opencode/install.sh +308 -0
- package/adapters/opencode-plugin/index.ts +279 -0
- package/adapters/opencode-plugin/package.json +21 -0
- package/bin/cli.js +179 -15
- package/lib/sources/policy-questions.js +9 -2
- package/mcp-server/index.js +4 -3
- package/package.json +7 -3
- package/plugins/deslop-around/.claude-plugin/plugin.json +1 -1
- package/plugins/deslop-around/commands/deslop-around.md +97 -172
- package/plugins/deslop-around/lib/sources/policy-questions.js +9 -2
- package/plugins/deslop-around/references/slop-categories.md +107 -0
- package/plugins/deslop-around/scripts/detect.js +131 -0
- package/plugins/enhance/.claude-plugin/plugin.json +1 -1
- package/plugins/next-task/.claude-plugin/plugin.json +1 -1
- package/plugins/next-task/agents/task-discoverer.md +22 -25
- package/plugins/next-task/agents/worktree-manager.md +8 -6
- package/plugins/next-task/commands/next-task.md +29 -0
- package/plugins/next-task/lib/sources/policy-questions.js +9 -2
- package/plugins/project-review/.claude-plugin/plugin.json +1 -1
- package/plugins/project-review/lib/sources/policy-questions.js +9 -2
- package/plugins/reality-check/.claude-plugin/plugin.json +1 -1
- package/plugins/reality-check/lib/sources/policy-questions.js +9 -2
- package/plugins/ship/.claude-plugin/plugin.json +1 -1
- package/plugins/ship/lib/sources/policy-questions.js +9 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "awesome-slash",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "2.
|
|
3
|
+
"description": "6 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, and enhancement analysis",
|
|
4
|
+
"version": "2.10.1",
|
|
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.10.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.
|
|
23
|
+
"version": "2.10.1",
|
|
24
24
|
"category": "deployment"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "deslop-around",
|
|
28
28
|
"source": "./plugins/deslop-around",
|
|
29
29
|
"description": "3-phase AI slop detection: regex patterns (HIGH), multi-pass analyzers (MEDIUM), CLI tools (LOW)",
|
|
30
|
-
"version": "2.
|
|
30
|
+
"version": "2.10.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.
|
|
37
|
+
"version": "2.10.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.
|
|
44
|
+
"version": "2.10.1",
|
|
45
45
|
"category": "productivity"
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"name": "enhance",
|
|
49
49
|
"source": "./plugins/enhance",
|
|
50
50
|
"description": "Master enhancement orchestrator: parallel analyzer execution for plugins, agents, docs, CLAUDE.md, and prompts with unified reporting",
|
|
51
|
-
"version": "2.
|
|
51
|
+
"version": "2.10.1",
|
|
52
52
|
"category": "development"
|
|
53
53
|
}
|
|
54
54
|
],
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,63 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.10.1] - 2025-01-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **npm Release** - Re-release after failed 2.10.0 publish attempt
|
|
14
|
+
|
|
15
|
+
## [2.10.0] - 2025-01-24
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- **OpenCode Native Plugin** - Full native integration with auto-thinking and workflow hooks
|
|
19
|
+
- Auto-thinking model selection based on task complexity
|
|
20
|
+
- Workflow enforcement via SubagentStop hooks
|
|
21
|
+
- Session compaction on compact events
|
|
22
|
+
- 21 agents installed to `~/.opencode/agents/`
|
|
23
|
+
|
|
24
|
+
- **Codex CLI Integration** - Complete skill-based integration
|
|
25
|
+
- 8 skills with proper trigger-phrase descriptions
|
|
26
|
+
- MCP server configuration in `~/.codex/config.toml`
|
|
27
|
+
- Skills follow Codex best practices ("Use when user asks to...")
|
|
28
|
+
|
|
29
|
+
- **Cross-Platform Compatibility Master Checklist** - Comprehensive guide for multi-platform support
|
|
30
|
+
- Platform-specific requirements (Claude Code, OpenCode, Codex)
|
|
31
|
+
- Environment variable guidelines (PLUGIN_ROOT, AI_STATE_DIR)
|
|
32
|
+
- Label length limits (30 chars for OpenCode)
|
|
33
|
+
|
|
34
|
+
- **Searchable Code Markers** - Documentation stability improvements
|
|
35
|
+
- MCP_TOOLS_ARRAY, MCP_SERVER_VERSION in mcp-server/index.js
|
|
36
|
+
- PLUGINS_ARRAY, OPENCODE_COMMAND_MAPPINGS, CODEX_SKILL_MAPPINGS in bin/cli.js
|
|
37
|
+
- Checklists now reference markers instead of line numbers
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
- **Checklists Updated** - All checklists now include cross-platform requirements
|
|
41
|
+
- new-command.md, new-agent.md, release.md, update-mcp.md, new-lib-module.md
|
|
42
|
+
- Added quality validation steps (/enhance)
|
|
43
|
+
- Added platform-specific verification steps
|
|
44
|
+
|
|
45
|
+
- **Frontmatter Transformation** - Automatic conversion for OpenCode compatibility
|
|
46
|
+
- CLAUDE_PLUGIN_ROOT → PLUGIN_ROOT
|
|
47
|
+
- .claude/ → .opencode/ in paths
|
|
48
|
+
- tools → permissions format
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
- **Codex PLUGIN_ROOT** - Transform to absolute path in skills (Codex doesn't set env var)
|
|
52
|
+
- **30-char Label Limit** - AskUserQuestion labels truncated for OpenCode compatibility
|
|
53
|
+
- **State Directory Creation** - Proper handling across platforms
|
|
54
|
+
- **Cached Source Labels** - Truncated to fit OpenCode limits
|
|
55
|
+
- **Skill Descriptions** - Added trigger phrases for Codex discoverability
|
|
56
|
+
|
|
57
|
+
## [2.9.1] - 2025-01-23
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
- **deslop-around skill** - Refactored to follow skill best practices
|
|
61
|
+
- Added `scripts/detect.js` CLI runner to invoke pipeline (instead of describing logic for LLM)
|
|
62
|
+
- Added `references/slop-categories.md` for progressive disclosure
|
|
63
|
+
- Moved constraints to top with explicit priority order (addresses "lost-in-the-middle")
|
|
64
|
+
- Added `<output_format>` XML tags for explicit output specification
|
|
65
|
+
- Reduced skill from 240 lines to 165 lines (~31% smaller)
|
|
66
|
+
|
|
10
67
|
## [2.9.0] - 2025-01-23
|
|
11
68
|
|
|
12
69
|
### Added
|