memory_append

Append content to .kogniterm/llm_context.md memory files.

5|Updated Aug 9, 2025
One-click install
npx skills add https://github.com/gatovillano/KogniTerm --skill memory-append
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory_append
Source: https://github.com/gatovillano/KogniTerm/tree/main/kogniterm/skills/bundled/memory_append
Command: npx skills add https://github.com/gatovillano/KogniTerm --skill memory-append

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill helps teams persist important contextual notes by appending content to the project's memory file llm_context.md, enabling continuity across sessions.

Core Features & Use Cases

  • Appends content to a memory file in the .kogniterm/ directory, defaulting to llm_context.md, to preserve important project notes.
  • Accepts an optional file_path to target other memory files, enabling multiple memory contexts.
  • Ensures safe operation with directory creation, UTF-8 encoding, and simple append semantics.

Quick Start

Invoke memory_append with content 'Your note here' to append to the default memory file llm_context.md.

Frequently Asked Questions about memory_append

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I persist project context notes between LLM sessions?

You can persist project context notes between sessions by appending content to a memory file. This skill automates appending notes to the .kogniterm/llm_context.md file, ensuring contextual data remains available across different working sessions.

Can I append notes to a custom memory file instead of the default context?

Yes, you can append notes to a custom memory file by providing an optional file_path parameter. This overrides the default llm_context.md target, enabling you to maintain multiple separate memory contexts for different project aspects.

What is the best way to automate adding contextual notes to a project memory store?

The best way to automate adding contextual notes is using a simple append operation that writes in UTF-8 encoding. This skill safely targets the memory store, creating the .kogniterm directory if it is missing, and appends your content directly.

Do I need specific permissions to write to the llm_context.md memory file?

Yes, you need the memory permission to write to the llm_context.md memory file. This permission allows the skill to create the .kogniterm directory if it does not exist and perform the append operation safely.

Why does my project context disappear when starting a new automation session?

Project context disappears because it is not persisted by default. Appending important notes to a memory file like llm_context.md solves this by storing the contextual data in your project directory, preserving it for future sessions.

Are there limitations when using a simple append operation for project memory persistence?

A limitation of using a simple append operation is that it only adds content to the end of the memory file. It cannot modify or organize existing notes, so the file grows sequentially without structured formatting or automated cleanup.