一键导入
dev-kickoff
Example skill: Spin up a ready-to-code workspace — worktree, branch, tmux session, and pre-gathered context
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Example skill: Spin up a ready-to-code workspace — worktree, branch, tmux session, and pre-gathered context
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyze the current or a past Claude Code session to extract knowledge worth persisting to the vault. Proposes items, you pick, it writes them to the right place. This skill activates when you say capture this session, what should we save, what did we learn, or at end-of-session when valuable knowledge was generated.
One-time setup wizard — personalize the vault with your name, domains, and preferences
Hands-on guided tour of the vault — learn by doing with real examples
Migrate content from staging, chunk large files, and handle bulk note reorganization
Transform and organize notes in the Obsidian vault — add frontmatter, detect note types, create relationships
Extract URL content and create literature notes and review notes from web articles
| name | dev-kickoff |
| description | Example skill: Spin up a ready-to-code workspace — worktree, branch, tmux session, and pre-gathered context |
| activation | ["spin up worktree","prep task","kick off","set up workspace","worktree for","start working on","open a branch for"] |
This is an example custom workflow skill. It shows how to create a skill that integrates your development environment with your Obsidian vault. Customize it for your own repo structure, branch naming conventions, and tooling.
Create an isolated development workspace for a task with full pre-gathered context, so you (or Claude in the terminal) can start coding immediately.
.ai/notes/context.md in the worktree with all findingsTo adapt this skill for your workflow, update these sections:
Read the task description. If it comes from Tasks.md, read the full task entry for context.
Ask clarifying questions only if needed:
Skip questions if the task is clear enough to proceed.
Create a git worktree and branch for isolated work:
cd {repo_path}
git fetch origin
git worktree add -b {branch_name} ~/worktrees/{branch_name} origin/main
Search the target repo for:
Use grep, glob, and targeted reads. Focus on what someone would need to start coding.
Search the Obsidian vault for:
Use grep for keywords from the task description. Check up: chains to find related notes.
Create .ai/notes/context.md in the worktree root:
# {Task Title}
## Goal
{1-2 sentence description of what needs to happen}
## Vault Context
{Links/summaries of relevant Obsidian notes found}
## Key Files
| File | What |
|------|------|
| `path/to/file.py` | Description of relevance |
## Reference Patterns
{How similar things are done in the codebase}
## Suggested Approach
{If clear enough to suggest an approach, outline it.}
## Open Questions
{Anything that needs investigation or a decision before coding}
Print a summary of the workspace setup and context gathered.