Centralized document management system for creating, storing, tracking, and accessing professional documents with automatic URL generation.
When generating a document:
Each document gets a timestamped folder:
docs/
└── doc-{YYYYMMDD}-{slug}/
├── README.md # Metadata & description
├── content.md # Main content (markdown)
└── index.json # Tracking data (JSON)
# Document Title
**Type:** Report / Analysis / Guide / etc.
**Created:** 2026-03-30 15:50 GMT+8
**Purpose:** What this document is about
**Status:** Draft / Final / Archived
## Quick Summary
- Key point 1
- Key point 2
All documents accessible via:
http://45.197.148.41:18792/docs/doc-{YYYYMMDD}-{slug}/content.md
Example:
http://45.197.148.41:18792/docs/doc-20260330-deployment-guide/content.md
View all documents at:
http://45.197.148.41:18792/docs/INDEX.md
Tell me:
I will:
Ask: "你目前都有哪些文档?"
I will read docs/INDEX.md and show all available documents with direct links.
Request changes to any document. I will:
Move outdated documents to docs/archive/ and remove from INDEX.md.
quarterly-report-q1, not doc1)/home/node/clawd/
├── docs/
│ ├── INDEX.md # Master index
│ ├── doc-20260330-deployment-guide/
│ │ ├── README.md # Metadata
│ │ ├── content.md # Main content
│ │ └── index.json # Tracking
│ ├── doc-20260330-test/
│ │ ├── README.md
│ │ ├── content.md
│ │ └── index.json
│ └── archive/ # Old versions
├── skills/doc-manager/
│ ├── SKILL.md # This file
│ └── scripts/doc-manager.py # Management script
└── md-server.js # Markdown server (port 18792)
When you request a document:
You can:
共 1 个版本