一键导入
markdown
Always use this skill when writing or editing markdown files!
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Always use this skill when writing or editing markdown files!
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Explore and search previous Claude Code conversations stored in ~/.claude/projects/
Always use this skill when writing or editing python code!
Use this skill when working with software installed or run from local source checkouts that use git worktree hubs.
Always use this skill when writing or editing webscrapers!
Extracting text and tables, merging/splitting documents. Use when needing to convert PDFs while preserving structure.
Always use this skill when writing or editing software tests!
| name | markdown |
| description | Always use this skill when writing or editing markdown files! |
# Heading 1, ## Heading 2, etc.) instead of Setext-style (Heading 1\n=========).markdownlint to lint markdown files.
markdownlint --disable MD013 -- <somefile.md>npm install -g markdownlint-climarkdownlint --disable MD013 --fix <somefile.md> to auto-fix issues.### title 1
1. thing
2. thing
### title 2
<!-- this does not work; it should start on 1 again -->
3. other thing
4. other thing
Avoid using code blocks with tree structures; they're hard to edit and maintain.
project/
├── src/
│ ├── task.py
│ └── config.py
└── pyproject.toml
Prefer bulletpoint lists; they're more easily editable by humans.
Whenever one of the columns of a table is a key/indexing field, this works well.
| id | mission | market cap |
|---|---|---|
apple | to create technology that empowers people and enriches their lives. | $3.93T |
meta | to build the future of human connection and the technology that makes it possible. | $1.72T |
They're easier to edit and less horizontally long.
apple
meta
Always prefer to omit the column names as it'd lead to a lot of repetition.
The above is a naive example of direct conversion.
Design-wise, it could look better if:
meta ($1.72T)"