一键导入
later
Create a new "Later" backlog item (Learn / Research / Do / Read) from a configurable template.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new "Later" backlog item (Learn / Research / Do / Read) from a configurable template.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up or bootstrap a project with the claude-code-config tooling — setup-project.sh, install-tooling.sh, the layered hooks setup, and the new-repo runbook. Use when installing this config into a repo, running the setup scripts, vendoring the make-check tooling, or bootstrapping a new project.
Install or update the shared MkDocs Material style layer (Ink & Indigo on warm paper) in the current project.
Prepare technical analysis for backlog refinement meetings.
Capture a quick status update and append it to today's daily log.
Prepare end-of-week review notes summarizing the full week's work activity across all sources (Git, GitHub, Jira).
Prepare a standup document summarizing recent work activity across Git, GitHub, and Jira.
| name | later |
| description | Create a new "Later" backlog item (Learn / Research / Do / Read) from a configurable template. |
| argument-hint | <title> [--category <name>] [--priority <level>] |
| disable-model-invocation | true |
Create a new "Later" item — a personal backlog entry for things to learn, research, do, or read.
Backlog location: this command writes to
$LATER_DIR(defaults to~/notes/Later). SetLATER_DIRin your shell if your backlog lives elsewhere.
$ARGUMENTS
--category <name> — one of: Learn, Research, Do, Read (if omitted, ask the user)--priority <level> — Low, Medium, or High (default: Medium)/later "Learn Rust async/await" --category Learn --priority High, /later "Read Designing Data-Intensive Applications", /later "Set up home lab Kubernetes cluster" --category DoParse arguments: Extract the title, --category, and --priority from $ARGUMENTS.
--priority defaults to Medium if not provided.--category is missing, ask the user to choose one: Learn, Research, Do, Read.Resolve the backlog directory and template:
Read LATER_DIR from the environment; if unset, default to ~/notes/Later.
Look for a template file at $LATER_DIR/_template.md. If it exists, use it.
If no template file exists, fall back to this inline template:
# [Title]
**Added:** YYYY-MM-DD
**Priority:** Medium
**Status:** New
## What
## Why
## Resources
## Notes
Generate filename: Convert the title to kebab-case for the filename.
Note: the inline-fallback path skips step 2 ("Read the template") since the template is already inlined above.
learn-rust-async.mdFill in metadata: Copy the template and replace:
# [Title] → # <the provided title>**Added:** YYYY-MM-DD → today's date**Priority:** Medium → the chosen priority**Status:** New → leave as NewGather content from the user: Ask the user to provide content for each section. Ask all at once or in a natural flow:
Write the file: Save the completed file to $LATER_DIR/<Category>/<filename>.md (creating subdirectories as needed).
Confirm: Show the user the final file path and the rendered contents.
Display the created file path and its full contents so the user can verify everything looks correct.