一键导入
new-meeting
Creates a new meeting note from the template. Use when the user invokes /new-meeting or asks to create a new meeting note.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Creates a new meeting note from the template. Use when the user invokes /new-meeting or asks to create a new meeting note.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | new-meeting |
| description | Creates a new meeting note from the template. Use when the user invokes /new-meeting or asks to create a new meeting note. |
| argument-hint | [title] |
| allowed-tools | Read, Write, Glob |
You are helping the user create a new meeting note. Follow these steps exactly:
Read .claude/skills/meta.md and .claude/skills/_shared_rules.md. Parse the PROJECTS: block in meta.md. Each project is a nested block: the project name is the outer key, and it contains named directory keys (e.g., meetings, worklogs) mapping to absolute paths.
"No projects configured. Run
/setupto get started."
Resolve which project to use:
$ARGUMENTS.$ARGUMENTS matches a project name (case-sensitive).$ARGUMENTS (after the first word) as the title for Step 1.$ARGUMENTS is empty: stop and tell the user:
"Multiple projects found. Please specify one:
project-a,project-b(list actual names). Example:/new-meeting project-a"
Once the project is resolved, extract MEETINGS_DIR = the meetings path for the project. Also extract INSTRUCTIONS_DIR = the instructions path for the project (required — init.sh sets it and /setup validates it).
meetings is not configured for the resolved project, stop and tell the user:
"No
meetingsdirectory configured for project [project-name]. Add ameetingskey to.claude/skills/meta.mdor run/setup."
Print a confirmation line immediately — before doing any other work:
Using project: [project-name] (meetings:
[MEETINGS_DIR])
Use MEETINGS_DIR in all steps below.
You already know today's date from your system context. You need:
meeting-title: A short, descriptive title for the meeting.
$ARGUMENTS is non-empty (after stripping any matched project name), treat it as the title and confirm with the user.meeting-date: The date of the meeting.
attendees: Who attended (optional).
MEETINGS_DIRYYYY-MM-DD_short_title.md where short_title is a lowercase, hyphen-separated abbreviation of the title (e.g., 2026-02-22_weekly-sync.md)INSTRUCTIONS_DIR/meeting/_template_meeting_note.mddate: the meeting date as YYYY-MM-DDtitle: the meeting title in double quotesattendees: a YAML list, e.g. [Alice, Bob], or [] if none providedprocessed_on and worklog as nullShow the user the created file path and a one-line summary of the frontmatter that was populated. Ask if they want any adjustments.
## Discussion, ## Decisions, ## Action items, ## Open questions, or ## Notes — leave them for the user to complete.Lists installed context-manager skills and points new users to the tutorial. Triggers when the user types `/about`, asks "what skills are available", "what can I do with this", or "tell me about this system".
Wrap any write-heavy skill with two independent subagents (proposer + reviewer) that draft and audit the work end-to-end before any writes happen. Single user-approval moment at the end with summary, must-fix-already-applied, user-decision questions, and a pointer to the full proposal. Use when you want a high-confidence pass for a complex skill (e.g., `/audit end-session`, `/audit process-meeting`, `/audit build-week`) without mid-flow interruptions. Default proposer model is sonnet, reviewer model is opus; override with `--proposer-model` / `--reviewer-model` (or `--subagent-model` for both).
Creates or updates this week's focused plan. Reads the planning and state indices (not individual items) for speed, incorporates recent meeting signals, confirms priorities with the user, then writes the weekly plan file. Use when the user invokes /build-week or /build-weekly-plan.
Start-of-session briefing skill. Summarizes recent worklog sessions, surfaces incomplete tasks, and helps the user plan their day. Use when the user invokes /catchup or asks for an overview of recent work.
Adopt the collaborative research/engineering co-working workflow for the rest of the session — Claude acts as a Research Engineer Collaborator who decomposes tasks, dispatches subagents, enforces quality gates, and documents everything, while you set scope and direction. Triggers when the user types `/co-work`, or asks to "start a co-working session", "pair on this", or "use the collaboration workflow".
End-of-session skill. Helps the user fill out the Summary section of today's worklog, update planning backlog items, and suggest new state items. Use when the user invokes /end-session or says they are done for the day.