fix: correct command syntax from 'claude run' to slash commands

- Update all documentation to use /command-name syntax
- Fix README, CLAUDE.md, install.sh, and command docs
- Commands run directly in Claude Code with /command-name
This commit is contained in:
Noah Brier
2025-09-13 12:30:37 -04:00
parent ef2593e173
commit 6bc043665b
4 changed files with 18 additions and 18 deletions
+7 -7
View File
@@ -7,35 +7,35 @@ Pre-configured commands to enhance your Claude Code + Obsidian workflow.
### 🤔 thinking-partner
Engage Claude as a thinking partner for exploring complex problems.
```
claude run thinking-partner
/thinking-partner
```
Best for: Brainstorming, problem exploration, developing ideas
### 📥 inbox-processor
Process and organize items in your Inbox folder.
```
claude run inbox-processor
/inbox-processor
```
Best for: Weekly inbox cleanup, organizing captures
### 🔍 research-assistant
Conduct thorough research on any topic using your vault.
```
claude run research-assistant
/research-assistant
```
Best for: Deep dives, literature reviews, knowledge synthesis
### 📅 daily-review
End-of-day review to capture progress and plan tomorrow.
```
claude run daily-review
/daily-review
```
Best for: Daily shutdown ritual, reflection
### 📊 weekly-synthesis
Create a comprehensive synthesis of the week's work.
```
claude run weekly-synthesis
/weekly-synthesis
```
Best for: Weekly reviews, pattern recognition
@@ -51,9 +51,9 @@ Best for: Weekly reviews, pattern recognition
## Using Commands
### Method 1: Direct
### Method 1: Direct (in Claude Code)
```
claude run [command-name]
/[command-name]
```
### Method 2: Reference in Chat
+2 -2
View File
@@ -3,7 +3,7 @@
**⚠️ IMPORTANT: This CLAUDE.md is for maintaining the claudesidian repository itself.**
**If you're a user setting up your own Obsidian vault:**
- Run `claude run init-bootstrap` to create your personalized CLAUDE.md
- Run `/init-bootstrap` in Claude Code to create your personalized CLAUDE.md
- That command will overwrite this file with your custom configuration
- This file is only for contributors working on the claudesidian project
@@ -86,7 +86,7 @@ claudesidian/
git clone https://github.com/heyitsnoah/claudesidian.git test-claudesidian
cd test-claudesidian
pnpm install
claude run init-bootstrap # Test the setup flow
# Then in Claude Code: /init-bootstrap # Test the setup flow
```
### Important Files
+8 -8
View File
@@ -23,8 +23,8 @@ cd claudesidian
# Start Claude Code in the directory
claude
# Run the interactive setup wizard
claude run init-bootstrap
# Run the interactive setup wizard (in Claude Code)
/init-bootstrap
```
This will:
@@ -49,11 +49,11 @@ Please search my vault for any relevant existing notes,
then help me explore this topic by asking questions.
```
Or use one of the pre-configured commands:
```bash
claude run thinking-partner # For collaborative exploration
claude run daily-review # For end-of-day reflection
claude run research-assistant # For deep dives into topics
Or use one of the pre-configured commands (in Claude Code):
```
/thinking-partner # For collaborative exploration
/daily-review # For end-of-day reflection
/research-assistant # For deep dives into topics
```
## Folder Structure
@@ -148,7 +148,7 @@ Pre-configured AI assistants ready to use:
- `create-command` - Build new custom commands
- `de-ai-ify` - Remove AI writing patterns from text
Run with: `claude run [command-name]`
Run with: `/[command-name]` in Claude Code
## Vision & Document Analysis (Optional)
+1 -1
View File
@@ -99,6 +99,6 @@ echo ""
echo "Next steps:"
echo "1. Start Claude Code in this directory: claude"
echo "2. Read the Welcome note in 00_Inbox/"
echo "3. Try: claude run thinking-partner"
echo "3. Try: /thinking-partner (in Claude Code)"
echo ""
echo "Happy note-taking! 🧠✨"