awesome-slash 2.4.3 → 2.5.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.
Files changed (146) hide show
  1. package/.claude-plugin/marketplace.json +6 -6
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/CHANGELOG.md +99 -1
  4. package/README.md +173 -161
  5. package/SECURITY.md +25 -81
  6. package/adapters/codex/install.sh +58 -16
  7. package/adapters/opencode/install.sh +92 -23
  8. package/lib/index.js +47 -4
  9. package/lib/patterns/review-patterns.js +58 -11
  10. package/lib/patterns/slop-patterns.js +154 -147
  11. package/lib/platform/detect-platform.js +99 -350
  12. package/lib/platform/detection-configs.js +93 -0
  13. package/lib/platform/verify-tools.js +10 -78
  14. package/lib/schemas/README.md +195 -0
  15. package/lib/schemas/validator.js +247 -0
  16. package/lib/sources/custom-handler.js +199 -0
  17. package/lib/sources/policy-questions.js +239 -0
  18. package/lib/sources/source-cache.js +149 -0
  19. package/lib/state/workflow-state.js +363 -665
  20. package/lib/types/README.md +292 -0
  21. package/lib/types/agent-frontmatter.d.ts +134 -0
  22. package/lib/types/command-frontmatter.d.ts +107 -0
  23. package/lib/types/hook-frontmatter.d.ts +115 -0
  24. package/lib/types/index.d.ts +84 -0
  25. package/lib/types/plugin-manifest.d.ts +102 -0
  26. package/lib/types/skill-frontmatter.d.ts +89 -0
  27. package/lib/utils/cache-manager.js +154 -0
  28. package/lib/utils/context-optimizer.js +5 -36
  29. package/lib/utils/deprecation.js +37 -0
  30. package/lib/utils/shell-escape.js +88 -0
  31. package/mcp-server/index.js +513 -18
  32. package/package.json +6 -2
  33. package/plugins/deslop-around/.claude-plugin/plugin.json +1 -1
  34. package/plugins/deslop-around/lib/index.js +170 -0
  35. package/plugins/deslop-around/lib/patterns/review-patterns.js +58 -11
  36. package/plugins/deslop-around/lib/patterns/slop-patterns.js +170 -129
  37. package/plugins/deslop-around/lib/platform/detect-platform.js +212 -123
  38. package/plugins/deslop-around/lib/platform/detection-configs.js +93 -0
  39. package/plugins/deslop-around/lib/platform/verify-tools.js +10 -1
  40. package/plugins/deslop-around/lib/schemas/README.md +195 -0
  41. package/plugins/deslop-around/lib/schemas/validator.js +205 -0
  42. package/plugins/deslop-around/lib/sources/custom-handler.js +199 -0
  43. package/plugins/deslop-around/lib/sources/policy-questions.js +239 -0
  44. package/plugins/deslop-around/lib/sources/source-cache.js +149 -0
  45. package/plugins/deslop-around/lib/state/workflow-state.js +382 -484
  46. package/plugins/deslop-around/lib/types/README.md +292 -0
  47. package/plugins/deslop-around/lib/types/agent-frontmatter.d.ts +134 -0
  48. package/plugins/deslop-around/lib/types/command-frontmatter.d.ts +107 -0
  49. package/plugins/deslop-around/lib/types/hook-frontmatter.d.ts +115 -0
  50. package/plugins/deslop-around/lib/types/index.d.ts +84 -0
  51. package/plugins/deslop-around/lib/types/plugin-manifest.d.ts +102 -0
  52. package/plugins/deslop-around/lib/types/skill-frontmatter.d.ts +89 -0
  53. package/plugins/deslop-around/lib/utils/cache-manager.js +154 -0
  54. package/plugins/deslop-around/lib/utils/context-optimizer.js +115 -37
  55. package/plugins/deslop-around/lib/utils/deprecation.js +37 -0
  56. package/plugins/deslop-around/lib/utils/shell-escape.js +88 -0
  57. package/plugins/next-task/.claude-plugin/plugin.json +1 -1
  58. package/plugins/next-task/agents/ci-monitor.md +19 -0
  59. package/plugins/next-task/agents/delivery-validator.md +2 -2
  60. package/plugins/next-task/agents/implementation-agent.md +3 -4
  61. package/plugins/next-task/agents/planning-agent.md +77 -19
  62. package/plugins/next-task/agents/review-orchestrator.md +21 -122
  63. package/plugins/next-task/agents/task-discoverer.md +164 -23
  64. package/plugins/next-task/commands/next-task.md +180 -14
  65. package/plugins/next-task/lib/index.js +170 -0
  66. package/plugins/next-task/lib/patterns/review-patterns.js +58 -11
  67. package/plugins/next-task/lib/patterns/slop-patterns.js +170 -129
  68. package/plugins/next-task/lib/platform/detect-platform.js +212 -123
  69. package/plugins/next-task/lib/platform/detection-configs.js +93 -0
  70. package/plugins/next-task/lib/platform/verify-tools.js +10 -1
  71. package/plugins/next-task/lib/schemas/README.md +195 -0
  72. package/plugins/next-task/lib/schemas/validator.js +205 -0
  73. package/plugins/next-task/lib/sources/custom-handler.js +199 -0
  74. package/plugins/next-task/lib/sources/policy-questions.js +239 -0
  75. package/plugins/next-task/lib/sources/source-cache.js +149 -0
  76. package/plugins/next-task/lib/state/workflow-state.js +382 -484
  77. package/plugins/next-task/lib/types/README.md +292 -0
  78. package/plugins/next-task/lib/types/agent-frontmatter.d.ts +134 -0
  79. package/plugins/next-task/lib/types/command-frontmatter.d.ts +107 -0
  80. package/plugins/next-task/lib/types/hook-frontmatter.d.ts +115 -0
  81. package/plugins/next-task/lib/types/index.d.ts +84 -0
  82. package/plugins/next-task/lib/types/plugin-manifest.d.ts +102 -0
  83. package/plugins/next-task/lib/types/skill-frontmatter.d.ts +89 -0
  84. package/plugins/next-task/lib/utils/cache-manager.js +154 -0
  85. package/plugins/next-task/lib/utils/context-optimizer.js +115 -37
  86. package/plugins/next-task/lib/utils/deprecation.js +37 -0
  87. package/plugins/next-task/lib/utils/shell-escape.js +88 -0
  88. package/plugins/project-review/.claude-plugin/plugin.json +1 -1
  89. package/plugins/project-review/lib/index.js +170 -0
  90. package/plugins/project-review/lib/patterns/review-patterns.js +58 -11
  91. package/plugins/project-review/lib/patterns/slop-patterns.js +170 -129
  92. package/plugins/project-review/lib/platform/detect-platform.js +212 -123
  93. package/plugins/project-review/lib/platform/detection-configs.js +93 -0
  94. package/plugins/project-review/lib/platform/verify-tools.js +10 -1
  95. package/plugins/project-review/lib/schemas/README.md +195 -0
  96. package/plugins/project-review/lib/schemas/validator.js +205 -0
  97. package/plugins/project-review/lib/sources/custom-handler.js +199 -0
  98. package/plugins/project-review/lib/sources/policy-questions.js +239 -0
  99. package/plugins/project-review/lib/sources/source-cache.js +149 -0
  100. package/plugins/project-review/lib/state/workflow-state.js +382 -484
  101. package/plugins/project-review/lib/types/README.md +292 -0
  102. package/plugins/project-review/lib/types/agent-frontmatter.d.ts +134 -0
  103. package/plugins/project-review/lib/types/command-frontmatter.d.ts +107 -0
  104. package/plugins/project-review/lib/types/hook-frontmatter.d.ts +115 -0
  105. package/plugins/project-review/lib/types/index.d.ts +84 -0
  106. package/plugins/project-review/lib/types/plugin-manifest.d.ts +102 -0
  107. package/plugins/project-review/lib/types/skill-frontmatter.d.ts +89 -0
  108. package/plugins/project-review/lib/utils/cache-manager.js +154 -0
  109. package/plugins/project-review/lib/utils/context-optimizer.js +115 -37
  110. package/plugins/project-review/lib/utils/deprecation.js +37 -0
  111. package/plugins/project-review/lib/utils/shell-escape.js +88 -0
  112. package/plugins/reality-check/.claude-plugin/plugin.json +1 -1
  113. package/plugins/reality-check/agents/code-explorer.md +1 -1
  114. package/plugins/ship/.claude-plugin/plugin.json +1 -1
  115. package/plugins/ship/commands/ship-ci-review-loop.md +19 -0
  116. package/plugins/ship/lib/index.js +170 -0
  117. package/plugins/ship/lib/patterns/review-patterns.js +58 -11
  118. package/plugins/ship/lib/patterns/slop-patterns.js +170 -129
  119. package/plugins/ship/lib/platform/detect-platform.js +212 -123
  120. package/plugins/ship/lib/platform/detection-configs.js +93 -0
  121. package/plugins/ship/lib/platform/verify-tools.js +10 -1
  122. package/plugins/ship/lib/schemas/README.md +195 -0
  123. package/plugins/ship/lib/schemas/validator.js +205 -0
  124. package/plugins/ship/lib/sources/custom-handler.js +199 -0
  125. package/plugins/ship/lib/sources/policy-questions.js +239 -0
  126. package/plugins/ship/lib/sources/source-cache.js +149 -0
  127. package/plugins/ship/lib/state/workflow-state.js +382 -484
  128. package/plugins/ship/lib/types/README.md +292 -0
  129. package/plugins/ship/lib/types/agent-frontmatter.d.ts +134 -0
  130. package/plugins/ship/lib/types/command-frontmatter.d.ts +107 -0
  131. package/plugins/ship/lib/types/hook-frontmatter.d.ts +115 -0
  132. package/plugins/ship/lib/types/index.d.ts +84 -0
  133. package/plugins/ship/lib/types/plugin-manifest.d.ts +102 -0
  134. package/plugins/ship/lib/types/skill-frontmatter.d.ts +89 -0
  135. package/plugins/ship/lib/utils/cache-manager.js +154 -0
  136. package/plugins/ship/lib/utils/context-optimizer.js +115 -37
  137. package/plugins/ship/lib/utils/deprecation.js +37 -0
  138. package/plugins/ship/lib/utils/shell-escape.js +88 -0
  139. package/lib/state/workflow-state.schema.json +0 -282
  140. package/plugins/deslop-around/lib/state/workflow-state.schema.json +0 -282
  141. package/plugins/next-task/agents/policy-selector.md +0 -248
  142. package/plugins/next-task/lib/state/tasks-registry.schema.json +0 -85
  143. package/plugins/next-task/lib/state/workflow-state.schema.json +0 -282
  144. package/plugins/next-task/lib/state/worktree-status.schema.json +0 -219
  145. package/plugins/project-review/lib/state/workflow-state.schema.json +0 -282
  146. package/plugins/ship/lib/state/workflow-state.schema.json +0 -282
