Skip to content

Commit 4c78f53

Browse files
author
catlog22
committed
feat: add commands management feature with API endpoints and UI integration
- Implemented commands routes for listing, enabling, and disabling commands. - Created commands manager view with accordion groups for better organization. - Added loading states and confirmation dialogs for enabling/disabling commands. - Enhanced error handling and user feedback for command operations. - Introduced CSS styles for commands manager UI components. - Updated navigation to include commands manager link. - Refactored existing code for better maintainability and clarity.
1 parent cc5a571 commit 4c78f53

11 files changed

Lines changed: 1203 additions & 3 deletions

File tree

.claude/commands/cli/cli-init.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: cli-init
33
description: Generate .gemini/ and .qwen/ config directories with settings.json and ignore files based on workspace technology detection
44
argument-hint: "[--tool gemini|qwen|all] [--output path] [--preview]"
55
allowed-tools: Bash(*), Read(*), Write(*), Glob(*)
6+
group: cli
67
---
78

89
# CLI Initialization Command (/cli:cli-init)

.claude/commands/workflow/plan.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: plan
33
description: 5-phase planning workflow with action-planning-agent task generation, outputs IMPL_PLAN.md and task JSONs
44
argument-hint: "[-y|--yes] \"text description\"|file.md"
55
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*)
6+
group: workflow
67
---
78

89
## Auto Mode

ccw/src/core/dashboard-generator.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ const MODULE_CSS_FILES = [
102102
'32-issue-manager.css',
103103
'33-cli-stream-viewer.css',
104104
'34-discovery.css',
105-
'36-loop-monitor.css'
105+
'36-loop-monitor.css',
106+
'37-commands.css'
106107
];
107108

108109
const MODULE_FILES = [
@@ -151,6 +152,7 @@ const MODULE_FILES = [
151152
'views/prompt-history.js',
152153
'views/skills-manager.js',
153154
'views/rules-manager.js',
155+
'views/commands-manager.js',
154156
'views/claude-manager.js',
155157
'views/api-settings.js',
156158
'views/issue-manager.js',

0 commit comments

Comments
 (0)