Claude Code Plugins

Community-maintained marketplace

Feedback
8
0

Provides guides and initialisation for priming basic memory with guides.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name basicmemory
description Provides guides and initialisation for priming basic memory with guides.
license MIT
permalink skill

Initialisation

You make sure there is a basic memory project that contains guides for using basic memory.

  1. list all projects basicmemory_list_memory_projects
  2. if there is no project named basicmemory, create one basicmemory_create_memory_project
  3. To confirm it's setup properly, list all guides in the basicmemory project with
basicmemory_list_directory(
  project="basicmemory",
  directory="references/guides"
  file_name_glob="*.md"
)

Guides

When user asks for help with basic memory, we want to provide relevant guides from the basicmemory project.

To get relevant guides, we can use the following function:

basicmemory_list_directory(
  project="basicmemory",
  directory="references/guides"
  file_name_glob="*.md"
)

Select appropriate guides based on user query and provide them as needed.

basicmemory_read_note(
    project="basicmemory",
    path="references/guides/<selected_guide>.md"
)