← スキル一覧に戻る

extract-content
by Rwb3n
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: extract-content description: Extract entities and concepts from documents using HAIOS memory system. Use when ingesting new documents, analyzing content structure, or populating the knowledge base. generated: '2026-01-07' last_updated: '2026-01-07T20:49:16'
Extract Content
Extract entities (people, systems, concepts) and concepts (decisions, directives, proposals) from documents using LLM-based extraction.
Requirement Level
MAY use for document ingestion. For storing learnings, SHOULD use ingester_ingest directly instead (simpler path).
When to Use
MAY use when:
- Ingesting new documents into HAIOS memory
- Analyzing document structure and key concepts
- Identifying entities mentioned in specifications
- Populating the knowledge graph
Instructions
Via MCP Tool (Recommended)
Use the extract_content MCP tool:
extract_content(
file_path="path/to/document.md",
content="<content of the file>",
extraction_mode="full" # or "entities_only", "concepts_only"
)
Via Python (Direct)
Note: haios_etl is deprecated. For most use cases, the MCP tool extract_content above is recommended.
Extraction Types
Entities
- Agent: AI agents, systems, tools
- User: Human actors, roles
- ADR: Architecture Decision Records
- System: Technical systems, services
Concepts
- Decision: Architectural or design decisions
- Directive: Instructions, guidelines
- Proposal: Suggested approaches
- Critique: Objections, concerns
Example Workflow
- Read document content
- Call
extract_contentwith the content - Review extracted entities and concepts
- Use
ingester_ingestto persist relevant items
# Step 1: Extract
result = extract_content(file_path="docs/ADR/ADR-001.md", content=doc_content)
# Step 2: Store important concepts
ingester_ingest(
content="Use SQLite for the memory database",
source_path="docs/ADR/ADR-001.md",
content_type_hint="techne"
)
Related Tools
ingester_ingest: PRIMARY - Store extracted content with auto-classificationmemory_search_with_experience: Search stored memoriesmarketplace_list_agents: Find agents that can help with extractionmemory_store: MUST NOT use - deprecated, useingester_ingest
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です