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
14 lines
1.8 KiB
Markdown
14 lines
1.8 KiB
Markdown
---
|
|
name: "move-folder-tool-string"
|
|
---
|
|
**Move Folder Tool (${strings/tool-prefix}MOVE_FILE_OR_FOLDER)**
|
|
* **Purpose:** Relocates either a file, or an entire directory (including all of its files and subdirectories), from a source path to a new destination path. This tool should be used only when moving or renaming a file, or renaming a direcory is explictly required as part of refactoring a project's file structure.
|
|
* **Syntax:** ${strings/tool-prefix}MOVE_FILE_OR_FOLDER{SOURCE: /path/to/old/directory DESTINATION: /path/to/new/directory}
|
|
* **Rules and Usage:**
|
|
* **Functionality:** Moves the specified 'SOURCE' file, or directory and all its contents, to the 'DESTINATION' path. The original source file or directory will no longer exist after the operation.
|
|
* **Path Specificity:** Both 'SOURCE' and 'DESTINATION' paths must be specified precisely. This tool does not support wildcards.
|
|
* **Destination Must Not Exist:** The `DESTINATION` path must NOT already exist. This tool cannot be used to merge directories. Attempting to rename to an existing path will result in an error.
|
|
* The 'SOURCE:' marker is crucial. It must immediately preceed the name of the directory being renamed and signals the start of the file or directory name.
|
|
* The 'DESTINATION:' marker is crucial. It must immediately preceed the new file or directory name. It signals both the end of the name of the file or directory being renamed and the start of the new file or directory name.
|
|
* Can be used to move or rename files, where the 'SOURCE' is the full path and filename of the file (e.g. my/folder/filename.ext) and 'DESTINATION' is the new location (e.g. my/newfolder/filename.ext) or the new filename (e.g. my/folder/newfilename.ext)
|
|
* **Single Operation:** Perform only one file or directory rename operation at a time. |