parcadei / index-at-creation
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/index-at-creation && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2710" && unzip -o skill.zip -d .claude/skills/index-at-creation && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/index-at-creation/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Index at Creation Time
0 views
0 installs
Skill Content
--- name: index-at-creation description: Index at Creation Time user-invocable: false --- # Index at Creation Time Index artifacts when they're created, not at batch boundaries. ## Pattern If downstream logic depends on artifacts being queryable, index immediately at write time. ## DO - Index handoffs in PostToolUse Write hook (immediately after creation) - Use `--file` flag for fast single-file indexing - Trigger indexing from the same event that creates the artifact ## DON'T - Wait for SessionEnd to batch-index - Rely on cron/scheduled jobs for time-sensitive data - Assume data will be available "soon enough" ## Source Sessions - a541f08a: "Index at artifact creation time, not at SessionEnd" - 1c21e6c8: "If downstream logic depends on artifacts, index at the moment they're created"