ソース情報
- リポジトリ
- supremeb/Oniva-ai
- ソースの最終更新活動
- 2026年5月9日 13:49
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/supremeb/Oniva-ai --skill summarize-documentコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | summarize_document |
| description | Summarize a text document using LLM-based summarization. |
| type | tool |
| category | document |
| tool | {"module":"app.skills.summarize_document.tool","function":"summarize_document","async":true} |
| metadata | {"author":"oniva","version":"1.0.0"} |
| audit-level | basic |
Summarize text documents using LLM-based anchored iterative summarization.
result = await summarize_document(
text="Long document text...",
max_length=500,
style="concise"
)
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | Yes | - | Text to summarize |
max_length | int | No | 500 | Maximum summary length in words |
style | string | No | "concise" | Summary style: concise, detailed, or bullet |
concise - Brief, focused summarydetailed - Comprehensive summary with key pointsbullet - Bullet-point format{
"success": true,
"summary": "The document discusses...",
"original_length": 15000,
"method": "llm_anchored_iterative"
}
llm_anchored_iterative - Used for documents >= 1000 wordsllm_single_pass - Used for shorter documentsextractive_fallback - Used when LLM is unavailable