소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.