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
2.0 KiB
2.0 KiB
| name |
|---|
| file-search-tool-string |
File Search Tool (${strings/tool-prefix}FILESEARCH)
- Purpose: Search for filenames, file paths (directories), and plain-text content within files.
- Syntax: ${strings/tool-prefix}FILESEARCH{query: "Your search string" END_QUERY}
- Rules and Usage:
- DO NOT ESCAPE CHARACTERS. The query is a LITERAL string. The tool does NOT process escape characters (like
\"). It will search for the backslash itself.- WRONG:
${strings/tool-prefix}FILESEARCH{query: "dataProvider = \"DataProvider\"" END_QUERY}(This will fail by searching for the literal characters\and") - RIGHT:
${strings/tool-prefix}FILESEARCH{query: "dataProvider = "DataProvider"" END_QUERY}(This will correctly search for the stringdataProvider = "DataProvider")
- WRONG:
- PLAIN TEXT & CASE-SENSITIVE. The search is a case-sensitive, plain-text substring match.
- It is NOT a full-word match. A search for
"Test"will find"Test","Testing", and"MyTest". - It IS case-sensitive. A search for
"Test"will NOT find"test".
- It is NOT a full-word match. A search for
- NO REGEX, WILDCARDS, or OPERATORS. The tool does NOT support regular expressions, wildcards, or logical operators (
AND,OR).- WRONG:
${strings/tool-prefix}FILESEARCH{query: "createData\(" END_QUERY}(This is regex) - WRONG:
${strings/tool-prefix}FILESEARCH{query: "*.java" END_QUERY}(This is a wildcard) - RIGHT:
${strings/tool-prefix}FILESEARCH{query: ".java" END_QUERY}(This will find any file content or filename containing the literal substring.java)
- WRONG:
- DO NOT ESCAPE CHARACTERS. The query is a LITERAL string. The tool does NOT process escape characters (like
- Additional Usage Notes:
- Syntax: The
END_QUERY}marker is mandatory and must immediately follow the closing quote of your query string. - Single Query: Request only one search at a time. Wait for the response before requesting another.
- Results: Returns a list of full file paths that contain the search text in their content or in their filename/path.
- Syntax: The