← Back to list

save-doc
by ranxi2001
⭐ 0🍴 0📅 Jan 17, 2026
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
- Receive markdown content (usually from
format_to_markdown) - Validate required fields (title, content)
- Generate slug from title
- Auto-generate summary if not provided
- Store in database with tags
Score
Total Score
50/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon