원클릭으로
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.