スキル一覧に戻る
ShipFail

memory-manager

by ShipFail

Pr̊ØS💬 — Build Your AI Co-Founders with Unix Architecture and Boot them with One Line.

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

SKILL.md


name: Memory Manager description: Tools for preparing and managing data for the PromptWar̊e ØS Vector Memory Subsystem. category: memory tags: [vector, chunking, embedding, rag] tools:

  • ./chunker.ts

Memory Manager

A suite of tools designed to bridge the gap between raw files and the PromptWar̊e ØS Vector Database.

Purpose

The Kernel provides the mechanism (Vector.Store), but not the policy for how to slice data. This skill provides the policy: intelligent chunking, metadata extraction, and formatting.

Tools

1. Chunker (chunker.ts)

Splits text or files into semantic chunks suitable for embedding.

Usage:

# Chunk a file
deno run -A chunker.ts --file README.md

# Chunk raw text
deno run -A chunker.ts "Some long text..."

# Custom chunk size (default: 1000 chars)
deno run -A chunker.ts --file README.md --size 500

# JSON Output (for programmatic use)
deno run -A chunker.ts --file README.md --json

Output Format (JSON):

[
  {
    "text": "Chunk 1 content...",
    "metadata": {
      "source": "README.md",
      "index": 0,
      "total": 5
    }
  },
  ...
]

Workflow

  1. Hydrate: Agent loads this skill.
  2. Chunk: Agent runs chunker.ts on a target file.
  3. Store: Agent iterates over the output and calls Vector.Store for each chunk.

References

スコア

総合スコア

60/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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