Merged
Conversation
Replaces the minimal 58-line sketch with a full playbook covering: - Decision tree for choosing the right command/MCP tool - Complete CLI command reference (search, indexing, history, clustering, CI/CD, branch analysis) - Full MCP tool table with parameters - Token-efficient discovery workflows (onboarding, feature work, bug triage, PR review, refactoring) - Output format guide and search result anatomy - Configuration quick reference (env vars, config keys, multi-model routing) - Chunking strategy guide - Anti-patterns and guardrails https://claude.ai/code/session_017DdHYhXWJsszDp1HoYjghX
Covers: - Embedeer as the primary/recommended provider - nomic-ai/nomic-embed-text-v1 as the suggested default model - Why prefix instructions are required for nomic (search_document: / search_query:) - Which models do NOT need prefixes (e.g. OpenAI text-embedding-3-small) - Full `gitsema models add` flag reference with prefix options - How the PrefixedProvider works internally (role → prefix mapping) - Switching models and multi-model coexistence https://claude.ai/code/session_017DdHYhXWJsszDp1HoYjghX
Thin prompt that: - Loads the full reference doc (skill/gitsema-ai-assistant.md) on invocation - Gives the 5-step discover→orient→scope→act→summarise workflow - Accepts an optional argument as the initial search query Also updates .gitignore: change .claude/ → .claude/* so that .claude/skills/ can be tracked while personal settings remain ignored. Invoked as /gitsema [concept] in Claude Code. https://claude.ai/code/session_017DdHYhXWJsszDp1HoYjghX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces the minimal 58-line sketch with a full playbook covering:
https://claude.ai/code/session_017DdHYhXWJsszDp1HoYjghX