Files
ai-coding-workflow-labs/vin-obsidian-workflows/my-vault/Custom Commands.md
T
tiennm99 2b505dd5e1 chore(lesson): add Vin Obsidian Workflows lesson assets
Add initial lesson structure for Vin Obsidian Workflows mini-lesson:
- CLAUDE.md: full lesson script and teaching instructions
- my-vault/: 10 interconnected Obsidian notes about Claude Code best practices
- .claude/commands/start-lesson.md: slash command to launch the lesson
- my-commands.md: documentation for custom commands
2026-03-08 21:04:22 +07:00

1.8 KiB

Custom Commands

Custom commands are reusable slash commands you create yourself. They live in .claude/commands/ as markdown files and can be triggered with /command-name.

This is where Claude Code starts feeling like YOUR tool instead of a generic assistant.

How They Work

Create a file at .claude/commands/my-command.md with instructions. When you type /my-command, Claude reads that file and follows the instructions.

Examples:

  • /review — code review with your team's standards
  • /plan — generate a PRD from a one-sentence idea
  • /debug — structured debugging workflow
  • /standup — morning briefing that reads your project state

The Vin Obsidian Connection

This is exactly what Internet Vin built for his Obsidian workflow:

  • /context — loads your entire vault's context in one shot
  • /today — morning planning ritual
  • /close — evening reflection
  • /challenge — pressure-test your beliefs using vault history
  • /emerge — surface hidden patterns in your notes
  • /ideas — 30-day vault scan for actionable insights

The power move: commands that reference your CLAUDE.md Best Practices and read your personal files to build context automatically.

Building a PM Toolkit

Aakash Gupta's PM workflow was basically a chain of commands: meeting transcript → PRD → Jira tickets → Slack summary → dashboard.

You could build each step as a command:

  • /transcript-to-prd
  • /prd-to-tickets
  • /daily-metrics

Each one is a pattern you've validated manually, then codified. See The Verification Loop — only automate what you've verified.