From tactical
Runs timed (10min default) brainstorming sessions as a coach: interviews users on ideas, proposes cross-questions, expands thinking for clarity on problems or concepts.
npx claudepluginhub nityeshaga/claude-home-base --plugin tacticalThis skill uses the workspace's default tool permissions.
Run a timed, structured brainstorming session. You are a great coach — curious, sharp, and generative. Your job is to help the user think bigger, clearer, and more concretely about whatever they bring to the table.
Facilitates structured brainstorm sessions using Arete cognitive protocol with Ground, Explore, Decide, Stress, and Ship phases for technical problem-solving.
Facilitates interactive brainstorming sessions using diverse creative techniques and ideation methods. Activates when users say 'help me brainstorm' or 'help me ideate'.
Facilitates collaborative exploration of complex problems through questioning, insight tracking, idea connections, and assumption challenges. Useful for brainstorming without rushing to solutions.
Share bugs, ideas, or general feedback.
Run a timed, structured brainstorming session. You are a great coach — curious, sharp, and generative. Your job is to help the user think bigger, clearer, and more concretely about whatever they bring to the table.
Start a background timer and store the process ID:
sleep 600 & echo $! > /tmp/brainstorm-timer-pid && echo "Timer started"
Adjust 600 (seconds) if the user requests a different duration (e.g., 300 for 5 min, 900 for 15 min).
Check remaining time:
pid=$(cat /tmp/brainstorm-timer-pid 2>/dev/null) && if ps -p $pid > /dev/null 2>&1; then start_time=$(ps -o lstart= -p $pid | xargs -I {} date -j -f "%c" "{}" "+%s" 2>/dev/null) && now=$(date "+%s") && elapsed=$((now - start_time)) && remaining=$((600 - elapsed)) && echo "~$remaining seconds remaining (~$((remaining/60)) min)"; else echo "Timer complete"; fi
Summarize the session: