For AI agents: Complete this checklist after installation. All file checks must pass before declaring the pack installed.
CLAUDE_DIR="$HOME/.claude"
SKILL_DIR="$CLAUDE_DIR/skills/Ideate"
[ -d "$SKILL_DIR" ] && echo "OK directory exists" || echo "MISSING directory"
[ -f "$SKILL_DIR/SKILL.md" ] && echo "OK SKILL.md present" || echo "MISSING SKILL.md"# Optional substructure (skill-dependent — informational)
[ -d "$SKILL_DIR/Workflows" ] && echo "OK Workflows/ present" || echo "INFO no Workflows/"
[ -d "$SKILL_DIR/Tools" ] && echo "OK Tools/ present" || echo "INFO no Tools/"
[ -d "$SKILL_DIR/References" ] && echo "OK References/ present" || echo "INFO no References/"CLAUDE_DIR="$HOME/.claude"
head -1 "$CLAUDE_DIR/skills/Ideate/SKILL.md" | grep -q "^---" && echo "OK frontmatter delimited" || echo "ERROR missing frontmatter"
grep -q "^name:" "$CLAUDE_DIR/skills/Ideate/SKILL.md" && echo "OK has name" || echo "ERROR missing name"
grep -q "^description:" "$CLAUDE_DIR/skills/Ideate/SKILL.md" && echo "OK has description" || echo "ERROR missing description"After install, restart Claude Code (or open a new session) and trigger the skill via its USE WHEN keywords. Refer to SKILL.md for the trigger phrases and example invocations.
## Ideate Installation Verification
- [ ] Skill directory exists at ~/.claude/skills/Ideate/
- [ ] SKILL.md present with valid frontmatter
- [ ] Frontmatter has name and description fields
- [ ] Restarted Claude Code after install
- [ ] Skill triggers on its declared USE WHEN keywords