一键导入
save-context
Save working documents to .context/ with proper frontmatter
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Save working documents to .context/ with proper frontmatter
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add an SSH public key to a remote server's authorized_keys file
Rebase a contributor's PR onto latest main. Fetches the PR, creates a backup branch on origin, sets up a worktree, analyzes divergence, rebases, and force-pushes back to the contributor's fork. Use when a PR needs to be brought up to date with main.
Merge source branch (default main) to production, create a CalVer release, and generate release content (GitHub release notes, Discord announcement, blog post)
Analyze branch commits, identify fixup candidates, rebase with autosquash, and post a PR comment explaining the cleanup.
Create a well-structured GitHub issue from a conversation or description
Link or unlink a local library for testing in a consumer project. Handles build, npm install from path, and cleanup. Default action is "link". Use "unlink" to reverse.
| name | save-context |
| description | Save working documents to .context/ with proper frontmatter |
| argument-hint | <optional-slug> |
Save important session outputs, drafts, or working documents to .context/.
If .context/ doesn't exist in the current project, create it along with a README:
mkdir -p .context
Then create .context/README.md:
# .context
Working documents, session notes, and draft issues.
## Convention
- Files named `YYYY-MM-DD-slug.md`
- Each file has YAML frontmatter with a `context` field
- The `context` summarizes how we got here — enough to resume later
```yaml
---
context: "Brief but dense summary of the situation, trigger, and purpose of this document."
---
Just drop markdown here. No other structure required.
## File Format
.context/YYYY-MM-DD-slug.md
Use today's date and a descriptive slug. If `$ARGUMENTS` contains a slug, use that. Otherwise, derive one from the content.
## Frontmatter
Every file must have a `context` field in YAML frontmatter:
```yaml
---
context: |
[Your context here]
---
The context field should give a future reader (human or AI) enough to understand:
Write it as narrative, not tags. Someone reading just the context field should be able to decide if they need to read the rest, and have enough background to understand it if they do.
.context/ exists; if not, create it and the README$ARGUMENTS or derive from content).context/YYYY-MM-DD-slug.mdcontext field