AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Mem — Скилл для ИИ-агентов | AI Рассвет

    Mem

    Store and retrieve memories (notes, facts, decisions, snippets, images) using a local SQLite database with full text search. Use when you need to remember information across sessions, recall previous decisions, store code snippets, or search your knowledge base.

    Скиллы для разработки#GitHub#runablehq/memory#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add runablehq/memory --skill mem
    Скачать ZIP
    Версия
    1.0.0+e207d36afbb4
    Автор
    Владимир Ломтев
    Репозиторий
    runablehq/memory
    GitHub: runablehq/memory

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    mem — Agent Memory Store

    A CLI tool for storing and retrieving memories with full-text search. Data is stored locally in ~/.mem/mem.db.

    When to Use

    • Remember user preferences, project decisions, important facts
    • Store code snippets, commands, configurations for later recall
    • Search your knowledge base before asking the user for information you may have stored
    • Attach images (screenshots, diagrams) to memories

    Commands

    Three operators: (none) = recall, + = remember, - = forget.

    Recall (search, list, get)

    mem                             # list recent memories
    mem "deploy"                    # full-text search
    mem "database" --tag db         # search filtered by tag
    mem 7sjtNVyZrNIa                # get full content by ID
    mem --tag prefs                 # list filtered by tag
    mem "api" --limit 5 --json     # limit results, JSON output
    mem --full                      # show full content for all
    

    Remember

    mem + "user prefers dark mode" --tag prefs
    mem + "deploy: bun build --compile" --tag deploy
    mem + "chose SQLite for simplicity" --tag architecture
    mem + --image ./screenshot.png --title "Current UI" --tag ui
    echo "long content" | mem + --tag notes
    

    Forget

    mem - <id>                      # delete one memory
    mem - id1 id2 id3               # delete multiple
    

    Piping

    mem "old" --json | jq -r '.[].id' | xargs -I{} mem - {}
    echo "long content" | mem + --tag notes
    

    Best Practices

    1. Tag consistently — Use lowercase, descriptive tags like prefs, api, deploy, db
    2. Search before asking — Check if you've stored relevant information before asking the user
    3. Store decisions — When making architectural or design decisions, store the reasoning
    4. Keep memories atomic — One concept per memory for better searchability

    Output Formats

    • Default: One-line summary per result
    • --full: Complete content inline
    • --json: Structured JSON for parsing

    Требования и возможности

    Источник пакета
    https://github.com/runablehq/memory/tree/e207d36afbb447ece278073029ecc975cd4c1847/skill

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md2304192a50f80710aaf4...

    Частые вопросы

    Как установить Mem?
    Используйте команду npx skills add runablehq/memory --skill mem или скачайте ZIP-архив.
    Можно ли скачать Mem бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.Argent Android Emulator SetupSet up and connect to an Android emulator using argent MCP tools. Use when starting a new session on Android, booting an emulator, getting a device serial, or before any UI interaction task.Fireworks Tech GraphCreate technical diagrams such as software architecture, data flow, flowcharts, sequence diagrams, C4 reviews, cloud deployments, event streams, observability investigations, agent/memory systems, UML, ER, network topology, timelines, and technical concept maps, then export SVG, PNG, focused semantic SVG-to-GIF motion, or offline interactive HTML. Treat direct requests such as "Generate a GIF", "生成 GIF", or "制作 GIF" as motion requests, and use this skill when the user asks to visualize a system or engineering concept. Do not use for photos, raster artwork, or quantitative data charts.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add runablehq/memory --skill mem
    Скачать ZIP
    Версия
    1.0.0+e207d36afbb4
    Автор
    Владимир Ломтев
    Репозиторий
    runablehq/memory
    GitHub: runablehq/memory
    Modern Web GuidanceSearch tool for modern web development best practices. MANDATORY: Execute FIRST for all HTML/CSS and clientside JS tasks. Do NOT skip — web APIs evolve rapidly and training weights contain obsolete patterns.