@@ -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.2",
4
+ "version": "2.5.0",
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.3.1",
16
+ "version": "2.5.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.3.1",
23
+ "version": "2.5.0",
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.3.1",
30
+ "version": "2.5.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.3.1",
37
+ "version": "2.5.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": "1.0.0",
44
+ "version": "2.5.0",
45
45
  "category": "productivity"
46
46
  }
47
47
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awesome-slash",
3
- "version": "2.4.2",
3
+ "version": "2.5.0",
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,6 +7,103 @@ 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.
11
+
12
+ ## [2.4.7] - 2026-01-18
13
+
14
+ ### Changed
15
+ - **Simplified State Management** - Rewrote workflow-state.js (#90)
16
+ - Reduced from 922 to ~520 lines
17
+ - Removed overengineered config system (~10,000 lines deleted)
18
+ - Removed 13 unused JSON schema files
19
+ - Replaced complex nested state with simple two-file system:
20
+ - `tasks.json` in main project: tracks active worktree/task
21
+ - `flow.json` in worktree: tracks workflow progress
22
+ - Removed arbitrary maxReviewIterations (now runs until approved)
23
+ - Removed unused mergeStrategy option
24
+ - **Tasks Lifecycle Wiring** - tasks.json now auto-registers/clears with workflow lifecycle
25
+ - `createFlow()` automatically registers task in tasks.json
26
+ - `completeWorkflow()` and `abortWorkflow()` automatically clear active task
27
+ - **Agent Model Updates** - task-discoverer and code-explorer upgraded to opus
28
+ - **Project Philosophy** - Added development guidelines to CLAUDE.md
29
+ - Core priorities: User DX > worry-free automation > minimal tokens > quality > simplicity
30
+ - Plugin purpose clarification: for OTHER projects, not internal tooling
31
+
32
+ ### Fixed
33
+ - **Path Validation** - Added path validation to prevent traversal attacks in workflow-state.js
34
+ - **Error Logging** - Added critical error logging for corrupted JSON files
35
+ - **hasActiveTask** - Fixed false positive with legacy format (uses `!= null` instead of truthiness)
36
+ - **writeFlow** - Fixed mutation issues by cloning before modification
37
+ - **updateFlow** - Fixed null handling logic
38
+ - **completePhase** - Fixed to use updateFlow pattern consistently
39
+
40
+ ## [2.4.6] - 2026-01-18
41
+
42
+ ### Fixed
43
+ - **Documentation Accuracy** - Fixed all documentation inconsistencies (#91)
44
+ - Fixed config file name: `.claude.config.json` → `.awesomeslashrc.json` in INSTALLATION.md
45
+ - Fixed phase counts: Updated to 18 phases in USAGE.md, CROSS_PLATFORM.md
46
+ - Removed all time estimates from user-facing docs (policy compliance)
47
+ - Updated planning-agent tools in CLAUDE.md and CROSS_PLATFORM.md
48
+ - Fixed non-existent script references in migration guides
49
+ - **Auto-Resume Prevention** - Added mandatory gates to prevent automatic task resumption (#92)
50
+ - Added ⛔ NO AUTO-RESUME gate in next-task.md
51
+ - Added mandatory existing task check in policy-selector.md (Phase 1.5)
52
+ - User must explicitly choose: start new, resume, abort, or view status
53
+ - Warning for active tasks (< 1 hour old) that may be running elsewhere
54
+ - Default behavior: "Start New Task (Recommended)"
55
+
56
+ ### Changed
57
+ - **Planning Flow Architecture** - Improved planning workflow separation (#93)
58
+ - planning-agent now outputs structured JSON instead of entering plan mode
59
+ - Orchestrator receives JSON, formats to markdown, enters plan mode
60
+ - Context-efficient: JSON with `=== PLAN_START ===` markers
61
+ - Clean separation: agent creates, orchestrator presents
62
+ - Removed EnterPlanMode tool from planning-agent
63
+ - **Work Guidelines** - Added "No Summary Files" policy to CLAUDE.md
64
+ - Prohibited: `*_FIXES_APPLIED.md`, `*_AUDIT.md`, `*_SUMMARY.md`
65
+ - Summary info goes in CHANGELOG.md or commit messages only
66
+ - Focus on work, not documentation about work
67
+
68
+ ## [2.4.5] - 2026-01-18
69
+
70
+ ### Fixed
71
+ - **Agent Tool Enforcement** - Critical fixes for agent tool usage (#88)
72
+ - Fixed policy-selector agent not showing checkbox UI - Added AskUserQuestion to tools
73
+ - Fixed task-discoverer agent not showing task selection as checkboxes
74
+ - Fixed planning-agent not entering plan mode after creating plans
75
+ - Added CRITICAL REQUIREMENT sections to enforce proper tool usage
76
+ - **Schema Validator** - Fixed validation bugs
77
+ - Added string constraints (minLength, maxLength, pattern) to main validate() method
78
+ - Fixed null type checking to handle null separately from object type
79
+ - Added array constraints (minItems, maxItems, uniqueItems) to main validate() method
80
+ - **Cache Management** - Migrated to CacheManager abstraction
81
+ - Fixed unbounded state cache growth in workflow-state.js
82
+ - Replaced plain Map with CacheManager (maxSize: 50, ttl: 200ms)
83
+ - Removed custom cache management code for consistency
84
+
85
+ ### Changed
86
+ - **Documentation** - Simplified and clarified user-facing docs
87
+ - Streamlined MANUAL_TESTING.md - removed verbose explanations
88
+ - Made README.md more concise and professional
89
+ - Removed excessive formatting and emoji icons
90
+
91
+ ### Tests
92
+ - Fixed cache-manager test maxSize conflicts
93
+ - Skipped 3 MCP server integration tests (mocking complexity)
94
+ - All core tests passing: 513/516 passed, 3 skipped
95
+
96
+ ## [2.4.4] - 2026-01-18
97
+
98
+ ### Added
99
+ - **PR Auto-Review Process** - Added mandatory workflow for 4 auto-reviewers (Copilot, Claude, Gemini, Codex)
100
+ - **Agent Responsibilities** - Documented required tools and MUST-CALL agents for /next-task and /ship
101
+ - **CLAUDE.md Enhancement** - Comprehensive agent workflow documentation with tool restrictions
102
+
103
+ ### Changed
104
+ - Updated ci-monitor.md with 4-reviewer process details
105
+ - Updated ship-ci-review-loop.md with PR auto-review section
106
+
10
107
  ## [2.4.3] - 2026-01-18
11
108
 
12
109
  ### Added
@@ -214,7 +311,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
214
311
 
215
312
  ### Added
216
313
  - **Master Workflow Orchestrator** - Complete task-to-production automation
217
- - **State Management** - `.claude/.workflow-state.json` for workflow persistence
314
+ - **State Management** - `.claude/workflow-state.json` for workflow persistence
218
315
  - **8 Specialist Agents** - Opus for complex tasks, Sonnet for operations
219
316
  - **Cross-Platform MCP Server** - Integration with OpenCode and Codex CLI
220
317
  - **Resume Capability** - `--status`, `--resume`, `--abort` flags
@@ -280,3 +377,4 @@ Initial release with full feature set.
280
377
  - MIT License
281
378
  - Security policy
282
379
  - Contributing guidelines
380
+