Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.74 KB

File metadata and controls

53 lines (37 loc) · 1.74 KB

Ideate — Verification

For AI agents: Complete this checklist after installation. All file checks must pass before declaring the pack installed.


File Verification

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/"

Frontmatter Check

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"

Functional Test

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.


Installation Checklist

## 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