スキル一覧に戻る
ranxi2001

save-doc

by ranxi2001

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

SKILL.md


name: save_doc description: Save markdown document to AgentNote knowledge base. Use when user wants to save, store, or archive formatted content, notes, or articles.

Save Document Skill

Save Markdown documents to AgentNote knowledge base.

When to Use

  • User says "save this", "store this", "archive this"
  • After formatting content with format_to_markdown
  • When user provides structured markdown content

Input Format

{
  "title": "Document title",
  "content": "# Markdown Content\n\nFull markdown text...",
  "category": "Category name (optional)",
  "tags": ["tag1", "tag2"],
  "summary": "Brief summary (optional, auto-generated if empty)"
}

Usage

cd /home/AgentNote
python skills/save_doc/save_doc.py '{"title":"My Note","content":"# Hello\n\nContent here","category":"Tech"}'

Output

Returns document ID, slug, and confirmation:

{
  "success": true,
  "id": 1,
  "slug": "my-note-20260115",
  "message": "Document saved: My Note"
}

Workflow

  1. Receive markdown content (usually from format_to_markdown)
  2. Validate required fields (title, content)
  3. Generate slug from title
  4. Auto-generate summary if not provided
  5. Store in database with tags

スコア

総合スコア

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

レビュー

💬

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