mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
Add command relationships, essential commands, and validation script
- Introduced `command-relationships.json` to define internal calls, next steps, and prerequisites for various workflows. - Created `essential-commands.json` to document key commands, their descriptions, arguments, and usage scenarios. - Added `validate-help.py` script to check for the existence of source files referenced in command definitions, ensuring all necessary files are present.
This commit is contained in:
@@ -388,7 +388,7 @@ export async function handleHelpRoutes(ctx: RouteContext): Promise<boolean> {
|
||||
// We need to resolve this against that actual location, not the project root
|
||||
|
||||
const baseDir = initialPath || join(homedir(), '.claude');
|
||||
const commandJsonDir = join(baseDir, '.claude', 'skills', 'ccw-help');
|
||||
const commandJsonDir = join(baseDir, 'skills', 'ccw-help');
|
||||
|
||||
// Resolve the source path against where command.json actually is
|
||||
const resolvedPath = resolve(commandJsonDir, sourceParam);
|
||||
|
||||
Reference in New Issue
Block a user