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