From 90a2ea41435aae2bcce07d78ad4e7ecc30ef7ec3 Mon Sep 17 00:00:00 2001 From: zulhaimiezulkeri Date: Wed, 5 Aug 2026 10:38:56 +0800 Subject: [PATCH] docs: add missing feature folders to README file-structure tree Topic-Diary-System, Memory-Compaction-System, Image-Generation-System, and Video-Generation-System exist under Feature/ and are already listed in the tier tables further down, but were missing from the top-level File Structure tree. Co-Authored-By: Claude Sonnet 5 --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 35254054..2f1e4224 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,17 @@ ai-memorycore/ │ │ ├── README.md # Feature explanation & benefits │ │ ├── install-save-diary.md # Installation protocol │ │ └── SKILL.md # Auto-triggered skill (for Skill Plugin System) +│ ├── Topic-Diary-System/ # Topic-based memory journals +│ │ ├── README.md # Feature explanation & benefits +│ │ ├── install-topic-diary.md # Installation protocol +│ │ ├── index-format.md # Sample format for topic index +│ │ ├── topic-format.md # Sample format for topic entries +│ │ └── SKILL.md # Auto-triggered skill (for Skill Plugin System) +│ ├── Memory-Compaction-System/ # Budget-aware memory compression +│ │ ├── README.md # Feature explanation & benefits +│ │ ├── install-memory-compaction.md # Installation protocol +│ │ ├── policy-format.md # Sample format for compaction policy +│ │ └── SKILL.md # Auto-triggered skill (for Skill Plugin System) │ ├── Echo-Memory-Recall/ # Memory search and recall │ │ ├── README.md # Feature explanation & benefits │ │ ├── install-echo-recall.md # Installation protocol @@ -113,6 +124,16 @@ ai-memorycore/ │ │ ├── README.md # Feature explanation & benefits │ │ ├── install-image-prompt.md # Installation protocol │ │ └── SKILL.md # Auto-triggered skill (composition-aware prompts) +│ ├── Image-Generation-System/ # AI image generation via gpt-image API +│ │ ├── README.md # Feature explanation & benefits +│ │ ├── install-image-generation.md # Installation protocol +│ │ ├── credential-setup.md # API credential setup +│ │ └── scripts/ # Generation scripts +│ ├── Video-Generation-System/ # AI video generation via Seedance API +│ │ ├── README.md # Feature explanation & benefits +│ │ ├── install-video-generation.md # Installation protocol +│ │ ├── credential-setup.md # API credential setup +│ │ └── scripts/ # Generation scripts │ ├── Song-Creation-System/ # Visual-to-musical storytelling │ │ ├── README.md # Feature explanation & benefits │ │ ├── install-song-creation.md # Installation protocol