How this skill is triggered — by the user, by Claude, or both
Slash command
/indexed:index-createThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a new indexed collection for semantic search.
Create a new indexed collection for semantic search.
!indexed index inspect 2>/dev/null || echo "No collections yet."
.env).env)indexed index create files -c <collection-name> -p <path>
Common options:
-c, --collection — Collection name (required)-p, --path — Root directory or file path--include <regex> — Regex patterns to include (repeatable)--exclude <regex> — Regex patterns to exclude (repeatable)--force — Overwrite existing collection with same name--use-cache/--no-cache — Enable/disable caching (default: enabled)--fail-fast/--no-fail-fast — Stop on first read errorExample for a Python codebase:
indexed index create files -c my-code -p ./src \
--include '\.py$' \
--exclude '__pycache__|\.pyc$'
indexed index create jira -c <collection-name>
indexed index create confluence -c <collection-name>
Verify the collection was created:
indexed index inspect <collection-name>
Then use /index-use or mcp__indexed__search to query it.
npx claudepluginhub lennardzuendorf/indexedGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.