一键导入
comment
Comment code, explain functions, or add documentation comments. Use to make code understandable after implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Comment code, explain functions, or add documentation comments. Use to make code understandable after implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill when the user asks to analyze, create, or update an investment asset/company in Notion Assets / Investments. Produces professional-grade, evidence-backed asset research and then creates or updates the matching Notion asset page after confirmation.
Cartography, deep codebase map, repo map, onboarding map, or navigation index. Use for explicit codebase mapping/onboarding requests that need multiple cartography subagents and docs/indexes.
Commit, git commit message, or staged changes summary. Use by github agent only when the user explicitly requests a commit.
Medium article, long-form article, essay, or article from notes. Use when the user asks to create/write a Medium-style article using Content Vault evidence, positioning, and humanization rules.
LinkedIn post, social post, short content draft, or post from notes. Use when the user asks to write/create a LinkedIn/social post using the Content Vault voice, evidence, and anti-AI-writing rules.
Weekly content generation, content ideas from week, repurpose recent notes, or content calendar. Use when the user asks what to post from recent work or wants LinkedIn/article ideas from vault notes.
| name | comment |
| description | Comment code, explain functions, or add documentation comments. Use to make code understandable after implementation. |
Use comments only when they make code easier to maintain. Prefer clearer names and smaller functions before adding comments.
Every function-level or module-level explanatory comment must use exactly these three sections, in this order:
Parameters
- `<name>`: what the input represents, constraints, and units/shape when useful.
What it does
- Short explanation of the behavior, important side effects, and why the code exists.
Output
- Return value, thrown errors, mutations, emitted events, or external effects.
None.