mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
268 lines
10 KiB
TypeScript
268 lines
10 KiB
TypeScript
/**
|
|
* Copyright 2026 Reto Meier
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { MultiAgentToolContext, MultiAgentToolResult, ToolParsingResult } from '../../momoa_core/types.js';
|
|
import { removeBacktickFences } from '../../utils/markdownUtils.js';
|
|
import { MultiAgentTool } from '../multiAgentTool.js';
|
|
|
|
/**
|
|
* @interface TestCase
|
|
* @description Defines the structure for a single regex test case.
|
|
*/
|
|
interface TestCase {
|
|
input: string;
|
|
expected: any;
|
|
type: 'validate' | 'extract' | 'replace' | 'findAll' | 'split';
|
|
description?: string;
|
|
group?: number;
|
|
replacement?: string;
|
|
engine?: 'javascript' | 'python' | 'java' | 'kotlin' | 'go';
|
|
pythonMatchType?: 'search' | 'match' | 'fullmatch';
|
|
}
|
|
|
|
// --- Helper Functions (ported from regex_validator.js) ---
|
|
|
|
/**
|
|
* Strips the custom {SoRegEx...EoRegEx} delimiters from a regex string.
|
|
* @param regexString The string potentially wrapped with delimiters.
|
|
* @returns The cleaned regex string.
|
|
*/
|
|
function stripRegexDelimiters(regexString: string): string {
|
|
const startDelimiter = "{SoRegEx}";
|
|
const endDelimiter = "{EoRegEx}";
|
|
if (typeof regexString === 'string' && regexString.startsWith(startDelimiter) && regexString.endsWith(endDelimiter)) {
|
|
return regexString.substring(startDelimiter.length, regexString.length - endDelimiter.length).trim();
|
|
}
|
|
return regexString;
|
|
}
|
|
|
|
/**
|
|
* Makes a one-off LLM call to get a natural language explanation of a regex.
|
|
* @param regExString The regular expression pattern (including delimiters).
|
|
* @param flags The regex flags.
|
|
* @param context The tool context for making LLM calls.
|
|
* @returns The natural language explanation.
|
|
*/
|
|
async function getRegexExplanation(regExString: string, flags: string, context: MultiAgentToolContext): Promise<string> {
|
|
const cleanRegex = stripRegexDelimiters(regExString);
|
|
if (!cleanRegex) {
|
|
return "No regular expression was provided to explain.";
|
|
}
|
|
try {
|
|
const prompt = `Please provide a brief, one-paragraph explanation in plain English for the following regular expression. Describe its purpose, what it matches, and what any special characters or groups do. Do not include the RegEx itself in your response, only the explanation.\n\nRegular Expression: /${cleanRegex}/${flags || ''}`;
|
|
|
|
const response = await context.multiAgentGeminiClient.sendOneShotMessage(prompt, {});
|
|
const explanation = response?.text?.trim() || "";
|
|
|
|
return removeBacktickFences(explanation) || "An explanation could not be generated.";
|
|
} catch (e) {
|
|
console.error("Error generating RegEx explanation:", e);
|
|
return "An error occurred while generating the explanation.";
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Validates a Regular Expression against a comprehensive set of test cases.
|
|
* @param regExString The regular expression pattern as a string.
|
|
* @param flags Optional regex flags (e.g., 'g', 'i', 'm').
|
|
* @param testCases An array of test case objects to run against the regex.
|
|
*/
|
|
function regexValidator(regExString: string, flags = '', testCases: TestCase[] = []) {
|
|
const finalResults = {
|
|
validatedRegex: null as string | null,
|
|
isRegexValid: true,
|
|
regexError: null as string | null,
|
|
summary: {
|
|
total: testCases.length,
|
|
passed: 0,
|
|
failed: 0,
|
|
},
|
|
testResults: [] as any[],
|
|
};
|
|
|
|
let regex: RegExp;
|
|
try {
|
|
if (!regExString) { throw new Error("Regular expression string cannot be empty."); }
|
|
const cleanRegExString = stripRegexDelimiters(regExString);
|
|
finalResults.validatedRegex = `/${cleanRegExString}/${flags || ''}`;
|
|
regex = new RegExp(cleanRegExString, flags);
|
|
} catch (e: any) {
|
|
finalResults.isRegexValid = false;
|
|
finalResults.regexError = e.message;
|
|
return finalResults;
|
|
}
|
|
|
|
if (!Array.isArray(testCases)) {
|
|
finalResults.isRegexValid = false;
|
|
finalResults.regexError = "The 'testCases' parameter must be an array.";
|
|
return finalResults;
|
|
}
|
|
|
|
for (const testCase of testCases) {
|
|
const { input, expected, type, description = '', group = 0, replacement } = testCase;
|
|
const caseResult = { description, type, input, expected, actual: null as any, passed: false, error: null as string | null };
|
|
|
|
try {
|
|
let actual: any;
|
|
let passed = false;
|
|
switch (type) {
|
|
case 'validate':
|
|
actual = regex.test(input);
|
|
passed = (actual === expected);
|
|
break;
|
|
case 'extract':
|
|
const matches = regex.exec(input);
|
|
actual = (matches && matches[group] !== undefined) ? matches[group] : null;
|
|
passed = (actual === expected);
|
|
break;
|
|
case 'replace':
|
|
if (typeof replacement !== 'string') throw new Error("Test case of type 'replace' must have a 'replacement' string property.");
|
|
actual = input.replace(regex, replacement);
|
|
passed = (actual === expected);
|
|
break;
|
|
case 'findAll':
|
|
if (!regex.global) {
|
|
throw new Error("Test case of type 'findAll' requires the global 'g' flag.");
|
|
}
|
|
// Use matchAll to get an iterator, then convert it to an array of arrays
|
|
actual = Array.from(input.matchAll(regex), match => [...match]);
|
|
|
|
// The comparison logic needs to handle an array of arrays
|
|
passed = Array.isArray(expected) &&
|
|
Array.isArray(actual) &&
|
|
actual.length === expected.length &&
|
|
actual.every((matchArray, i) =>
|
|
Array.isArray(expected[i]) &&
|
|
matchArray.length === expected[i].length &&
|
|
matchArray.every((val: any, j: number) => val === expected[i][j])
|
|
);
|
|
break;
|
|
case 'split':
|
|
actual = input.split(regex);
|
|
passed = Array.isArray(expected) && actual.length === expected.length && actual.every((val: any, index: number) => val === expected[index]);
|
|
break;
|
|
default:
|
|
throw new Error(`Unknown test case type: '${type}'`);
|
|
}
|
|
caseResult.actual = actual;
|
|
caseResult.passed = passed;
|
|
} catch (e: any) {
|
|
caseResult.error = e.message;
|
|
caseResult.passed = false;
|
|
}
|
|
|
|
if (caseResult.passed) {
|
|
finalResults.summary.passed++;
|
|
} else {
|
|
finalResults.summary.failed++;
|
|
}
|
|
finalResults.testResults.push(caseResult);
|
|
}
|
|
return finalResults;
|
|
}
|
|
|
|
|
|
export const regexValidatorTool: MultiAgentTool = {
|
|
displayName: "RegEx Validator",
|
|
name: 'REGEX/VALIDATE{',
|
|
|
|
/**
|
|
* Parses and validates the JSON payload for the regex validator tool.
|
|
* @param invocation The raw string content following the tool name.
|
|
* @returns A promise resolving to a ToolParsingResult.
|
|
*/
|
|
async extractParameters(invocation: string, _context: MultiAgentToolContext): Promise<ToolParsingResult> {
|
|
const payloadString = `{${invocation.slice(0, -1)}}`;
|
|
let payload: any;
|
|
|
|
try {
|
|
payload = JSON.parse(payloadString);
|
|
} catch (e: any) {
|
|
return {
|
|
success: false,
|
|
error: `Invalid syntax: The content inside ${this.name}...} is not valid JSON. Error: ${e.message}`,
|
|
};
|
|
}
|
|
|
|
const issues: string[] = [];
|
|
|
|
// Validate regExString
|
|
if (!payload.regExString || typeof payload.regExString !== 'string') {
|
|
issues.push("The JSON payload is missing the required 'regExString' field, or its value is not a string.");
|
|
} else {
|
|
const startDelimiter = "{SoRegEx}";
|
|
const endDelimiter = "{EoRegEx}";
|
|
if (!payload.regExString.startsWith(startDelimiter)) issues.push("The 'regExString' is missing the required '{SoRegEx}' prefix.");
|
|
if (!payload.regExString.endsWith(endDelimiter)) issues.push("The 'regExString' is missing the required '{EoRegEx}' suffix.");
|
|
|
|
try {
|
|
new RegExp(stripRegexDelimiters(payload.regExString), payload.flags || '');
|
|
} catch (e: any) {
|
|
issues.push(`The provided 'regExString' has a syntax error: ${e.message}`);
|
|
}
|
|
}
|
|
|
|
// Validate testCases
|
|
if (!Array.isArray(payload.testCases)) {
|
|
issues.push("The JSON payload is missing the required 'testCases' field, or its value is not an array.");
|
|
}
|
|
|
|
if (issues.length > 0) {
|
|
return {
|
|
success: false,
|
|
error: `Invalid parameters for ${this.displayName} tool:\n- ${issues.join('\n- ')}`,
|
|
};
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
params: payload,
|
|
};
|
|
},
|
|
|
|
/**
|
|
* Executes the regex validation and returns a formatted result.
|
|
* @param params The parsed parameters from extractParameters.
|
|
* @param context The tool context.
|
|
* @returns A promise resolving to a MultiAgentToolResult.
|
|
*/
|
|
async execute(params: Record<string, any>, context: MultiAgentToolContext): Promise<MultiAgentToolResult> {
|
|
const { regExString, flags, testCases } = params;
|
|
|
|
const validationResult = regexValidator(regExString, flags, testCases);
|
|
|
|
let finalResultString = '';
|
|
|
|
// If the regex is valid and all tests passed, get an explanation.
|
|
if (validationResult.isRegexValid && validationResult.summary.failed === 0) {
|
|
const explanation = await getRegexExplanation(regExString, flags, context);
|
|
finalResultString += `**Validation Successful**\n\n`;
|
|
finalResultString += `**Explanation:** ${explanation}\n\n`;
|
|
finalResultString += `**Final Regex:** ${validationResult.validatedRegex}\n\n`;
|
|
} else if (!validationResult.isRegexValid) {
|
|
finalResultString += `**Validation Failed: Invalid Regex**\n\n`;
|
|
finalResultString += `The regular expression provided has a syntax error: ${validationResult.regexError}\n\n`;
|
|
} else {
|
|
finalResultString += `**Validation Failed: ${validationResult.summary.failed} of ${validationResult.summary.total} test cases failed.**\n\n`;
|
|
}
|
|
|
|
finalResultString += '**Detailed Test Results:**\n';
|
|
finalResultString += '```json\n' + JSON.stringify(validationResult, null, 2) + '\n```';
|
|
|
|
return { result: finalResultString };
|
|
},
|
|
}; |