ソース情報
- リポジトリ
- osolmaz/SimpleDoc
- ソースの最終更新活動
- 2026年2月4日 21:30
- 検出された SKILL.md の言語
- 英語
- スター
- 8
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/osolmaz/SimpleDoc --skill simpledocコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | simpledoc |
| description | Create or update documentation in this repo following SimpleDoc conventions. |
Use this skill whenever you are asked to create or update documentation in this repository.
Attention agent! This section is a template for creating instructions on how to create documentation in this repository. The placeholder sections must be filled in before anything else.
After finishing the setup, DELETE ONLY this section between dividers ---. The other agent instruction below is to be kept as is.
Attention agent! Complete every item below before touching documentation work:
author field in the YAML frontmatter. Run the following one-liner to verify:printf '%s <%s>\n' "$(git config --local --get user.name 2>/dev/null || git config --global --get user.name)" "$(git config --local --get user.email 2>/dev/null || git config --global --get user.email)"
If the name and email are not available for some reason, ask the user to provide them, and also setup git configuration for them.
<Replace this part with the content of SimpleDoc specification>
<Replace this part with the user's preferences in documentation style>
date +%Y-%m-%d and use the output for both filename prefix and date field.docs/.YYYY-MM-DD-descriptive-title.md. The date MUST use dashes; the rest SHOULD be lowercase with hyphens (avoid underscores).2025-06-20-api-migration-guide.md.YYYY-MM-DD-… form before merging.Every doc must start with YAML front matter:
---
date: 2025-10-24 # From `date +%Y-%m-%d`
author: Name <email@example.com>
title: Short Descriptive Title
tags: [tag1, tag2] # Optional but recommended
---
SimpleDoc Guidelines:
date value in sync with the filename prefix.author (Name <email>).title.tags when it improves discoverability; omit the line if not needed.Use SimpleLog for daily logs. The spec lives at docs/SIMPLELOG_SPEC.md.
docs/logs/YYYY-MM-DD.md.<repo-root>/docs/logs/ by default when inside a git repo.simpledoc.json and override locally in .simpledoc.local.json (see docs/SIMPLEDOC_CONFIG_SPEC.md).Use the CLI to create the file and append entries:
simpledoc log "Entry text here"
Notes:
Pipe or heredoc input (stdin) for multiline entries:
cat <<'EOF' | simpledoc log
Multiline entry.
- line two
- line three
EOF
You can also use --stdin explicitly:
simpledoc log --stdin <<'EOF'
Another multiline entry.
EOF
title, author, date, tz, created, optional updated).## HH:MM (local time of the first entry in that section).Once this skill is active in a repo, the agent SHOULD log anything worth noting as it goes. This includes:
Log each entry after completing the step or realizing the insight.
YYYY-MM-DD-… pattern (date uses dashes) and lives in the correct directory.CODE_OF_CONDUCT.md).npx -y @simpledoc/simpledoc check (or simpledoc check) to verify SimpleDoc conventions.