スキル一覧に戻る
zerobias-org

manage-localmemory

by zerobias-org

0🍴 2📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: manage-localmemory description: Local memory storage patterns, file coordination, and cleanup

Memory Management Rules

Local Memory Storage

  • Location: ${PROJECT_ROOT}/.claude/.localmemory/
  • Purpose: Task progress and intermediate results
  • Scope: Local only - NEVER commit to git
  • Path Type: ALWAYS use absolute paths (never relative paths)

Folder Structure

Pattern: ${PROJECT_ROOT}/.claude/.localmemory/{action}-{module-identifier}/

CRITICAL: Always construct absolute paths using:

PROJECT_ROOT="$(git rev-parse --show-toplevel)"
MEMORY_PATH="${PROJECT_ROOT}/.claude/.localmemory/${action}-${moduleId}"

Where module-identifier is:

  • {vendor}-{module} for simple modules
  • {vendor}-{suite}-{module} when suite exists

Examples (where PROJECT_ROOT is your project's absolute path):

  • ${PROJECT_ROOT}/.claude/.localmemory/create-github-github/
  • ${PROJECT_ROOT}/.claude/.localmemory/update-amazon-aws-s3/
  • ${PROJECT_ROOT}/.claude/.localmemory/fix-gitlab-gitlab/

Phase Output Files

Standard naming in memory folders:

phase-01-discovery.json
phase-02-scaffolding.json
phase-03-api-spec.json
phase-04-type-generation.json
phase-05-implementation.json
phase-06-testing.json
phase-07-documentation.json
phase-08-build.json
phase-09-validation.json
_work/                    # Working files

Context Passing

  1. Each phase reads previous phase output
  2. Each phase writes standardized output
  3. Use JSON format for structured data
  4. Include status and metadata

Important Notes

  • Memory folders created by first running task
  • No folder = work not started yet
  • Clean up after workflow completion
  • Never reference in production code

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です