소스 정보
- 저장소
- nwiizo/dotfiles
- 최근 소스 활동
- 2026년 7월 2일 08:57
- 감지된 SKILL.md 언어
- 일본어
- 스타
- 13
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nwiizo/dotfiles --skill home-marp-slide-editing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Add config to this macOS dotfiles repo. Use for env vars, fish abbreviations/functions/plugins, direct symlinked config files, tool integrations, shared agent config, and app config such as Neovim, Ghostty, Warp, Git, Bat, Atuin, tealdeer, and gh.
Add a package to this macOS dotfiles repo. Use when the user asks to install, add, or migrate a CLI package or GUI app, for example "add jq", "ripgrep を入れて", "lazygit 入れたい", "brew install foo を repo 管理に", "kubectl 追加して". Homebrew owns binaries here; update Brewfile, validate with brew bundle, apply with brew bundle, and verify the executable.
実装前の計画・設計・意思決定を、1問ずつの徹底インタビューで叩いて固める。共有理解に達するまで実装しない。Invoke manually before non-trivial implementation when a plan or design already exists and needs stress-testing.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | home-marp-slide-editing |
| description | Marpプレゼンテーションの技術的制約とベストプラクティス。marp:trueのMarkdown編集時やスライド作成リクエスト時に自動使用。 |
marp: true フロントマターを含むMarkdownファイルの編集時**太字** vs <strong> 問題Marpの <div> 要素内では、Markdownの **text** 記法が正しくレンダリングされないことがある。
ルール:
<div> 内の太字は常に <strong>text</strong> を使う<strong> の方が安全**text** で問題なし<strong> で統一する<div> 内でMarkdownの画像記法  を使うと表示されないことがある。HTMLの <img> タグを使う。
<div style="text-align: center;">
<img src="path/to/image.png" alt="説明" style="max-width: 80%;">
</div>
| サイズ | 用途 | 判定 |
|---|---|---|
| 0.8em | 余裕のあるスライド | OK |
| 0.75em | 標準 | 推奨 |
| 0.7em | やや詰まった | 注意 |
| 0.68em以下 | 分割が必要 | NG |
| 0.65em | 絶対限界 | 分割必須 |
以下のいずれかに該当したら分割:
(1/2) 形式は使わない)文言を短くするより font-size: 0.9em 等で微調整する方が内容を保てる。
Marpでは position: absolute や position: sticky でのタイトル固定は困難:
<section> 要素としてレンダリングposition: absolute はコンテンツの重なり問題を引き起こす対策: 通常のドキュメントフローを使用し、収まらない場合はスライド分割。
align-items: center を基本指定して垂直中央揃えにする。画像とテキストを並べる場合、画像がスライド上に寄りすぎないよう注意。
# HTML生成
npx @marp-team/marp-cli <file>.md -o <file>.html
# ブラウザで確認
open <file>.html
スライド修正時は外科的に行う:
<div> 内で **太字** を使う(<strong> を使うべき)(1/2) (2/2) を使う