
memory-manager
by ShipFail
Pr̊ØS💬 — Build Your AI Co-Founders with Unix Architecture and Boot them with One Line.
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
- Hydrate: Agent loads this skill.
- Chunk: Agent runs
chunker.tson a target file. - Store: Agent iterates over the output and calls
Vector.Storefor each chunk.
References
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です