From d735c580dc19c51216a83e97286d0ef5cb21857c Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Sun, 25 Jan 2026 12:18:57 +0200 Subject: [PATCH] feat: Add 'workflow' doc_type for process documentation Extends project_documentation with 'workflow' type for: - Development workflows - Quality validation processes - Testing procedures Used for CF-378 pre-test validation workflow. Co-Authored-By: Claude Sonnet 4.5 --- src/tools/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/index.ts b/src/tools/index.ts index c0deacf..1c1ae66 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -924,7 +924,7 @@ export const toolDefinitions = [ type: 'object', properties: { project: { type: 'string', description: 'Project key (e.g., CF, VPN)' }, - doc_type: { type: 'string', enum: ['overview', 'architecture', 'guidelines', 'history', 'configuration'], description: 'Documentation type' }, + doc_type: { type: 'string', enum: ['overview', 'architecture', 'guidelines', 'history', 'configuration', 'workflow'], description: 'Documentation type' }, title: { type: 'string', description: 'Document title' }, content: { type: 'string', description: 'Document content in markdown' }, session_id: { type: 'string', description: 'Session ID (optional)' }, @@ -939,7 +939,7 @@ export const toolDefinitions = [ type: 'object', properties: { project: { type: 'string', description: 'Project key' }, - doc_type: { type: 'string', enum: ['overview', 'architecture', 'guidelines', 'history', 'configuration'], description: 'Documentation type' }, + doc_type: { type: 'string', enum: ['overview', 'architecture', 'guidelines', 'history', 'configuration', 'workflow'], description: 'Documentation type' }, }, required: ['project', 'doc_type'], },