Initial commit
This commit is contained in:
15
.claude/skills/idea-refine/scripts/idea-refine.sh
Normal file
15
.claude/skills/idea-refine/scripts/idea-refine.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# This script helps initialize the ideas directory for the idea-refine skill.
|
||||
|
||||
IDEAS_DIR="docs/ideas"
|
||||
|
||||
if [ ! -d "$IDEAS_DIR" ]; then
|
||||
mkdir -p "$IDEAS_DIR"
|
||||
echo "Created directory: $IDEAS_DIR" >&2
|
||||
else
|
||||
echo "Directory already exists: $IDEAS_DIR" >&2
|
||||
fi
|
||||
|
||||
echo "{\"status\": \"ready\", \"directory\": \"$IDEAS_DIR\"}"
|
||||
Reference in New Issue
Block a user