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 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-01-25 12:18:57 +02:00
parent bf2fd5896d
commit d735c580dc

View File

@@ -924,7 +924,7 @@ export const toolDefinitions = [
type: 'object', type: 'object',
properties: { properties: {
project: { type: 'string', description: 'Project key (e.g., CF, VPN)' }, 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' }, title: { type: 'string', description: 'Document title' },
content: { type: 'string', description: 'Document content in markdown' }, content: { type: 'string', description: 'Document content in markdown' },
session_id: { type: 'string', description: 'Session ID (optional)' }, session_id: { type: 'string', description: 'Session ID (optional)' },
@@ -939,7 +939,7 @@ export const toolDefinitions = [
type: 'object', type: 'object',
properties: { properties: {
project: { type: 'string', description: 'Project key' }, 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'], required: ['project', 'doc_type'],
}, },