feat: Implement subagents phase 1 with file-based configuration system

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
tanzhenxin
2025-09-02 14:02:30 +08:00
parent f024bba2ef
commit c49e4f6e8a
11 changed files with 2723 additions and 7 deletions

View File

@@ -0,0 +1,166 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Simple YAML parser for subagent frontmatter.
* This is a minimal implementation that handles the basic YAML structures
* needed for subagent configuration files.
*/
/**
* Parses a simple YAML string into a JavaScript object.
* Supports basic key-value pairs, arrays, and nested objects.
*
* @param yamlString - YAML string to parse
* @returns Parsed object
*/
export function parse(yamlString: string): Record<string, unknown> {
const lines = yamlString
.split('\n')
.map((line) => line.trim())
.filter((line) => line && !line.startsWith('#'));
const result: Record<string, unknown> = {};
let currentKey = '';
let currentArray: string[] = [];
let inArray = false;
let currentObject: Record<string, unknown> = {};
let inObject = false;
let objectKey = '';
for (const line of lines) {
// Handle array items
if (line.startsWith('- ')) {
if (!inArray) {
inArray = true;
currentArray = [];
}
currentArray.push(line.substring(2).trim());
continue;
}
// End of array
if (inArray && !line.startsWith('- ')) {
result[currentKey] = currentArray;
inArray = false;
currentArray = [];
}
// Handle nested object items (simple indentation)
if (line.startsWith(' ') && inObject) {
const [key, ...valueParts] = line.trim().split(':');
const value = valueParts.join(':').trim();
currentObject[key.trim()] = parseValue(value);
continue;
}
// End of object
if (inObject && !line.startsWith(' ')) {
result[objectKey] = currentObject;
inObject = false;
currentObject = {};
}
// Handle key-value pairs
if (line.includes(':')) {
const [key, ...valueParts] = line.split(':');
const value = valueParts.join(':').trim();
if (value === '') {
// This might be the start of an object or array
currentKey = key.trim();
// Check if next lines are indented (object) or start with - (array)
continue;
} else {
result[key.trim()] = parseValue(value);
}
} else if (currentKey && !inArray && !inObject) {
// This might be the start of an object
inObject = true;
objectKey = currentKey;
currentObject = {};
currentKey = '';
}
}
// Handle remaining array or object
if (inArray) {
result[currentKey] = currentArray;
}
if (inObject) {
result[objectKey] = currentObject;
}
return result;
}
/**
* Converts a JavaScript object to a simple YAML string.
*
* @param obj - Object to stringify
* @param options - Stringify options
* @returns YAML string
*/
export function stringify(
obj: Record<string, unknown>,
_options?: { lineWidth?: number; minContentWidth?: number },
): string {
const lines: string[] = [];
for (const [key, value] of Object.entries(obj)) {
if (Array.isArray(value)) {
lines.push(`${key}:`);
for (const item of value) {
lines.push(` - ${item}`);
}
} else if (typeof value === 'object' && value !== null) {
lines.push(`${key}:`);
for (const [subKey, subValue] of Object.entries(
value as Record<string, unknown>,
)) {
lines.push(` ${subKey}: ${formatValue(subValue)}`);
}
} else {
lines.push(`${key}: ${formatValue(value)}`);
}
}
return lines.join('\n');
}
/**
* Parses a value string into appropriate JavaScript type.
*/
function parseValue(value: string): unknown {
if (value === 'true') return true;
if (value === 'false') return false;
if (value === 'null') return null;
if (value === '') return '';
// Try to parse as number
const num = Number(value);
if (!isNaN(num) && isFinite(num)) {
return num;
}
// Return as string
return value;
}
/**
* Formats a value for YAML output.
*/
function formatValue(value: unknown): string {
if (typeof value === 'string') {
// Quote strings that might be ambiguous
if (value.includes(':') || value.includes('#') || value.trim() !== value) {
return `"${value.replace(/"/g, '\\"')}"`;
}
return value;
}
return String(value);
}